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
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. InvoiceNumber = blank
the below is returning back blank when i clearly know i have values in [SOOrderValue]
Solved! Go to Solution.
@Anonymous It is giving me this result
@Anonymous You need to add "" while using True as a text.
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"))
Hi Tahreem24, i did try that but getting the following error
@Anonymous 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()))
Here is some sample data.... not working
CreatedOn | SOOrderValue | SOPostingDate | InvoiceChecked | InvoiceNumber |
20-Jan-22 | £326.04 | True | ||
18-Jan-22 | £2,780.8 | True | ||
19-Jan-22 | £1,346.85 | True | ||
19-Jan-22 | £119.02 | True | ||
20-Jan-22 | £570.23 | True | ||
18-Jan-22 | £1,159.81 | True |
@Anonymous It is giving me this result
in a card visual
@Anonymous You need to check the data type of SOOrderValue column. It should be Numeric column. I am attaching the PBIX file for your reference please check the Power Query how I converted that column into numeric due to currency symbol.
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 |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |