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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

how to get the previous value taking into account other columns as a filter

DateValueTypeCategory
1/1/2020   10.11A
1/15/2020   10.22A
2/2/2020   10.32B
2/17/2020   10.42A

 

I have an table like that and I need to get the value before taking into account the columns Type and Category. Realize that I don't have values ​​for every day.

For example, if I'm analyzing the day 2/17/2020, the value is 10.4, type 2 and Category A. The Value Before this one has to be of the same type and category, so we need to take the 10.2 of the day 1/15/2020.

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Picture1.png

 

https://www.dropbox.com/s/hq9txsnuvetkjqm/luizabolonha.pbix?dl=0 

 

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
Fowmy
Super User
Super User

@Anonymous 

Please use this as a calculated column: 

 

Column = 
var __date  = Table4[Date]
return
CALCULATE(
    MAX(Table4[Value]),
    ALLEXCEPT( Table4 , Table4[Type] , Table4[Category] ),
    Table4[Date] < __date
)

Fowmy_0-1625750124057.png

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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 community update carousel

Fabric Community Update - June 2025

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