Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi I have a table named 'Kartela' with posting date and amount i need to build a measure according to other solutions in the comunity but it does not completely work . When I keep the table simple it works
but when i add more info like the remarks of the movement is not working
any idea how to fix it ?
thea measure is
Solved! Go to Solution.
HI, I am not sure how your desired outcome looks like, but try something like below whether it suits your requirement.
It is the running total by Remarks.
Running Total =
CALCULATE (
SUM ( kartela[blc] ),
FILTER (
ALL ( 'kartela' ),
kartela[Remarks] = MAX ( kartela[Remarks] )
&& 'kartela'[Posting Date] <= MAX ( 'kartela'[Posting Date] )
)
)
Running total can be easily achieved using the method shown in this video .Hope this helps .
There is also a method for a non date value : https://youtu.be/85sKPSnc_GE
HI, I am not sure how your desired outcome looks like, but try something like below whether it suits your requirement.
It is the running total by Remarks.
Running Total =
CALCULATE (
SUM ( kartela[blc] ),
FILTER (
ALL ( 'kartela' ),
kartela[Remarks] = MAX ( kartela[Remarks] )
&& 'kartela'[Posting Date] <= MAX ( 'kartela'[Posting Date] )
)
)
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |