This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi
I have a table with short names like "ASIF" "FASC" etc.
I need to rename all of them like "ASIF" to "Artificial" and "FASC" to "Fashion" etc.
I know I can do that easly in query editor but then I will break my data folding, I need to do this with a measure or new column without using query editor ( inside the left "Data" button ).
I have googled it but none answer what I really need.
Solved! Go to Solution.
@Anonymous , Power Query, or new column DAX are two options
example
In DAX
Switch( [Col1]
"ASIF" , "Artificial" ,
"FASC" , "Fashion",
"Other"
)
@Anonymous , Power Query, or new column DAX are two options
example
In DAX
Switch( [Col1]
"ASIF" , "Artificial" ,
"FASC" , "Fashion",
"Other"
)
Works perfectly, thank you.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 55 | |
| 31 | |
| 26 | |
| 23 |