IF(logical_test; value_if_true; value_if_false)

A

Alex Moon

Right Click on ShapeSheet > "Show ShapeSheet"
Win:"Custom Poperties" change Prop.Status "on" and "off"
Win:"Line Format" Row "LineColor" i write:
=IF(Prop.Status.Value="on";0;2)
MSViso: Error in Formula :(
help me plz...
 
P

Philippe C.

I should not answer without trying first, but I suppose "On" should be numeric.
 
A

Alex Moon

John Goldsmith said:
Hello Alex,

You need to use the STRSAME function for string comparisons so try your
formula as follows:

=IF(STRSAME(Prop.Status.Value,"on"),0,2)

Thanks big, has helped!
 
Top