Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default filtering multiple spreadsheets

I have many spreadsheets each for one company of a group.

Currently I filter each spreadsheet at a time when I want to see the
relevant area.

Is there a way to filter each company's spreadsheet with only one action on
the parent company's spreadsheet?

Thank you


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default filtering multiple spreadsheets

You can use code to open each workbook and do the filter action.
Or do you have all workbooks open ?

What do you want to do (only view the data)

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Yiannos" wrote in message ...
I have many spreadsheets each for one company of a group.

Currently I filter each spreadsheet at a time when I want to see the
relevant area.

Is there a way to filter each company's spreadsheet with only one action on
the parent company's spreadsheet?

Thank you


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default filtering multiple spreadsheets

The data is in one workbook in several similar sheets, each company in one
sheet.

In each sheet I have used autofilter, to filter to the areas I want to view.

The problem is that I need to filter each company (i.e. sheet) separately.
Is there a way to filter all the sheets in the workbook with just one action?

Thank you

"Ron de Bruin" wrote:

You can use code to open each workbook and do the filter action.
Or do you have all workbooks open ?

What do you want to do (only view the data)

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Yiannos" wrote in message ...
I have many spreadsheets each for one company of a group.

Currently I filter each spreadsheet at a time when I want to see the
relevant area.

Is there a way to filter each company's spreadsheet with only one action on
the parent company's spreadsheet?

Thank you



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default filtering multiple spreadsheets

This is a basic example that filter on the first column of the CurrentRegion of A1

Sub Test()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
ws.AutoFilterMode = False
ws.Range("A1").CurrentRegion.AutoFilter Field:=1, Criteria1:="yourfilterword"
Next ws
End Sub


Record a macro when you filter one sheet and look at the code



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Yiannos" wrote in message ...
The data is in one workbook in several similar sheets, each company in one
sheet.

In each sheet I have used autofilter, to filter to the areas I want to view.

The problem is that I need to filter each company (i.e. sheet) separately.
Is there a way to filter all the sheets in the workbook with just one action?

Thank you

"Ron de Bruin" wrote:

You can use code to open each workbook and do the filter action.
Or do you have all workbooks open ?

What do you want to do (only view the data)

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Yiannos" wrote in message ...
I have many spreadsheets each for one company of a group.

Currently I filter each spreadsheet at a time when I want to see the
relevant area.

Is there a way to filter each company's spreadsheet with only one action on
the parent company's spreadsheet?

Thank you



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
multiple worksheet filtering HHoward Excel Discussion (Misc queries) 1 February 9th 07 02:39 PM
Filtering spreadsheets Andre Excel Discussion (Misc queries) 2 June 21st 06 08:42 PM
filtering between spreadsheets snugs25 Excel Worksheet Functions 2 December 11th 05 12:25 PM
Filtering for multiple sheets JVDM Excel Discussion (Misc queries) 1 October 11th 05 10:50 PM
How to update multiple links in multiple spreadsheets followin mo. Andy Excel Worksheet Functions 0 January 20th 05 04:51 PM


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