Forum Discussion
Anonymous
4 years agoNot applicable
DAX Measure Error when a column is blank empty data points
Hi Experts i am trying to sum where the following columns are blank only and either True or false - my conditions are: 1. So PostingDate = blank 2. InvoiceChecked = true (text) 3. InvoiceNumbe...
- 4 years ago
Anonymous It is giving me this result
Anonymous
4 years agoNot applicable
Hi Tahreem24, i did try that but getting the following error
Tahreem24
Super User
4 years agoAnonymous Try using "True()".
Checked Finance = CALCULATE(SUM(FACT_NEWBI_NewSalesDashboard[SOOrderValue]),FILTER(FACT_NEWBI_NewSalesDashboard,FACT_NEWBI_NewSalesDashboard[SOPostingDate] = BLANK() && FACT_NEWBI_NewSalesDashboard[InvoiceNumber] = BLANK() && FACT_NEWBI_NewSalesDashboard[InvoiceChecked] = True()))