Hi SAS Experts, I am struggling a bit with Information Map Expressions. I want to only count distinct for if another value is in (12,13,14). So far I did not get very close. I tried: CASE WHEN <<T_STA.PNMG>>eq 12 THEN count(distinct(<<T_STA.STA_ID>>)) END WHEN <<T_STA.PNMG>> = 12 THEN count(distinct(<<T_STA.STA_ID>>)) CASE WHEN <<T_STA.PNMG>> CONTAINS (12,13,14) THEN count(distinct(<<T_STA.STA_ID>>)) END but there is always an error telling me that: ERROR 22-322: Syntax error, expected one of the following: !, !!, &, (, *, **, +, -, /, <, <=, <>, =, >, >=, ?, AND, BETWEEN, CONTAINS, EQ, EQT, GE, GET, GT, GTT, LE, LET, LIKE, LT, LTT, NE, NET, OR, ^=, |, ||, ~=
... View more