Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
15 | |
11 | |
8 | |
8 | |
8 |
User | Count |
---|---|
22 | |
13 | |
11 | |
10 | |
10 |