Power BI - Data Cleaning with Power Query
You wrote this DAX measure to replace blanks with zero:
But it always returns zero even when data exists. What is the likely issue?
Measure = IF(ISBLANK(SUM(Sales[Amount])), 0, SUM(Sales[Amount]))
But it always returns zero even when data exists. What is the likely issue?
