Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello everyone.
I have a column that has the values "yes", "Not Reviewed", and blanks. I would like tge blanks to return "no". Could anyone please assist with the correct measure. Your assistance is appreciated 🙂
Many thanks ChiragGarg2512
Hi @AMBP73
You can do:
Calculated_Column= IF(ISBLANK('YourTable'[Column]), "No", 'YourTable'[YourColumn])
Be aware, that you are calculating a new column.
You can also use PowerQuery editor and replace directly nulls by No
Many thanks for both of the tips. 🙂
I'm glad it works.
Don't forget to mark as solved the topic for other users which may need it
Try this measure:
measure = if(ISBLANK('table'[column]), "No", 'table'[column])
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
17 | |
10 | |
9 | |
8 | |
7 |
User | Count |
---|---|
20 | |
11 | |
8 | |
6 | |
6 |