March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
How can I replace with blank with 0 when there is no value returned in the table? If I add (+0) to the below measures it does not work.
Converted Count = COUNT(Data[Invoice No])
Not Converted Count = COUNTBLANK(Data[Invoice No])
Total Enquiry Count = COUNT(Data[Client Name])
Conversion Ratio % = [Converted Count] / [Total Enquiry Count]
When i use ISBLANK it opens all data off. How can i handle this?
Solved! Go to Solution.
Hi @Keith-Sayer - Thank you for your help. I have modified your suggestion slightly to handle the results.
Hi @Keith-Sayer - Thank you for your help. I have modified your suggestion slightly to handle the results.
Hi @gauravnarchal ,
Did the Keith's answer helped you? If so, please consider marking the most helpful answer as a solution, as this will help people searching the forum for similar questions in the future to find answers more quickly. Thanks in advance!
If the problem is still unresolved, you can continue to add details of the problem below and feel free to contact us.
Best Regards,
Gao
Community Support Team
Variables work great for this. Example:
Converted Count =
var countinv = COUNT(Data[Invoice No])
return if(Isblank(countinv)=true(),0,countinv)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |