The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I want to give out a standardized text if the row is empty/blank:
So that instead of an empty cell in the visual, it says something like "TBD"
Do you know how to achieve that?
Thank you very much. 🙂
Best Regards
Jannis
Solved! Go to Solution.
= IF(isblank(columnname),"TBD",[value])
[value] is whatever you are trying to put in the column normally.
Hi @Anonymous,
You can write an if statement to compare with the current value to replace if the current value equal to blank.
To handle blank values in dax, you can take a look at the following blog:
Regards,
Xiaoxin Sheng
= IF(isblank(columnname),"TBD",[value])
[value] is whatever you are trying to put in the column normally.
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
34 | |
15 | |
12 | |
7 | |
6 |