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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
TKhanca
Regular Visitor

How to calculate with different slicer value

Hello,

 

I have two measures on the card visual with filter table1[Year]. First measure is fine and filtering counts based on the selection from the slicer. How can I calculate counts for a diffrent year when table1[Year] is selected. (e,g table1[Year]-3).

 Relationship Year[table1] = Year[table2]

Thank you.

1 ACCEPTED SOLUTION

@Bibiano_Geraldo , thank you very much for your help.

REMOVEFILTERS(Term[Term_Code]) worked to solve this scenario.

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @TKhanca ,

Could you please provide sample files or sample files here? We could offer you more help if we have information in detail. And what you expect the output to be. There is sensitive data that can be removed in advance. How to provide sample data in the Power BI Forum - Microsoft Fabric Community

Thanks for your understanding. Your time and cooperation are much valued by us. We are looking forward to hearing from you to assist further.

Best regards,

Lucy Chen

Bibiano_Geraldo
Super User
Super User

Hi @TKhanca ,

You can create a measure like this:

CountForYearMinus3 = 
VAR SelectedYear = MAX('table1'[Year]) -- Get the selected year
VAR TargetYear = SelectedYear - 3 -- Calculate the target year
RETURN
    CALCULATE(
        COUNT('table2'[SomeColumn]), -- Replace 'SomeColumn' with the column you're counting
        FILTER(
            ALL('table1'), -- Remove current slicer filter from table1
            'table1'[Year] = TargetYear
        )
    )

If the slicer filters table1[Year] to 2024:

  • SelectedYear will be 2024.
  • TargetYear will be 2021.
  • The measure will count rows in table2 where the year is 2021.

Thank you very much Bibiano for your help. It worked for Card but I have another Table visual where I need to use this measure with other columns but it always display the same value.

Can you show me a picture of your table visual?

 

 

 

@Bibiano_Geraldo , thank you very much for your help.

REMOVEFILTERS(Term[Term_Code]) worked to solve this scenario.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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