I am tying to use the IFS function to populate another field based on the value of another field entered by the user. the goal is to have a short text summary concatenated from five data entry fields.
the data entry field [DateEntry1…5) is numeric, the IFS field [TxtData1…5] is text and combines the [DataEnty1] with a descriptor. the IFS field [TxtData1] is then combined in the summary field [Summary].
The IFS statement for [TxtData1] is:
IFS([DateEntry1]> 0, "Frag.= "&[DateEntry1], [DateEntry1]= 0, “”)
so ideally I get either “Frag.=n” in [TxtData1] or [TxtData1] will be blank.
however, I am getting “false” in [TxtData1] when [DataEntry1] = 0
I have tried using null instead of “” but get “null”