Hi everyone,
I have the following arcade IIF statement:
var redcolor = IIf($datapoint.STATUS == 'SCHEDULING','#ff0000','#228B22')
Im using this statement for the Advanced Formatting section for my List.
Im trying to come up with a scenario where can have something like this :
var redcolor = IIf($datapoint.STATUS == 'SCHEDULING' OR $datapoint.STATUS CONTAINS TEXT 'SCHEDULED' ,'#ff0000','#228B22')
Where I can implement an OR expression and also some sort of CONTAINS function to find records with those characters. I have yet to see any documentation for Arcade.
Thanks,
Solved! Go to Solution.
Thank you so much!