Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default SUM values in a column till you reach a flag in another column- Urgent

Hello:
My data is something like this:
Column1 Column2 Flag
1 200 0
2 300 0
4 500 1
6 400 0
7 300 0
9 600 0

I need a formula to add values in each of the first two columns till
the flag equals 1. Then another formula to add the values below the
flag seperately.

In other words- I am expecting 7, 22, 1000, 1300 values to be output
for the above sheet.

The number of rows is not constant in my worksheet although the order
of the data is standard. I would want to avoid VBA if I can do this by
a simple formula.

Please help. This is Urgent.

Thanks in advance.

-Naveen

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 70
Default SUM values in a column till you reach a flag in another column- Urgent

Look at SumIF() or SumProduct()

Glen

wrote in message
ups.com...
Hello:
My data is something like this:
Column1 Column2 Flag
1 200 0
2 300 0
4 500 1
6 400 0
7 300 0
9 600 0

I need a formula to add values in each of the first two columns till
the flag equals 1. Then another formula to add the values below the
flag seperately.

In other words- I am expecting 7, 22, 1000, 1300 values to be output
for the above sheet.

The number of rows is not constant in my worksheet although the order
of the data is standard. I would want to avoid VBA if I can do this by
a simple formula.

Please help. This is Urgent.

Thanks in advance.

-Naveen



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 133
Default SUM values in a column till you reach a flag in another column- Urgent

If not, here it is in VBA:


Sub adder()

Dim intcounter As Integer
Dim valuepaster As Integer
Dim Flagchecker As Boolean
Dim lastrow As Integer

lastrow = ActiveSheet.UsedRange.Rows.Count
valuepaster = 2
intcounter = 2
sumtotal = 0

Do Until intcounter = lastrow + 2
Cells(intcounter, 2).Select
If ActiveCell.Offset(0, 1).Value = 1 Then
Flagchecker = True
End If

If Flagchecker = True Then
sumtotal = ActiveCell.Value + sumtotal
Cells(valuepaster, 4).Value = sumtotal
sumtotal = 0
valuepaster = valuepaster + 1
Flagchecker = False

Else
sumtotal = ActiveCell.Value + sumtotal
End If
intcounter = intcounter + 1
Loop
If ActiveCell.Offset(0, 1).Value = 1 Then
Exit Sub
End If
Cells(valuepaster, 4).Value = sumtotal
End Sub

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how can I flag the same data from two different column IBE Excel Worksheet Functions 5 February 28th 09 07:10 AM
*** Urgent help formula * Need to sum values in a column if all .. Alpha Bravo Charlie Excel Worksheet Functions 2 November 18th 07 01:11 AM
I need till check for duplicate in a column. LO in Sweden Excel Discussion (Misc queries) 5 October 3rd 07 02:28 PM
How do I automatically total and flag charges when they reach a s. slw66 Excel Discussion (Misc queries) 4 February 22nd 05 08:38 PM
Calculating values to column D with formula based on values column A spolk[_2_] Excel Programming 1 April 30th 04 06:29 PM


All times are GMT +1. The time now is 12:22 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"