Forum Discussion
DavidHawe
12 years agoQrew Trainee
If you need to test for a value in Field2:
If([FIELD2]="",[FIELD1],[FIELD1]&"_"&[FIELD2])
If([FIELD2]="",[FIELD1],[FIELD1]&"_"&[FIELD2])
- BlancaAnderson6 years agoQrew Assistant CaptainDavid,
If we needed to concatenate only if the checkbox is checked? How would this formula look? I have a table with services offered and several checkboxes listing each service. I would like one fields to have a list. - QuickBaseCoachD6 years agoQrew CaptainList(", ",
IF([Wash checkbox], "Wash"),
IF([Dry checkbox], "Dry"),
IF([Iron checkbox], "Iron"),
IF([Repair checkbox], "Repair")
) - DavidHawe6 years agoQrew TraineeWhat he said: ^^
- BlancaAnderson6 years agoQrew Assistant CaptainI will give it a try! Many thanks to both :)
- FrankMitchell6 years agoQrew MemberI am trying to do the same-thing but with using a text field with two numeric fields. The three fields are an identifier or ID field for Die Specifications.
Dimension ID/Text field = A0
Number Across/numeric = 2
Number Around/Numeric = 4
Die Specification/text field would = A024
------------------------------
Frank Mitchell
------------------------------- FrankMitchell6 years agoQrew MemberI got it worked out using the totext
------------------------------
Frank Mitchell
------------------------------