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
Anonymous
Not applicable

Get value from two filters

 

Hi,

 

I'm trying to create 2 filters in a measure to use in my card label. The porpose is to select a month (for example Fev), get the SUM of the "Quantidade Tons", filtered by the column "Estado Ano" that have "Current", and simultanialy it calculate the SUM of Jan+Fev.

 

If I remove the First filter, they work almost fine... I've the calculation without the "Current" filter. But, if I use the following code, I just have the values without the calculation (Jan+Fev). 

 

How can use the two filters together?

 

Consumo de clientes Tons Current Year = 
CALCULATE (
    SUM ( 'OINV E ORIN'[Quantidade Tons] );
	FILTER ('OINV E ORIN';'OINV E ORIN'[Estado Ano]="Current");
    FILTER ( 
	ALL(
       'Calendar'[Date]);
        'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
    )
)

 

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

Okay I'm just guessing here you want a Year-To-Date Total

 

Does this give you what you are looking for?

Consumo de clientes Tons Current Year =
TOTALYTD ( SUM ( 'OINV E ORIN'[Quantidade Tons] ); 'Calendar'[Date] )

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Sean, thank you! It works like a charm with current year. I also use your code to use "last" year.

 

Consumo de clientes Tons Previous Year = CALCULATE(SUM('OINV E ORIN'[Quantidade Tons]); DATEADD(DATESYTD(Calendar[Date]);-1;Year))
Sean
Community Champion
Community Champion

Okay I'm just guessing here you want a Year-To-Date Total

 

Does this give you what you are looking for?

Consumo de clientes Tons Current Year =
TOTALYTD ( SUM ( 'OINV E ORIN'[Quantidade Tons] ); 'Calendar'[Date] )

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.