Power BI - Data Cleaning with Power Query
Given the DAX measure:
What will be the result if all 'Sales[Amount]' values are blank?
Measure = IF(ISBLANK(SUM(Sales[Amount])), 0, SUM(Sales[Amount]))
What will be the result if all 'Sales[Amount]' values are blank?
