Need Help in VBA MACRO for Summing up values using Array

jlohit

New Member
Joined
Apr 23, 2008
Messages
3
Hi Gurus,

Could anybody help me in writing a simple macro to sumup values as mentioned in the example.

A B C

1 4 5 176
2 693 6
3 1067 56 1492
4 1068 109
5 1079 694
6 1089 798

Here results are marked in RED color. This is how the logic should be

Cell C1 = ( 5+6+56+109)
C3 = (694+ 798)


Logic is simple , it goes through the row B , for each value it compares with the values of Row A .

For example , 5> 4 so goes to the second value in Row A

5<693 so puts 5 in the loop
6<693 so puts 6 in the loop
56< 693 so puts 56 in the loop
109< 693 so puts 109 in the loop
but being 694> 693 adds all the values in the loop ( 5+6+56+109) and puts that in the cell C1

And so on......

Your help is really appreciated.... and indebted

Thank you very much
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
can bedone. understood first(looping) logic. but what about the second logic. why the second total
694+798 should be entered in C3 and not in C2 (the next one) or C5( the first loop in the second total) or is it just alternate rows???
 
Upvote 0
Hi Thanks very much for your reply , actually that was easy for me to explain in a sample excel sheet . I have mailed you to gmail explaining a sample case. Please help in resolving the problem.

Thanks
 
Upvote 0

Forum statistics

Threads
1,214,899
Messages
6,122,155
Members
449,068
Latest member
shiz11713

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