Date | Value | Type | Category |
1/1/2020 | 10.1 | 1 | A |
1/15/2020 | 10.2 | 2 | A |
2/2/2020 | 10.3 | 2 | B |
2/17/2020 | 10.4 | 2 | A |
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.
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.
@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
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
94 | |
82 | |
42 | |
32 | |
28 |
User | Count |
---|---|
130 | |
95 | |
84 | |
46 | |
40 |