Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I have a table visualization like below:
I need to create a message "No Data" when there are no values for Maths and English. Please let me know how can I do it in Power BI.
Thanks in advance
Solved! Go to Solution.
Hi @Herndon_powerbi ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure_Math = IF(MAX('Table'[Maths])=BLANK() ,"No data",MAX('Table'[Maths]))
Measure_English = IF(MAX('Table'[English])=BLANK(),"No data",MAX('Table'[English]))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Herndon_powerbi ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure_Math = IF(MAX('Table'[Maths])=BLANK() ,"No data",MAX('Table'[Maths]))
Measure_English = IF(MAX('Table'[English])=BLANK(),"No data",MAX('Table'[English]))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
try using a measure intead of the columns directly, and use the DAX IF(ISBLANK(table[column]),"no data",table[column]))
You are almost correct except that I need to insert the count function also.
IF(ISBLANK(count(table[column])),"no data",table[column]))
@Herndon_powerbi If you consider aMaths and English Coulumns as text data type,you can replace null with"No Data" using replace text in power query editor
The message should display as below:
@Herndon_powerbi are these measures? if yes, share the DAX expression to provide the solution.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
They are not measures, the column values are coming from a table