Code: Select all
IF(entity @= '1000');
... do something;
ENDIF;
IF(entity @= '5000');
... do something (same as above);
ENDIF;
Code: Select all
IF(entity @= '1000');
... do something;
ENDIF;
IF(entity @= '5000');
... do something (same as above);
ENDIF;
jrizk wrote:& = AND eg (Value1 > 5) & (Value1 < 10) Returns TRUE if the value is greater than 5 and less than 10.
% = OR eg (Value1 > 10) % (Value1 < 5) Returns TRUE if the value is greater than 10 or less than 5.
~ = NOT eg ~(Value1 > 5) Equivalent to (Value1 <= 5)
Your question doesn't make sense to me; I suggest you create a new topic and provide more info as described in the How To Post Thread http://www.tm1forum.com/viewtopic.php?f=3&t=1037Actually i need to know more on picking up subset using csv files whereby some of the cell is either null or empty..