Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts:
I am putting the following code in my dimensions and its sort of working:
=if(REGION<>'ZZ'AND
REGION<>'zz' AND
REGION<>'Dx'AND
REGION<>'Nx' AND
REGION<>'Not Assigned' AND
REGION<>'-',
REGION)
Problem with this code is that there is a NULL value or some value '-' that keeps on showing up. So what I see is :
ON
QC
WST
-
I only want to choose 'ON', 'QC', and 'WST' in my REGION and nothing else. Not even null values or any value.
Thanks,
J
Use,
Match(REGION,' 'ON', 'QC', 'WST')
and suppress Null
Also When I do 'Supress when Values are Null' it works.
Is there a better way to write the code?
Check the Suppress Null value property.
Use,
Match(REGION,' 'ON', 'QC', 'WST')
and suppress Null