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
tabi786
Regular Visitor

Select Column Value based on Slicer Selection

Hi,

 

I have following two tables Budgets and Years. On selected value of Years, I want to show the selected year budget in Selected Budget field.

 

Selected Year is Measure Field like below and it works fine.

Selected Year = SELECTEDVALUE(Years[Year]; 0)

 

Selected Budget is a Calculated Field like below but this doesn't work:

Selected Budget = IF([Selected Year] = 2017; Budgets[Budget 2017]; IF([Selected Year] = 2018; Budgets[Budget 2018];IF([Selected Year] = 2019; Budgets[Budget 2019]; IF([Selected Year] = 2020; Budgets[Budget 2020];IF([Selected Year] = 2021;Budgets[Budget 2021];IF([Selected Year] = 2022;Budgets[Budget 2022];0)))))) 

 

Do I need to create Measure Column instead of Calculated column? If yes, what would be the fomular?

 

 

Regards.

 

Aftab Ahmad

 

Power BI

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Yes, you need a measure, calculated columns are only calculated at data load and are not dynamic. You could use the same formula and just wrap a MAX around each of your Budgets[Budget 2017], etc. columns. That being said, you would have an easier time if you perhaps unpivoted your budget columns and assigned them a year, then you could do it with a FILTER statement.


@ 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...

View solution in original post

2 REPLIES 2
tabi786
Regular Visitor

Hi,

 

I have following two tables Budgets and Years. On selected value of Years, I want to show the selected year budget in Selected Budget field.

 

Selected Year is Measure Field like below and it works fine.

Selected Year = SELECTEDVALUE(Years[Year]; 0)

 

Selected Budget is a Calculated Field like below but this doesn't work:

Selected Budget = IF([Selected Year] = 2017; Budgets[Budget 2017]; IF([Selected Year] = 2018; Budgets[Budget 2018];IF([Selected Year] = 2019; Budgets[Budget 2019]; IF([Selected Year] = 2020; Budgets[Budget 2020];IF([Selected Year] = 2021;Budgets[Budget 2021];IF([Selected Year] = 2022;Budgets[Budget 2022];0)))))) 

 

Do I need to create Measure Column instead of Calculated column? If yes, what would be the fomular?

 

 

Regards.

 

Aftab Ahmad

 

Power BI

Greg_Deckler
Super User
Super User

Yes, you need a measure, calculated columns are only calculated at data load and are not dynamic. You could use the same formula and just wrap a MAX around each of your Budgets[Budget 2017], etc. columns. That being said, you would have an easier time if you perhaps unpivoted your budget columns and assigned them a year, then you could do it with a FILTER statement.


@ 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.