Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi team,
I need a help in getting "only" the previous row value. In the below image, "Prev" calculating cumulative. How do i modify it to show only the previous value without cumulative total.
Solved! Go to Solution.
I updated my measure "Prev" as below which worked.
I updated my measure "Prev" as below which worked.
@Anonymous , Create a new table with distinct VD1 (FY Month) , Period and ranking
Rank should be same as
Rank = rankx(period, [VD1], ,asc, dense)
The create measures like
This Period = CALCULATE(sum('Table'[Qty]), FILTER(ALL("Period"),"Period"[Period Rank]=max("Period"[Period Rank])))
Last Period = CALCULATE(sum('Table'[Qty]), FILTER(ALL("Period"),"Period"[Period Rank]=max("Period"[Period Rank])-1))
@amitchandak Thanks Amit.
I will try this method. Thanks for helping me on this.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.