Hello,
I need some help building the following pseudo code expression for unique value symbology, expressed in Arcade:
Pseudo Code:
list1 = ['a', 'b',...]
list2 = [ 'w', 'x',...]
if field1_val in list1 AND field2_val in list2:
return 1
else:
return 'other'
Much appreciated.
Tyler