Newbies HemiRon Posted December 12, 2014 Newbies Posted December 12, 2014 I love filemaker. Even though Im not that good at it. I really need a filemaker consultant to help. Anyway here's my issue I want to create a packing list, one of the fields I want if not empty then put an asterisk then 'part number field' formatted in the barcode font followed by another asterisk. Why am I having such an issue with this. Thanks
jbante Posted December 12, 2014 Posted December 12, 2014 If ( not IsEmpty ( Table::partNumber ) ; "*" & Table::partNumber & "*" )
comment Posted December 13, 2014 Posted December 13, 2014 If it's in a calculation field, then you can leave the (default) option of "Do not evaluate if all referenced field are empty" on, and shorten the formula to = "*" & PartNumber & "*" Formatting the field to display in a barcode font can be done at the layout level. This really is too easy: if you're "having such an issue with this", you should elaborate what specific problems have you run into.
LaRetta Posted December 13, 2014 Posted December 13, 2014 Isn't this for display only? It would be good to drop the calculation completely if possible. Just an idea ... Create a merge field of the part number inserting * before and after part number. Then set the merge block to hide if IsEmpty ( PartNumber ). Or would this not work because of the barcode font? 1
Recommended Posts
This topic is 3631 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 accountSign in
Already have an account? Sign in here.
Sign In Now