Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a single worksheet with various charts with the data for those charts
based on a selection made in a cell (A1). In A1, data validation was used to control the input of that cell, the list is limited to 20 items. This works great if one wants pick and choose selections from the drop down, and then print out a specific rpt based on a specific selection in A1. Anyone have a recommendation on how to go about automatically looping through the list and print out a rpt for each? So selecting item1 would print the item1 report, then item 2 would be selected and printed, and so on. Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do you load the dropdown? From a range or directly type in the values
as a comma separated list. If a range, is it on the same sheet? -- Regards, Tom Ogilvy "AK" wrote in message ... I have a single worksheet with various charts with the data for those charts based on a selection made in a cell (A1). In A1, data validation was used to control the input of that cell, the list is limited to 20 items. This works great if one wants pick and choose selections from the drop down, and then print out a specific rpt based on a specific selection in A1. Anyone have a recommendation on how to go about automatically looping through the list and print out a rpt for each? So selecting item1 would print the item1 report, then item 2 would be selected and printed, and so on. Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dropdown via a named range on a different worksheet
"Tom Ogilvy" wrote: How do you load the dropdown? From a range or directly type in the values as a comma separated list. If a range, is it on the same sheet? -- Regards, Tom Ogilvy "AK" wrote in message ... I have a single worksheet with various charts with the data for those charts based on a selection made in a cell (A1). In A1, data validation was used to control the input of that cell, the list is limited to 20 items. This works great if one wants pick and choose selections from the drop down, and then print out a specific rpt based on a specific selection in A1. Anyone have a recommendation on how to go about automatically looping through the list and print out a rpt for each? So selecting item1 would print the item1 report, then item 2 would be selected and printed, and so on. Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
for each cell in Range("NamedRangeName")
Range("A1").Value = cell.Value ' print sheet Next -- Regards, Tom Ogilvy "AK" wrote in message ... Dropdown via a named range on a different worksheet "Tom Ogilvy" wrote: How do you load the dropdown? From a range or directly type in the values as a comma separated list. If a range, is it on the same sheet? -- Regards, Tom Ogilvy "AK" wrote in message ... I have a single worksheet with various charts with the data for those charts based on a selection made in a cell (A1). In A1, data validation was used to control the input of that cell, the list is limited to 20 items. This works great if one wants pick and choose selections from the drop down, and then print out a specific rpt based on a specific selection in A1. Anyone have a recommendation on how to go about automatically looping through the list and print out a rpt for each? So selecting item1 would print the item1 report, then item 2 would be selected and printed, and so on. Thanks |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks tom
works great... "Tom Ogilvy" wrote: for each cell in Range("NamedRangeName") Range("A1").Value = cell.Value ' print sheet Next -- Regards, Tom Ogilvy "AK" wrote in message ... Dropdown via a named range on a different worksheet "Tom Ogilvy" wrote: How do you load the dropdown? From a range or directly type in the values as a comma separated list. If a range, is it on the same sheet? -- Regards, Tom Ogilvy "AK" wrote in message ... I have a single worksheet with various charts with the data for those charts based on a selection made in a cell (A1). In A1, data validation was used to control the input of that cell, the list is limited to 20 items. This works great if one wants pick and choose selections from the drop down, and then print out a specific rpt based on a specific selection in A1. Anyone have a recommendation on how to go about automatically looping through the list and print out a rpt for each? So selecting item1 would print the item1 report, then item 2 would be selected and printed, and so on. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
LOOPING multiple ranges | Excel Discussion (Misc queries) | |||
Break one rpt into multiple rpts | Excel Discussion (Misc queries) | |||
strange printing/looping problem | Excel Programming | |||
multiple looping criteria | Excel Programming | |||
Looping through multiple controls | Excel Programming |