TM1 operators
logical operators:
& AND
% OR
~ NOT
strings operators:
| concatenate
@= string1 equals string2
@<> string1 differs from string2
I always seem to forget some of these.
|
spilling the beans
|
contents | community | links | site map | FAQ | contact us |
SearchNavigationThe TM1 cookbookUser loginPoll |
TM1 operatorslogical operators: strings operators: I always seem to forget some of these. |
Syndicatebrowse by topicTM1 blogs
|
Problem with @<>
I do not know how it works now, but in one of older TM1 versions I had to replace:
IF(sVariable@<>'CompareWithMe');
with
IF(~(sVariable@='CompareWithMe'));
The first one did not work as I expected.
HTH