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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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.



Follow on LinkedIn
@ 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!:
Power BI Cookbook Third Edition (Color)

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.



Follow on LinkedIn
@ 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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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