My column (:Fine) is continous. If I understand correctly :height in this example is continous and you are setting a range. However, I am trying to set-up an "IF" statement in a "Where" statement.
Current Data Table() << Data Filter(
Location( {314, 74} ),
Add Filter(
columns( :age, :height ),
Where( :age == {12, 14} ),
Where( If( x=="tall",:height >=72, x=="average", :height >= 58 & :height <= 66, x=="Short", :height <= "58" ), // x is selected previously in a radio box.
Display( :age, Size( 160, 90 ), List Display )
)
);
If I do something like this. It comes up with an error that says the "Where" clause has not been correctly specified 2 times.