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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Foolke
Helper I
Helper I

Get value from date slider(slicer)

Hi all,

I have a report with a Date slicer. 

slider.png

I want to use the selection of this slider as title in an other visual.

I understand that I need to make a measure and use conditional formating. 

How do I create the measure? I foolowed the solution from How to get value from date slicer . This result in this code

ms_Min closed date selected = CALCULATE(MIN('PMCC Tickets Closed'[Closed_Date].[Date]);ALLSELECTED('PMCC Tickets Closed'))
ms_Max closed date selected = CALCULATE(MAX('PMCC Tickets Closed'[Closed_Date].[Date]);ALLSELECTED('PMCC Tickets Closed'))
ms_Selected Closed date = "Closed tickets per user for the period " & [ms_Min closed date selected] & " - " & [ms_Max closed date selected]

 Last measure is used as conditional format value.

 

This gives this result:

slider.png

 

there is a difference between selected and displayed.

How can I solve this?

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Hi @Foolke ,

Please delete the'.[Date]' in your measure, it will transfer a larger built-in date table in power bi so that you will get the wrong date value.

Min date =
CALCULATE ( MIN ( 'Calendar'[Date] ), ALLSELECTED ( 'Calendar' ) )
Max Date =
CALCULATE ( MAX ( 'Calendar'[Date] ), ALLSELECTED ( 'Calendar' ) )
Selected date = "selected date:" & [Min date] & "-" & [Max Date]

You will get the right result:

get value in date slicer.png

Also, you can only create single measure by using variance to get the same result:

Measure = 
var _mindate = CALCULATE(MIN('Calendar'[Date]),ALLSELECTED('Calendar'))
var _maxdate = CALCULATE(MAX('Calendar'[Date]),ALLSELECTED('Calendar'))
return 
"Selected date:" & _mindate & "-" & _maxdate

 

Best Regards,
Yingjie Li

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
v-yingjl
Community Support
Community Support

Hi @Foolke ,

Please delete the'.[Date]' in your measure, it will transfer a larger built-in date table in power bi so that you will get the wrong date value.

Min date =
CALCULATE ( MIN ( 'Calendar'[Date] ), ALLSELECTED ( 'Calendar' ) )
Max Date =
CALCULATE ( MAX ( 'Calendar'[Date] ), ALLSELECTED ( 'Calendar' ) )
Selected date = "selected date:" & [Min date] & "-" & [Max Date]

You will get the right result:

get value in date slicer.png

Also, you can only create single measure by using variance to get the same result:

Measure = 
var _mindate = CALCULATE(MIN('Calendar'[Date]),ALLSELECTED('Calendar'))
var _maxdate = CALCULATE(MAX('Calendar'[Date]),ALLSELECTED('Calendar'))
return 
"Selected date:" & _mindate & "-" & _maxdate

 

Best Regards,
Yingjie Li

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

amitchandak
Super User
Super User

@Foolke 

hope these are measures and not columns. The slicer is on closed_date.

 

Try a measure like this

measure =
var _min = MINX(ALLSELECTED('PMCC Tickets Closed'),'PMCC Tickets Closed'[Closed_Date] )
var _max = MAXX(ALLSELECTED('PMCC Tickets Closed'),'PMCC Tickets Closed'[Closed_Date] )
return
"Closed entries per user for the period" & _min & " - " & _max

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.