Forum Discussion
lhookway
6 years agoRegular Visitor
conditionally format table value for a total using another value
Hi all, I need to format the Employed number in this table to show if the number is < 5 that it shows < 5 and not the actual number. Employer Name Em...
amitchandak
6 years agoSuper User
Try like below. In case you face data type issue
Less than 5 Employee=
VAR _LT5 = IF([Employed] < 5, "<5", [Employed] & "")
RETURN
_LT5