Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a report that when unmerged looks like this:
User Name Branch Leads Other Leads Total Leads Organisation Agent x 0 0 0 Area 1 1 0 1 Area 2 1 0 1 Total I am trying to produce an agent report for each area with user name, area and the three figures. (delete the total row). Any clues? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub findtotal()
With Worksheets("Sheet3").Range("A1:Z1000") Set c = .Find("Total", LookIn:=xlValues) If Not c Is Nothing Then c.EntireRow.Delete End If End With End Sub "fishy" wrote: I have a report that when unmerged looks like this: User Name Branch Leads Other Leads Total Leads Organisation Agent x 0 0 0 Area 1 1 0 1 Area 2 1 0 1 Total I am trying to produce an agent report for each area with user name, area and the three figures. (delete the total row). Any clues? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Autofit Unmerged Cells (XP & Excel 2003) | Excel Discussion (Misc queries) | |||
Retain value of merged cell in all unmerged cells | Excel Discussion (Misc queries) | |||
splitting single, unmerged cells over 2 printed pages | Excel Discussion (Misc queries) | |||
Make it possible to split unmerged cells again!!! | Excel Worksheet Functions | |||
Macro to add rows and populate cells | Excel Programming |