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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
AnandNamburi
Helper III
Helper III

Selected value is not working as expected when we select slicer options like between, >= and <=

Hi All,

 

I have a slicer and I'm displaying year in it.

I want to display the selected value in a card and for that I have written a DAX like below.

Seleged Value of Year = SELECTEDVALUE(Orders[Order Date].[Year])
 
When I select dropsown or list the selected value is appearing correct in the card but when I select any option like between, greater than equal to or less than or equal to it is displaying blank.
 
AnandNamburi_0-1653455855684.png

 

 
Is there any workaround for this type of requirement.
 
Thanks,
Anand
1 ACCEPTED SOLUTION
danextian
Super User
Super User

Hi @AnandNamburi ,

SELECTEDVALUE will only show a value if there is one value selected. It's second argument is for displaying something else if there are more than  one values.  That said, selecting a range of numbers or dates means that there are more than one numbers or dates.  I would use either MAX,  MIN, LASTNONBLANK or FIRSTNONBLANK instead.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

1 REPLY 1
danextian
Super User
Super User

Hi @AnandNamburi ,

SELECTEDVALUE will only show a value if there is one value selected. It's second argument is for displaying something else if there are more than  one values.  That said, selecting a range of numbers or dates means that there are more than one numbers or dates.  I would use either MAX,  MIN, LASTNONBLANK or FIRSTNONBLANK instead.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors