Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I want to only show an object if 4 fields are selected, does anyone know the correct syntax?
Example:
field1='1' <- this does hide the object
field1='1' & field2='1' & field3='1' <- this does not hide the object
I figure it is either not possible, or I am just not getting the syntax right.
Thanks,
Tyler
Try this:
GetSelectedCount(Field1)>0 and GetSelectedCount(Field2)>0 and GetSelectedCount(Field3)>0
Try this:
GetSelectedCount(Field1)>0 and GetSelectedCount(Field2)>0 and GetSelectedCount(Field3)>0
I didnt use the getselectedcount but the 'and' syntax is what i was missing.
field1='1' and field2='1' works! Thanks!