Jump to content

This topic is 8691 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I want to have filemaker generate and alphanumeric sku# by combining the contents (or first few characters of the contents) of one field with the contents of a serial number field. IE:

first field = elephant

serial field = 420

sku field = elephant420

or

sku field = eleph420

Thanx 4 Your Help!

Posted

Make the sku field a text calculated field with the following formula:

sku Field = first field & serial field

or if you just want the first few characters of the first field (6 for example) then do this:

sku field = Left(first field,6) & serial field

Posted

This is the way that i do it.

SkuField = Left( FirstField , 5 ) & NumToText( SerialField )

Make sure the calculation result is text.

This topic is 8691 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.