Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Macro to email all drop list selections

Hi,
I have spreadsheet comprising of 20 pages worth of data for over a hundred
stores. I've created a summary page with a drop box enabling each store to
select their store name and then the page will auto populate their figures
for the 20 reports (used vlookup formulas against the 20 pages to bring back
the stores data). The page also includes in a graph detailing the stores
previous 8 weeks results.
Also included on this page is an email option.

What I would like is to have a macro that will select each store from the
drop list and auto email this page opposed to manually selecting over a
hundred stores and emailing individually. I've tried recording, however it
doesn't pick up the function when I'm selecting a new store.

Any help would be much appreciated !!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 225
Default Macro to email all drop list selections

Do something like assuming your dropdown is in A1 of Sheet1 and you have a
list of stores on the activesheet in A1:A100

Sub t()
For i = 1 To 100
'Populate the drop-down cell with each Store name
Worksheets("Sheet1").Cells(1, 1) = ActiveSheet.Cells(i, 1)
'Force recalculation
Application.Calculate
'Call you email macro to send the current store
Call emailmacro
End Sub

"Mara" wrote:

Hi,
I have spreadsheet comprising of 20 pages worth of data for over a hundred
stores. I've created a summary page with a drop box enabling each store to
select their store name and then the page will auto populate their figures
for the 20 reports (used vlookup formulas against the 20 pages to bring back
the stores data). The page also includes in a graph detailing the stores
previous 8 weeks results.
Also included on this page is an email option.

What I would like is to have a macro that will select each store from the
drop list and auto email this page opposed to manually selecting over a
hundred stores and emailing individually. I've tried recording, however it
doesn't pick up the function when I'm selecting a new store.

Any help would be much appreciated !!

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
List all selections from drop down Dax Arroway Charts and Charting in Excel 1 October 21st 06 12:37 PM
multiple selections from drop down list Andyroo Excel Worksheet Functions 4 August 16th 06 06:39 PM
One Selection From Drop Down List Limits Remaining Selections JB2010 Excel Discussion (Misc queries) 2 March 7th 06 12:45 PM
Multiple selections from a drop down list in Excel... JMW Excel Worksheet Functions 3 November 9th 05 05:05 PM
How do I use drop down list selections/values in a vlook up formu. CL Excel Discussion (Misc queries) 2 January 19th 05 10:39 PM


All times are GMT +1. The time now is 02:12 PM.

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

About Us

"It's about Microsoft Excel"