Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
how to add a string to your corresponding fieldvalue.
Example:
=if([DeliveryDate]>0, 'Delivered at [DeliveryDate'], 'Not yet delivered')
Seemingly the single quotes cannot recognized the Fieldname here. I tried with Chr() function, might used it wrong.
Hope someone can provide the answer.
Best.
Hi, are you doing this in script or expression?
moving one of the sinlge quotes, like this :
=if([DeliveryDate]>0, 'Delivered at ' & [DeliveryDate], 'Not yet delivered')
Hi, are you doing this in script or expression?
moving one of the sinlge quotes, like this :
=if([DeliveryDate]>0, 'Delivered at ' & [DeliveryDate], 'Not yet delivered')