Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
Try editing the last part to read like this
If(isnull([End Time]),"", "to" & " " & ToText([End Time]))
&" "&
If([Description]="","", "-" & " " & [Description])
I am assuming here that the field [End Time] is a Time Of Day field type. Note that you may not use IsNull( ) for a text field.
If(isnull([End Time]),"", "to" & " " & ToText([End Time]))
&" "&
If([Description]="","", "-" & " " & [Description])
I am assuming here that the field [End Time] is a Time Of Day field type. Note that you may not use IsNull( ) for a text field.