Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm trying to create a calculated dimension in a chart that will do the following:
If the SYS_ID = 'WIRE_DOMESTIC_1LINK' or 'WIRE_INTERNATIONAL_ 1LINK' then '1LINK WIRES'
I tried this:
=if("SYS_ID"='WIRE_DOMESTIC_1LINK','WIRE_INTERNATIONAL_1LINK',"1LINK WIRES") with no luck.
I don't want to have to deal with this in the load script but this is only applicable for one chart. I have other objects that display these values separately. Can I do something with set analysis?
Any help would be greatly appreciated.
Thanks,
Shannon
Hello Shannon,
if you do not want to manage it during the load process try this as your dim:
=if(SYS_ID= 'WIRE_DOMESTIC_1LINK' or SYS_ID= 'WIRE_INTERNATIONAL_ 1LINK', '1LINK WIRES')
Note that my (one) Apostroph differ from yours.
HtH
Roland
Very helpful - thanks for your response!