Hi,
I have uploaded a table to SAS LASR server. The table has the below data.
Month Value
Jan 1000
Feb 1500
.........................
Dec 2000
I wanted to work on a particular month's data (say, Feb)
I created a calculated data item (Feb_Val) as below:
IF (RemoveBlanks('Month'n, _All_) = 'Feb')
RETURN ('Value'n * 0.1)
ELSE 0
However, I don't get the value 150 in the Calculated data item, but get 0. Can some one help ?