Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default Excel 2003 Wizards?

Hi, is there a way to set up an Excel spreadsheet so it will automatically
delete certain rows or columns?

For example, I have a report I cut and paste into Excel from a website and
it shows multiple lines of "Call Summary" followed by a ton of data. These
lines are duplicates and I want to be able to have them disapear without me
clicking on each row and deleting it. Is that possible?
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default Excel 2003 Wizards?

Show us a small sample of the data and explain which rows/columns to be
deleted from that sample.

But yes........Excel can be programmed to do that.

Or maybe just adding a filter to filter out what you don't want?

Do you want to keep just one of each of the duplicates?

That can be done through Advanced Filter for Unique records only.

Hard to say.


Gord Dibben MS Excel MVP


On Thu, 24 Jul 2008 12:02:02 -0700, MJP08
wrote:

Hi, is there a way to set up an Excel spreadsheet so it will automatically
delete certain rows or columns?

For example, I have a report I cut and paste into Excel from a website and
it shows multiple lines of "Call Summary" followed by a ton of data. These
lines are duplicates and I want to be able to have them disapear without me
clicking on each row and deleting it. Is that possible?


  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default Excel 2003 Wizards?

Oh geez, the report is going to be huge, but here's the top few lines. I
don't see a way to attach the actual spreadsheet into this post so I'm sorry
if it comes across as total junk. I want it to be able to get rid of rows
1-4, 9-11 and all of the ones that says Call Type Summary.

Printable Version

Call Type Daily Report
From: 7/23/2008 00:00:00 To: 7/23/2008 23:59:00
Enterprise Name SL Aband SL Aband SL Aband Aban
Within ASA Tasks Completed Tasks
Ignored Positive Negative Service
Level Offered Assigned Answered Answer Total Handled Aban Return Default Network Flow Calls Other % Queued % Aban Avg Aban Short
Date From Queue Wait Time Treatment Routed Out Error Delay
Time Calls
Run by: TELECOM Report name: WA MS Daily Reports 2
Run Date: 7/24/08 12:38:22 PM PDT Template name: caltyp22
Copyright 1999-2005 Cisco Systems, Inc
CT_WA_Eligibility (5177)
7/23/2008 92.54% 92.66% 91.14% 6 0:00:09 395 58 386 1:01:38 395 386 6 0 0 0 0 0 3 13.99% 1.52% 0:02:04 0
Call Type
Summary 92.54% 92.66% 91.14% 6 0:00:09 395 58 386 1:01:38 395 386 6 0 0 0 0 0 3 13.99% 1.52% 0:02:04 0
CT_WA_Member_BasicHealth_EN (5048)
7/23/2008 91.96% 91.96% 91.96% 0 0:00:10 199 36 199 0:33:30 199 199 0 0 0 0 0 0 0 18.09% 0.00% 0:00:00 0
Call Type
Summary 91.96% 91.96% 91.96% 0 0:00:10 199 36 199 0:33:30 199 199 0 0 0 0 0 0 0 18.09% 0.00% 0:00:00 0


"Gord Dibben" wrote:

Show us a small sample of the data and explain which rows/columns to be
deleted from that sample.

But yes........Excel can be programmed to do that.

Or maybe just adding a filter to filter out what you don't want?

Do you want to keep just one of each of the duplicates?

That can be done through Advanced Filter for Unique records only.

Hard to say.


Gord Dibben MS Excel MVP


On Thu, 24 Jul 2008 12:02:02 -0700, MJP08
wrote:

Hi, is there a way to set up an Excel spreadsheet so it will automatically
delete certain rows or columns?

For example, I have a report I cut and paste into Excel from a website and
it shows multiple lines of "Call Summary" followed by a ton of data. These
lines are duplicates and I want to be able to have them disapear without me
clicking on each row and deleting it. Is that possible?



  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default Excel 2003 Wizards?

Too much line wrapping to be able to made sense out of this.

I don't know what rows 1-4, 9-11 are and Call Type Summary is on two rows.

A small sample would be half dozen columns and say a dozen rows.

