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

Comparing Slicer date and column date

Hi

I want to use a date slicer, which returns one date, to calculate the number of days between each transaction date and the selected slicer date, this to accomodate for an option to show a customer aging report as it was on a given date.

 

My issue is that this works 100%:

 

Daysbetween = date(2019;6;30)-'Date'[Date]

While this doesnt work

 

 

SelectedDate = SELECTEDVALUE(PerDateTable[PerDate])
DaysbetweenMeasureinput = [SelectedDate]-'Date'[Date]

event though I know [SelectedDate] returns the same date 30.06.2019

 

I understand this has to do with context, but is there any way to achieve this?

 

Any pointers are appreciated.

 

 

1 ACCEPTED SOLUTION
v-diye-msft
Community Support
Community Support

Hi @Anonymous 

 

Take a try of this one: 

Measure = MAXX('Date',DATEDIFF([Date],SELECTEDVALUE(PerDateTable[PerDate]),DAY))

2.PNG

Community Support Team _ Dina Ye
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-diye-msft
Community Support
Community Support

Hi @Anonymous 

 

Take a try of this one: 

Measure = MAXX('Date',DATEDIFF([Date],SELECTEDVALUE(PerDateTable[PerDate]),DAY))

2.PNG

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

You can create a measure to calculate this, something like below.

 

DaysbetweenMeasureinput = 
SUMX( Dates, SELECTEDVALUE( DatePicker[Date] ) - Dates[Date] ) * 1

See the attached file for reference.

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski


 

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.