Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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])
User | Count |
---|---|
20 | |
14 | |
11 | |
9 | |
6 |
User | Count |
---|---|
24 | |
23 | |
20 | |
15 | |
10 |