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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

How to use selectedvalue and column values.

Hello everyone. I have a dataset looking like this:

 

Date ordered:

Date:
1-1-2012
5-6-2013
6-8-2014

This tabel has lots of dates. I use the YEAR value of this table to select a year. 

 

Next i have a table with:

NumberNameActive fromActive till
111Name11-1-201231-12-2100
222Name21-1-201231-12-2012
333Name31-1-201231-12-2013
4556Name41-1-201431-12-2100
5775Name51-1-201431-12-2100
6574Name61-1-201431-12-2100
87544name71-1-201431-12-2100

 

So now i want to create a field, showing wich number was active at the selected date. 

Example i select 2013. this should show up.

 

NumberNameActive fromActive tillWasActive
111Name11-1-201231-12-21001
222Name21-1-201231-12-20120
333Name31-1-201231-12-20131
4556Name41-1-201431-12-21001
5775Name51-1-201431-12-21001
6574Name61-1-201431-12-21001
87544name71-1-201431-12-21001

 

I tried doing this with a measure, but i cannot use columns in a measure. The i tried it using a calculated column, but i can not use selectedvalue in a calculated column. 

The calculated column looks like this:

WasActive = IF(AND([Selectedvalue] >= Table2[Active from].[Year];[Selectedvalue] <= table2[Active till].[Year]);1;0) 

 

Where i now have the simple measure:
Selectedvalue = 2013 

 

I used to have the selected value take the value from the slicer, but that ofcourse does not comply with the calculated column.
 
Anyone knows how i can fix this?
 
Thankyou.
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @EricHulshof,

 

If I understand you correctly, SELECTVALUE() function might be helpful for you.

Please check following measure and see if the result achieve your expectation:

Measure =

var sv = RIGHT(SELECTEDVALUE('Date'[Date]),4)

return

IF(RIGHT(MAX('Table'[Active from]),4)<=sv&&RIGHT(MAX('Table'[Active till]),4)>=sv,1,0)

The Date column in my sample data is Text type, you can use FORMAT() function to change type if it is Date type in your data.

Result would be shown as below:

1.PNG

BTW, Pbix as attached, hopefully works for you.

 

Best Regards,

Jay

 

Community Support Team _ Jay Wang

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

Hi @EricHulshof,

 

If I understand you correctly, SELECTVALUE() function might be helpful for you.

Please check following measure and see if the result achieve your expectation:

Measure =

var sv = RIGHT(SELECTEDVALUE('Date'[Date]),4)

return

IF(RIGHT(MAX('Table'[Active from]),4)<=sv&&RIGHT(MAX('Table'[Active till]),4)>=sv,1,0)

The Date column in my sample data is Text type, you can use FORMAT() function to change type if it is Date type in your data.

Result would be shown as below:

1.PNG

BTW, Pbix as attached, hopefully works for you.

 

Best Regards,

Jay

 

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Allright!

 

i knew about the selectedvalue function, i just couldnt figure out how to properly use the column values. Max and Right where the things i was looking for!

 

Thanks alot!

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.