Progressive adding of column with 0's

tHE fLY

New Member
Joined
Jul 8, 2014
Messages
31
Hey everyone,

i have aver a spreadsheet that's has 3 columns

column A Column B. Column C

Gross amount. Draw received. Comm received

100,000. 1,250. 11,500(%* 100,000 - 1250)

0. 1,250. 0

0. 1,250. 0

100,000. 1,250. 7,750 (%* 100,000- 1,250-1,250-1,250)


when 0 is in column A... Column C is skipped when amount is in column A then column C adds each amount from column A where 0 is in addition to amount in the same row...

please help.

Thanks!
 
Latch maker.. Thanks for the reply.. I don't have on yet.. I tried to do a few nested if statements but that wouldn't work because I could have 6 months without a gross amount... I'm needing help to determine a formula that would do this.

thanks!
 
Upvote 0
If you can add a fourth column for Accumulative Draw this would work.
<style type="text/css">
table.tableizer-table {
border: 1px solid #CCC; font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.tableizer-table td {
padding: 4px;
margin: 3px;
border: 1px solid #ccc;
}
.tableizer-table th {
background-color: #104E8B;
color: #FFF;
font-weight: bold;
}
</style><table class="tableizer-table">
<tr class="tableizer-firstrow"><th>Gross amount</th><th> Draw received</th><th> Comm received</th><th>Accum Draw</th></tr>
<tr><td>100000</td><td>1250</td><td>=IF(A2>0,SUM((0.1275*A2)-IF(ISTEXT(D1),SUM(B2),SUM(B2+D1)),0),0)</td><td>=IF(C2=0,IF(ISTEXT(D1),SUM(B2),SUM(B2+D1)),0)</td></tr>
<tr><td>0</td><td>1250</td><td>=IF(A3>0,SUM((0.1275*A3)-IF(ISTEXT(D2),SUM(B3),SUM(B3+D2)),0),0)</td><td>=IF(C3=0,IF(ISTEXT(D2),SUM(B3),SUM(B3+D2)),0)</td></tr>
<tr><td>0</td><td>1250</td><td>=IF(A4>0,SUM((0.1275*A4)-IF(ISTEXT(D3),SUM(B4),SUM(B4+D3)),0),0)</td><td>=IF(C4=0,IF(ISTEXT(D3),SUM(B4),SUM(B4+D3)),0)</td></tr>
<tr><td>100000</td><td>1250</td><td>=IF(A5>0,SUM((0.1275*A5)-IF(ISTEXT(D4),SUM(B5),SUM(B5+D4)),0),0)</td><td>=IF(C5=0,IF(ISTEXT(D4),SUM(B5),SUM(B5+D4)),0)</td></tr>
</table>
 
Last edited:
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top