I’m trying use the IF-THEN-ELSE feature to work out a result, this is my case:
I have a column labelled ‘Is Class
’ with values either TRUE
or FALSE
I have another column labelled ‘Remaining Classes
’ with a positive numeric value, eg, 1
, 2
, 3
, 4
, etc…
I want to use the IF-THEN-ELSE to work out the following
IF ‘Is Class
’ = TRUE
AND
IF ‘Remaining Classes
’ > 0
THEN
= TRUE
ELSE
=FALSE
I need both cases to meet the criteria in order to produce a TRUE result.
Is this possible?