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.
I have a calculated field in tableau :ROUND(SUM([ECL_Prov_Final (in Cr)]) - LOOKUP(ZN(SUM([ECL_Prov_Final (in Cr)])), -1),2)
Please help me to write a DAX query in PowerBI.
Solved! Go to Solution.
HI @vksk0338,
In power bi data model tables, current it does not include row and column index. Any fields that stored regular values to be use as the index for these calculations? Can you please share some more detail?
How to Get Your Question Answered Quickly
BTW, you an also try to use the following measure formula if helps:
formula =
VAR _index =
MAX ( Table1[Index] )
RETURN
ROUND (
SUM ( Table1[ECL_Prov_Final (in Cr)] )
- LOOKUPVALUE ( Table1[ECL_Prov_Final (in Cr)], Table1[Index], _index - 1 ),
2
)
Regards,
Xiaoxin Sheng
HI @vksk0338,
In power bi data model tables, current it does not include row and column index. Any fields that stored regular values to be use as the index for these calculations? Can you please share some more detail?
How to Get Your Question Answered Quickly
BTW, you an also try to use the following measure formula if helps:
formula =
VAR _index =
MAX ( Table1[Index] )
RETURN
ROUND (
SUM ( Table1[ECL_Prov_Final (in Cr)] )
- LOOKUPVALUE ( Table1[ECL_Prov_Final (in Cr)], Table1[Index], _index - 1 ),
2
)
Regards,
Xiaoxin Sheng
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 |
---|---|
7 | |
7 | |
3 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
4 |