Forum Discussion
Arg ZIP Code do not detected in map. IF formula or calculated column for Province?
- 9 years ago
You can create a new DAX Column using SWITCH like this... Just add all other letters and their corresponding values :smileyhappy:
Column = SWITCH ( 'Table Name'[Province], "A", "Salta", "B", "Buenos Aires", "C", "Ciudad Autonoma", "Q", "Neuquen" )Or in the Query Editor - Add column tab - Conditional Column
Hope this helps! :smileyhappy:
Thanks Sean,
About using the provinces, i need to create a new column with them, the ones i have in my report are letters..
A = Salta,
B = Buenos Aires
C = Ciudad Autonoma
...
Q = Neuquen...
would you please help me, with the formula to create the new calculated column to transform each letter in a State/Province?
Thanks!
You can create a new DAX Column using SWITCH like this... Just add all other letters and their corresponding values :smileyhappy:
Column =
SWITCH (
'Table Name'[Province],
"A", "Salta",
"B", "Buenos Aires",
"C", "Ciudad Autonoma",
"Q", "Neuquen"
)Or in the Query Editor - Add column tab - Conditional Column
Hope this helps! :smileyhappy: