#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Macros

I am work for a construction company with several different project managers.
I am working on a spreadsheet with all incoming clients. I would like to
create a macro that automatically sorts the main spreadsheet into sub sheets
for each person based on their initials. The problem being that each job may
have more than one project manager. Does anyone know how to help?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,722
Default Macros

Check out Ron's page:

http://www.rondebruin.nl/copy5.htm
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Karen" wrote:

I am work for a construction company with several different project managers.
I am working on a spreadsheet with all incoming clients. I would like to
create a macro that automatically sorts the main spreadsheet into sub sheets
for each person based on their initials. The problem being that each job may
have more than one project manager. Does anyone know how to help?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Macros

If desired, send your file to my address below. I will only look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen" wrote in message
...
I am work for a construction company with several different project
managers.
I am working on a spreadsheet with all incoming clients. I would like to
create a macro that automatically sorts the main spreadsheet into sub
sheets
for each person based on their initials. The problem being that each job
may
have more than one project manager. Does anyone know how to help?


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Macros

Solution to autofilter from a drop down

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count 1 Or Target.Address < Range("c1").Address Then Exit Sub
Application.ScreenUpdating = False
ActiveSheet.Columns.AutoFit
If Target = "ALL" Then
Selection.AutoFilter Field:=3
Else
Range("C2").AutoFilter Field:=3, Criteria1:="=*" & Target & "*"
End If
Range("e4").Select
Application.ScreenUpdating = True
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Don Guillett" wrote in message
...
If desired, send your file to my address below. I will only look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen" wrote in message
...
I am work for a construction company with several different project
managers.
I am working on a spreadsheet with all incoming clients. I would like to
create a macro that automatically sorts the main spreadsheet into sub
sheets
for each person based on their initials. The problem being that each job
may
have more than one project manager. Does anyone know how to help?



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
Macros: can you copy macros from one doc to another? Roady Excel Discussion (Misc queries) 1 June 12th 08 05:47 PM
Excel 2007 macros - how to merge 5 macros together into one Sue Excel Discussion (Misc queries) 1 April 16th 08 08:36 PM
Macros warning always shows up, even if all macros removed Joe M Excel Discussion (Misc queries) 1 December 20th 07 04:45 AM
Macros - copying macros from one computer to another TT Excel Discussion (Misc queries) 18 December 14th 06 03:24 AM
Training: More on how to use macros in Excel: Recording Macros ToriT Excel Worksheet Functions 2 February 10th 06 07:05 PM


All times are GMT +1. The time now is 04:59 PM.

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"