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.
Hi Folks
I created a measure to count how many Overdue projects appear in a list
Does anyone have any tips for telling the measure to return Zero instead?
Solved! Go to Solution.
Wrap your function with COALESCE.
So COALESCE([Your Measure], 0)
COALESCE returns the first non-blank value, so if Your Measure is blank, it will default to the 0.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingPerfect Solution
Thank You!
Wrap your function with COALESCE.
So COALESCE([Your Measure], 0)
COALESCE returns the first non-blank value, so if Your Measure is blank, it will default to the 0.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reporting