Hi All,
I am having arequirement where the revenue data of china country should be linked to India map. So I wrote the folowing code
CASE [Retailer country]
WHEN 'China' THEN ([Retailer country] = 'India')
END
but still giving an error.
HI,
Create one data item with the expresion
CASE [Retailer country]
WHEN 'China' THEN ( 'India')
Else
([Retailer country] )
END
Hope this would help!
Regards,
McMohan
Hi mcmohan,
I got it.
thanks
You could probably achieve this without coding an expression - just use the Dictionary property of the map to translate 'China' to 'India'. Given you already have a working solution, it's probably irrelevant this time, but if you come across the issue again in future it may save you a little coding. :)
MF.