What column would we be searching on to find Call Type Summary?

Would you want rows 1-4 and 9-11 deleted every time you cut and paste?

Try this on a copy of the worksheet.

Sub DeleteRows()
With ActiveSheet
Rows("1:4").EntireRow.Delete
Rows("9:11").EntireRow.Delete
FindString = "Call Type Summary"
Set b = Range("A:A").Find(what:=FindString, lookat:=xlWhole)
While Not (b Is Nothing)
b.EntireRow.Delete
Set b = Range("A:A").Find(what:=FindString, lookat:=xlWhole)
Wend
End With
End Sub

Ammendments are possible.


Gord

On Thu, 24 Jul 2008 12:44:05 -0700, MJP08
wrote:

Oh geez, the report is going to be huge, but here's the top few lines. I
don't see a way to attach the actual spreadsheet into this post so I'm sorry
if it comes across as total junk. I want it to be able to get rid of rows
1-4, 9-11 and all of the ones that says Call Type Summary.

Printable Version

Call Type Daily Report
From: 7/23/2008 00:00:00 To: 7/23/2008 23:59:00
Enterprise Name SL Aband SL Aband SL Aband Aban
Within ASA Tasks Completed Tasks
Ignored Positive Negative Service
Level Offered Assigned Answered Answer Total Handled Aban Return Default Network Flow Calls Other % Queued % Aban Avg Aban Short
Date From Queue Wait Time Treatment Routed Out Error Delay
Time Calls
Run by: TELECOM Report name: WA MS Daily Reports 2
Run Date: 7/24/08 12:38:22 PM PDT Template name: caltyp22
Copyright 1999-2005 Cisco Systems, Inc
CT_WA_Eligibility (5177)
7/23/2008 92.54% 92.66% 91.14% 6 0:00:09 395 58 386 1:01:38 395 386 6 0 0 0 0 0 3 13.99% 1.52% 0:02:04 0
Call Type
Summary 92.54% 92.66% 91.14% 6 0:00:09 395 58 386 1:01:38 395 386 6 0 0 0 0 0 3 13.99% 1.52% 0:02:04 0
CT_WA_Member_BasicHealth_EN (5048)
7/23/2008 91.96% 91.96% 91.96% 0 0:00:10 199 36 199 0:33:30 199 199 0 0 0 0 0 0 0 18.09% 0.00% 0:00:00 0
Call Type
Summary 91.96% 91.96% 91.96% 0 0:00:10 199 36 199 0:33:30 199 199 0 0 0 0 0 0 0 18.09% 0.00% 0:00:00 0


"Gord Dibben" wrote:

Show us a small sample of the data and explain which rows/columns to be
deleted from that sample.

But yes........Excel can be programmed to do that.

Or maybe just adding a filter to filter out what you don't want?

Do you want to keep just one of each of the duplicates?

That can be done through Advanced Filter for Unique records only.

Hard to say.


Gord Dibben MS Excel MVP


On Thu, 24 Jul 2008 12:02:02 -0700, MJP08
wrote:

Hi, is there a way to set up an Excel spreadsheet so it will automatically
delete certain rows or columns?

For example, I have a report I cut and paste into Excel from a website and
it shows multiple lines of "Call Summary" followed by a ton of data. These
lines are duplicates and I want to be able to have them disapear without me
clicking on each row and deleting it. Is that possible?




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
This'll be one for the wizards mr tom Excel Worksheet Functions 7 May 2nd 07 03:39 PM
INQUIRE FOR SOLVER CIRCULAR FORMULATION - money wizards romelsb Excel Worksheet Functions 4 October 19th 06 07:42 PM
wizards,database,field,label,object,objectbar vicky Excel Discussion (Misc queries) 1 July 27th 06 06:40 PM
Excel Math Wizards scain2004 Excel Worksheet Functions 3 October 12th 05 01:07 AM
How do I active wizards in Excel? Peari Excel Discussion (Misc queries) 2 April 26th 05 05:37 AM


All times are GMT +1. The time now is 12:21 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"