I have a dimension in which both text and numeric elements. I need for all text to execute the rule which will be the first.
Code: Select all
[] = S: IF(!Version @<> 'New', CONTINUE, STET);
Tell me how to solve the problem? Thank you
Code: Select all
[] = S: IF(!Version @<> 'New', CONTINUE, STET);
Code: Select all
[] = S: IF('New' @<> !Version, CONTINUE, STET);