Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this. It uses the SUM function but adjusts as necessary.
'============================================= Sub test() Dim FoundCell As Object With ActiveSheet.Columns(1) Set FoundCell = .Find("Summary", LookIn:=xlValues) If Not FoundCell Is Nothing Then FirstAddress = FoundCell.Address Do ActiveSheet.Cells(FoundCell.Row, 2).FormulaR1C1 = _ "=SUM(R[-3]C:R[-1]C)" Set FoundCell = .FindNext(FoundCell) Loop While Not FoundCell Is Nothing _ And FoundCell.Address < FirstAddress End If End With End Sub '============================================= --- Message posted from http://www.ExcelForum.com/ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
EXCEL FIND A SPECIFIC TOTAL | Excel Worksheet Functions | |||
Target cell reference moves when target is cut and pasted | Excel Discussion (Misc queries) | |||
total of cells that are next to a cell that contains specific text | Excel Worksheet Functions | |||
Can I total only a % of a number (cell) base on total of all cel | Excel Discussion (Misc queries) | |||
Count number of times a specific number is displayed in a cell ran | Excel Worksheet Functions |