Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have a Dimension in chart which has following value
dimension name country and the value is India, Uk , Mexico .
but i want to implement if condition where if country is India then ASIA .
=IF(Country = 'India','ASIA',Country)
@marlku1234 You can use the below code in your script.
If (country='India','ASIA',
if(Country='UK','Europe','Country')) as Country
If this resolves your issue, please like and accept it as a solution.