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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Measures with Slicer (Edit Interaction)

Hello everybody,

I'm stuck trying to solve a question that seems simple, but it's been giving me a bit of work.


Imagine that I have a table with:

- Year
- Month
- Ticket number


I created some cards like:

 

- Total Tickets Year: I created with the number of tickets for the desired year, using the visual filter.


- Current Total Tickets Month: I inserted a slicer, in order to be more dynamic, and when selecting the month in question, using the "Edit Interaction" and the result is seen inside the card.

 

- % Participation Month/Year: In this part I'm stuck.

 

Because it is an interactive filter, I am not able to create a measure that is variable according to the selection made in the selection box.

 

Can anyone help me?

 

EDITED:

Example below:

 

PatrickPerovan_0-1659449220334.png

 

In green: all information filtered by "Edit interaction".

 

In red: The information I need. According to the month I select, all the information of "All Tickets", "Completed" and Open will be different, and I need to calculate the participation %.

 

 

 

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try these measure.

 

Current Year Value = 
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER ( ALL ( 'Table' ), 'Table'[Date].[Year] = MAX ( 'Table'[Date].[Year] ) )
)
% Participation Month/Year = 
DIVIDE ( SUM ( 'Table'[Value] ), [Current Year Value] )

vkkfmsft_0-1659686810920.png


If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-kkf-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try these measure.

 

Current Year Value = 
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER ( ALL ( 'Table' ), 'Table'[Date].[Year] = MAX ( 'Table'[Date].[Year] ) )
)
% Participation Month/Year = 
DIVIDE ( SUM ( 'Table'[Value] ), [Current Year Value] )

vkkfmsft_0-1659686810920.png


If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , Better to have a separate month year table(Say Date)  with key Year, month and columns of month and year too

 

Then year value

calculate(Count(Table[Ticket Number]), filter(all(Date), Date[Year] = max(Date[Year]) ) )

 

year value with same table

calculate(Count(Table[Ticket Number]), filter(all(Table), Table[Year] = max(Table[Year]) ) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.