Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have a table with multiple columns but i want to performa calculation on 2 columns. here is the sample data.
I want to find the last non zero value in column A and then get the sum of all the values in column B starting from Last non-zero value of column A till all the rows with 0 values in column A. In short, calculation needs to be performed on highlighted area only.
Please let me know how can i do that. Appreciate any help.
Thanks in Advance
Solved! Go to Solution.
@tahira_ali_28
Please create the measures as follows:
A_S Last =
VAR _LastIndex = CALCULATE( MAX ( Table1[Index] ) , Table1[A_S] <> 0 )
RETURN
CALCULATE(
SUM(Table1[D]),
Table1[Index] > _LastIndex
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@tahira_ali_28
Please create the measures as follows:
A_S Last =
VAR _LastIndex = CALCULATE( MAX ( Table1[Index] ) , Table1[A_S] <> 0 )
RETURN
CALCULATE(
SUM(Table1[D]),
Table1[Index] > _LastIndex
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!