Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sandeepk66
Advocate I
Advocate I

Exclude Dimension for a Measure

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)

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

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.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

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.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
emadrigal
Helper II
Helper II

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)

emadrigal
Helper II
Helper II

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")

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.