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 Geeks,
I m trying to Filter a Measure(Sum of SALES) based on caluclation on Dimesnions GROUPID='PHL' AND ITEM='1003'
Basically, Needs the below SQL condition in DAX:
SUM(CASE WHEN NOT([GROUPID]='PHL' AND [ITEM]='1003') THEN SALES END)
Solved! Go to Solution.
Hi,
From what i understand, you wish to sum the sales after ignoring PHL from the GroupID column and 1003 from the Item column. If my understanding is correct, then try this
=CALCULATE(SUM(Data[Sales]),Data[GroupID]<>"PHL",Data[Item]<>1003)
Please note that i have assumed the Item column to be a numeric column. If not, then wrap 1003 in double quotes.
Hi,
From what i understand, you wish to sum the sales after ignoring PHL from the GroupID column and 1003 from the Item column. If my understanding is correct, then try this
=CALCULATE(SUM(Data[Sales]),Data[GroupID]<>"PHL",Data[Item]<>1003)
Please note that i have assumed the Item column to be a numeric column. If not, then wrap 1003 in double quotes.
In power BI if you are using DAX you need to use calculation calculate formula for example:
calculate formula take and expression and a filter
Excluded Dimension = calculate(sum(sales), [GROUPID]="PHL" and [item]=1003)
if you are creating a measure with dax you need to use double quotes and use calculation for example:
excluded Dimension = calculate(sum(sales),[groupID]="PHL" and [item]="1003")
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 |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |