Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello,
Im new to Power BI, I would like to find the value next month time on the same case
I'm building a report from the data like below:
Name | Temp Value | Prev Value | Date |
01/01/2019 | A | 8,154,159 | |
02/01/2019 | A | 8,440,583 | |
03/01/2019 | A | 5,467,687 | 5,343,627 |
01/01/2020 | A | 10,862,462 | |
02/01/2020 | A | 6,470,157 | |
03/01/2020 | A | 6,250,878 | |
01/01/2021 | A | 187,845 | 21,960,681 |
02/01/2021 | A | 8,718,120 | |
03/01/2021 | A | 5,993,100 | |
01/01/2022 | A | 12,234,775 | |
02/01/2022 | A | 9,988,616 | |
03/01/2022 | A | 6,745,904 | 9,733,571 |
01/01/2020 | B | 4,513,172 | |
02/01/2020 | B | 3,609,276 | |
03/01/2020 | B | 2,075,878 |
THE EXPECTED OUT PUT IS
I have tried with the calculate and the lookupvalue function without any luck.
Hope that someone can be of help!
Best regards
Solved! Go to Solution.
@buithai108 , Try like
new column
next day = sumx(filter(Table, [Name] = earlier([Name]) && [Date] = earlier([Date])+1 ),[Prev Value])
Previous year same day =
var _day = date(year([Date])-1, month([Date]),1)
return
sumx(filter(Table, [Name] = earlier([Name]) && [Date] = _day ),[Prev Value])
Wonderful, thanks!
@buithai108 , Try like
new column
next day = sumx(filter(Table, [Name] = earlier([Name]) && [Date] = earlier([Date])+1 ),[Prev Value])
Previous year same day =
var _day = date(year([Date])-1, month([Date]),1)
return
sumx(filter(Table, [Name] = earlier([Name]) && [Date] = _day ),[Prev Value])
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
89 | |
86 | |
82 | |
64 | |
49 |
User | Count |
---|---|
125 | |
111 | |
88 | |
69 | |
66 |