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 moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
I'm trying to create a report in Power BI Desktop using a Power BI Dataset sitting in a workspace. I want to customise some values for a report showing animal data. Specifically, for the column "Current Animal Type", I want to change the values "Cat" and "Kitten" to "Feline".
Normally, I would add a custom column and use the following DAX to acheive this:
New Animal Type = IF('Animal'[Current Animal Type] IN {"Cat", "Kitten"}, "Feline", 'Animal'[Current Animal Type])
However, the ability to add a custom column to my report is disabled when using a Power BI Dataset. Is there another way to achieve this?
Please note, I do not have the ability to change the dataset and I only want to do this for one report. Any help you can give will be much appreciated.
Solved! Go to Solution.
@SBDEV You can only do measures (not columns) in live query mode (which is how you connect to Power BI Datasets).
You could try a new MEASURE:
New Animal Type = IF(SELECTEDVALUE'Animal'[Current Animal Type]) IN {"Cat", "Kitten"}, "Feline", SELECTEDVALUE('Animal'[Current Animal Type]))
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@SBDEV You can only do measures (not columns) in live query mode (which is how you connect to Power BI Datasets).
You could try a new MEASURE:
New Animal Type = IF(SELECTEDVALUE'Animal'[Current Animal Type]) IN {"Cat", "Kitten"}, "Feline", SELECTEDVALUE('Animal'[Current Animal Type]))
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
You're welcome. Glad to help. 🙂
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Check out the May 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 |
|---|---|
| 23 | |
| 20 | |
| 19 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 56 | |
| 56 | |
| 42 | |
| 26 | |
| 24 |