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
vitexo87
Post Prodigy
Post Prodigy

Create measure filter

I need to create a measure that makes a calculation by there a filter I do, for example, calculate (sum (table [column]); table [column that will suffer the filter]) in my case would be the year filter

5 REPLIES 5
Sean
Community Champion
Community Champion

@vitexo87 If you are going to use a Slicer or Filter - why add the filter in the Formula as well?

 

Can you explain better?

@Sean@Greg_Deckler

 

For the filter to determine a value for a single object, which will be using this measure,

for example: I have a graph and want their values to be displayed only when a filter is done year

 

some would like this: Sum ({$ <Year = {'<= $ (= Only (Year))'}, Month =>} Vl Rest processed)

Sean
Community Champion
Community Champion

I don't get this. But you can always hard code the filter like this for example

 

2015 Total = CALCULATE (SUM(Table[Column]), CalendarTable[Year]=2015)

 

If you want to do Year to Date = TOTALYTD(SUM(Table[Column]), CalendarTable[Date]) 

@Sean's method was one of the alternatives that I was alluding to. The equivalent in SUMX syntax is:

 

=SUMX(FILTER(Table, Table[Year]=2015),[ColumnToSum])

Here is an article on SUM vs. SUMX vs. CALCULATE

http://www.powerpivotpro.com/2014/10/sum-sumx-or-calculatechoices-choices/

 

The article isn't complete as it doesn't mention that you can also change the filter context with SUMX.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
Greg_Deckler
Super User
Super User

Couple different ways of doing that, but I would use SUMX

 

https://msdn.microsoft.com/en-us/library/ee634959.aspx

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.