This set entered on 8-3-14
8.3.14.2
When you insert a button and choose ‘Go to Layout,” you’ll have the option to use “LAYOUT NAME BY CALCULATION or LAYOUT NUMBER BY CALCULATION.
If ( Person::Type = “Customer” , “Customer Detail” , “Employee Detail” )
If a field holds more than one chunk of text, each on its own line, FileMaker considers each a SEPARATE VALUE, hence “RETURN SEPARATED VALUES.”
To FileMaker, VALUES ARE WHAT FIELDS HOLD, so a Field’s TEXT is its value.
PARSE TEXT. You can think of those bits of text as lines or paragraphs.
Say you have a field called COLORS with lists like this: Red, Green, Blue, Orange, Yellow. It contains five VALUES, and you can work with them just like characters and words.
It returns “Red” and “Green”
GetValue, RightValues, LeftValues
When you want to protect your db from people who know that you can add multiple items to a RADIO BUTTON list (by Shift-Clicking)
RightValues ( Premiums ; 1 ). This function will not allow anyone to select more than one item in the “Premiums” field (the Premium list, in this case, is a list of freebies that allows your customers to choose one free gift)
LeftValues ( Premiums ; 2 )