Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have written the following macro. What I need is that when the nex "Result" is found the "temp" range should change to that row. Currently temp stays at Range("G13") Please help. Thanks Sub testcalc() Dim temp As Range Set temp = Range("G13") total = 0 Cells(13, "D").Select While ActiveCell.Value < "" If Cells(ActiveCell.Row, "D").Value = "Result" Then Cells(ActiveCell.Row, "G").Value = 0 temp = Cells(ActiveCell.Row, "G") total = Cells(ActiveCell.Row, "G").Value temp = Cells(ActiveCell.Row).Address Else If ActiveCell.Value < "Result" Then total = total + Cells(ActiveCell.Row, "G").Value End If End If Cells(ActiveCell.Row + 1, "D").Select temp = total Wend End Su -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calculating totals from COUNTA function | New Users to Excel | |||
Calculating montlhy totals using sumproduct (or other) | Excel Discussion (Misc queries) | |||
Calculating monthly totals | Excel Worksheet Functions | |||
Calculating totals | Excel Discussion (Misc queries) | |||
Help calculating totals | Excel Discussion (Misc queries) |