Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default help with Unmerged cells that need linking back - populate rows

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default help with Unmerged cells that need linking back - populate rows

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
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
Autofit Unmerged Cells (XP & Excel 2003) Gina Excel Discussion (Misc queries) 5 November 17th 09 08:04 PM
Retain value of merged cell in all unmerged cells kari Excel Discussion (Misc queries) 3 July 15th 08 12:36 AM
splitting single, unmerged cells over 2 printed pages [email protected] Excel Discussion (Misc queries) 1 April 14th 07 10:38 PM
Make it possible to split unmerged cells again!!! ryanjh02 Excel Worksheet Functions 0 August 17th 06 03:34 PM
Macro to add rows and populate cells Scott Wagner Excel Programming 0 December 28th 05 07:40 PM


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

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

About Us

"It's about Microsoft Excel"