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

Finding previous date's value in one column based on another column

Hello everyone,

 

I really got stuck with this one. I can't find any help for the PREVIOUSDAY function. I need to add a column with the previous date's value for a certain value in another column. My dates are not continuous. Example:

Segment             Date        UniqueOpenRate
WiFi                    1/3/2020 15%
Hotel concierge 1/3/2020 14%
WiFi                    2/3/2020 16%
Hotel Concierge 2/3/2020 13%

 

I need to be able to add a new column where I set the previous value for each Segment:

Segment            Date        PrevOpenRate
WiFi                   2/3/2020 15%

 

How can I do that?
Thanks!
Stan

1 ACCEPTED SOLUTION
Anonymous
Not applicable

This works! Thank you so much! Yuu saved me so much time!

View solution in original post

2 REPLIES 2
az38
Community Champion
Community Champion

Hi @Anonymous 

try Measure

Measure = 
var _curDate = MAX('Table'[Date])
var _prevDate = CALCULATE(MAX('Table'[Date]), ALLEXCEPT('Table','Table'[Segment]),'Table'[Date] < _curDate)

RETURN

CALCULATE(SUM('Table'[UniqueOpenRate]), FILTER(ALLEXCEPT('Table','Table'[Segment]),'Table'[Date] = _prevDate))

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

This works! Thank you so much! Yuu saved me so much time!

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.

Top Solution Authors