Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
tahira_ali_28
Frequent Visitor

to calculate sum of column on filtered rows

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

 

 

tahira_ali_28_0-1634132894039.png

 

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@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
)

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@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
)

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Thanks alot @Fowmy .. This solution solved my problem.

 

Thanks for your help.

 

Regards

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.