Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
Jr. Jr. is offline
external usenet poster
 
Posts: 1
Default Printing Single Worksheet Multiple Times with Different Data

What I am trying to do is use a single worksheet pulling data from a
different worksheet to print multiple copies of the original worksheet.
Similar to a mail Merge, but basically to copy a daily number and date from
the second sheet and use it as a variable on the first worksheet.

If this sounds complicated, I apoligize, but considered as a mail merge
would be the closest I could think of!

If I need to, I suppose I could copy the Original Worksheet 30 times, and
put a cell reference into each, just seems like a lot of work---Kinda lazy ya
know!


Thanksl!
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default Printing Single Worksheet Multiple Times with Different Data

It is doable through VBA but from where will you pull the data from sheet2 and
where will it be placed on each copy of sheet1 printed out?


Gord Dibben MS Excel MVP

On Sun, 14 Oct 2007 14:51:01 -0700, Jr. wrote:

What I am trying to do is use a single worksheet pulling data from a
different worksheet to print multiple copies of the original worksheet.
Similar to a mail Merge, but basically to copy a daily number and date from
the second sheet and use it as a variable on the first worksheet.

If this sounds complicated, I apoligize, but considered as a mail merge
would be the closest I could think of!

If I need to, I suppose I could copy the Original Worksheet 30 times, and
put a cell reference into each, just seems like a lot of work---Kinda lazy ya
know!


Thanksl!


  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default Printing Single Worksheet Multiple Times with Different Data

Several cell references....

Specifically (just a few I can adjust as needed),

B10:B40 TO SHEET2 C4
C10:C40 TO SHEET2 E9


If you can get me this far, I think I can figure out the rest....been about
10 years since I did ANY programming....



"Gord Dibben" wrote:

It is doable through VBA but from where will you pull the data from sheet2 and
where will it be placed on each copy of sheet1 printed out?


Gord Dibben MS Excel MVP

On Sun, 14 Oct 2007 14:51:01 -0700, Jr. wrote:

What I am trying to do is use a single worksheet pulling data from a
different worksheet to print multiple copies of the original worksheet.
Similar to a mail Merge, but basically to copy a daily number and date from
the second sheet and use it as a variable on the first worksheet.

If this sounds complicated, I apoligize, but considered as a mail merge
would be the closest I could think of!

If I need to, I suppose I could copy the Original Worksheet 30 times, and
put a cell reference into each, just seems like a lot of work---Kinda lazy ya
know!


Thanksl!



  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default Printing Single Worksheet Multiple Times with Different Data

Sorry, I don't understand.

You said you would pull data from a "different worksheet" and place it on the
single sheet, changing the data with each copy printed.

What is the name of the "different worksheet" and do you want B10 & C10 from it
placed into sheet1 first copy printed then B11 & C11 placed into second copy
printed and B12 & C12 into third etc.?

What is the name of the sheet to print 30 times?

BTW...........B10:B40 is 31 cells, not 30

I will not be able to get back to you today but hang in and watch for one of the
"real" VBA experts to jump in with code.


Gord


On Sun, 14 Oct 2007 16:38:01 -0700, Jr. wrote:

Several cell references....

Specifically (just a few I can adjust as needed),

B10:B40 TO SHEET2 C4
C10:C40 TO SHEET2 E9


If you can get me this far, I think I can figure out the rest....been about
10 years since I did ANY programming....



"Gord Dibben" wrote:

It is doable through VBA but from where will you pull the data from sheet2 and
where will it be placed on each copy of sheet1 printed out?


Gord Dibben MS Excel MVP

On Sun, 14 Oct 2007 14:51:01 -0700, Jr. wrote:

What I am trying to do is use a single worksheet pulling data from a
different worksheet to print multiple copies of the original worksheet.
Similar to a mail Merge, but basically to copy a daily number and date from
the second sheet and use it as a variable on the first worksheet.

If this sounds complicated, I apoligize, but considered as a mail merge
would be the closest I could think of!

If I need to, I suppose I could copy the Original Worksheet 30 times, and
put a cell reference into each, just seems like a lot of work---Kinda lazy ya
know!


Thanksl!




  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default Printing Single Worksheet Multiple Times with Different Data

The name of the worksheet is "Month" (pulled from) and the name of the other
is
"planner" (pulled to) and printed sheet is "planner"


And it will go
Month B10, to Planner C4
Month C10, to Planner E9
Month D10, to Planner C9
Month E10, to Planner H9
Month (f10+g10+h10), to Planner F10
Month I10, to Planner G10

and finally going from the 10 row, to the 40 row.
each changing on each print.

A lot to ask, but If I had the starting point, I could probably make it work.
And once again,

THANKS A LOT! :)


(and yes I know, I can't count!!!!!)





"Gord Dibben" wrote:

Sorry, I don't understand.

You said you would pull data from a "different worksheet" and place it on the
single sheet, changing the data with each copy printed.

What is the name of the "different worksheet" and do you want B10 & C10 from it
placed into sheet1 first copy printed then B11 & C11 placed into second copy
printed and B12 & C12 into third etc.?

What is the name of the sheet to print 30 times?

BTW...........B10:B40 is 31 cells, not 30

I will not be able to get back to you today but hang in and watch for one of the
"real" VBA experts to jump in with code.


Gord


On Sun, 14 Oct 2007 16:38:01 -0700, Jr. wrote:

Several cell references....

Specifically (just a few I can adjust as needed),

B10:B40 TO SHEET2 C4
C10:C40 TO SHEET2 E9


If you can get me this far, I think I can figure out the rest....been about
10 years since I did ANY programming....



"Gord Dibben" wrote:

It is doable through VBA but from where will you pull the data from sheet2 and
where will it be placed on each copy of sheet1 printed out?


Gord Dibben MS Excel MVP

On Sun, 14 Oct 2007 14:51:01 -0700, Jr. wrote:

What I am trying to do is use a single worksheet pulling data from a
different worksheet to print multiple copies of the original worksheet.
Similar to a mail Merge, but basically to copy a daily number and date from
the second sheet and use it as a variable on the first worksheet.

If this sounds complicated, I apoligize, but considered as a mail merge
would be the closest I could think of!

If I need to, I suppose I could copy the Original Worksheet 30 times, and
put a cell reference into each, just seems like a lot of work---Kinda lazy ya
know!


Thanksl!






  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default Printing Single Worksheet Multiple Times with Different Data

I said it was doable but looking at your requirements I'm not so sure<g

The part I left out was that my VBA skills are not up to something this complex.

I'm more of a ToolsOptions person.

Try posting over in the programming group where you could get a better chance of
help.


Gord

On Sun, 14 Oct 2007 17:39:00 -0700, Jr. wrote:

The name of the worksheet is "Month" (pulled from) and the name of the other
is
"planner" (pulled to) and printed sheet is "planner"


And it will go
Month B10, to Planner C4
Month C10, to Planner E9
Month D10, to Planner C9
Month E10, to Planner H9
Month (f10+g10+h10), to Planner F10
Month I10, to Planner G10

and finally going from the 10 row, to the 40 row.
each changing on each print.

A lot to ask, but If I had the starting point, I could probably make it work.
And once again,

THANKS A LOT! :)


(and yes I know, I can't count!!!!!)





"Gord Dibben" wrote:

Sorry, I don't understand.

You said you would pull data from a "different worksheet" and place it on the
single sheet, changing the data with each copy printed.

What is the name of the "different worksheet" and do you want B10 & C10 from it
placed into sheet1 first copy printed then B11 & C11 placed into second copy
printed and B12 & C12 into third etc.?

What is the name of the sheet to print 30 times?

BTW...........B10:B40 is 31 cells, not 30

I will not be able to get back to you today but hang in and watch for one of the
"real" VBA experts to jump in with code.


Gord


On Sun, 14 Oct 2007 16:38:01 -0700, Jr. wrote:

Several cell references....

Specifically (just a few I can adjust as needed),

B10:B40 TO SHEET2 C4
C10:C40 TO SHEET2 E9


If you can get me this far, I think I can figure out the rest....been about
10 years since I did ANY programming....



"Gord Dibben" wrote:

It is doable through VBA but from where will you pull the data from sheet2 and
where will it be placed on each copy of sheet1 printed out?


Gord Dibben MS Excel MVP

On Sun, 14 Oct 2007 14:51:01 -0700, Jr. wrote:

What I am trying to do is use a single worksheet pulling data from a
different worksheet to print multiple copies of the original worksheet.
Similar to a mail Merge, but basically to copy a daily number and date from
the second sheet and use it as a variable on the first worksheet.

If this sounds complicated, I apoligize, but considered as a mail merge
would be the closest I could think of!

If I need to, I suppose I could copy the Original Worksheet 30 times, and
put a cell reference into each, just seems like a lot of work---Kinda lazy ya
know!


Thanksl!





  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default Printing Single Worksheet Multiple Times with Different Data

Thank you anyway....suggestions for good place to read up on vb for excel?

"Gord Dibben" wrote:

I said it was doable but looking at your requirements I'm not so sure<g

The part I left out was that my VBA skills are not up to something this complex.

I'm more of a ToolsOptions person.

Try posting over in the programming group where you could get a better chance of
help.


Gord

On Sun, 14 Oct 2007 17:39:00 -0700, Jr. wrote:

The name of the worksheet is "Month" (pulled from) and the name of the other
is
"planner" (pulled to) and printed sheet is "planner"


And it will go
Month B10, to Planner C4
Month C10, to Planner E9
Month D10, to Planner C9
Month E10, to Planner H9
Month (f10+g10+h10), to Planner F10
Month I10, to Planner G10

and finally going from the 10 row, to the 40 row.
each changing on each print.

A lot to ask, but If I had the starting point, I could probably make it work.
And once again,

THANKS A LOT! :)


(and yes I know, I can't count!!!!!)





"Gord Dibben" wrote:

Sorry, I don't understand.

You said you would pull data from a "different worksheet" and place it on the
single sheet, changing the data with each copy printed.

What is the name of the "different worksheet" and do you want B10 & C10 from it
placed into sheet1 first copy printed then B11 & C11 placed into second copy
printed and B12 & C12 into third etc.?

What is the name of the sheet to print 30 times?

BTW...........B10:B40 is 31 cells, not 30

I will not be able to get back to you today but hang in and watch for one of the
"real" VBA experts to jump in with code.


Gord


On Sun, 14 Oct 2007 16:38:01 -0700, Jr. wrote:

Several cell references....

Specifically (just a few I can adjust as needed),

B10:B40 TO SHEET2 C4
C10:C40 TO SHEET2 E9


If you can get me this far, I think I can figure out the rest....been about
10 years since I did ANY programming....



"Gord Dibben" wrote:

It is doable through VBA but from where will you pull the data from sheet2 and
where will it be placed on each copy of sheet1 printed out?


Gord Dibben MS Excel MVP

On Sun, 14 Oct 2007 14:51:01 -0700, Jr. wrote:

What I am trying to do is use a single worksheet pulling data from a
different worksheet to print multiple copies of the original worksheet.
Similar to a mail Merge, but basically to copy a daily number and date from
the second sheet and use it as a variable on the first worksheet.

If this sounds complicated, I apoligize, but considered as a mail merge
would be the closest I could think of!

If I need to, I suppose I could copy the Original Worksheet 30 times, and
put a cell reference into each, just seems like a lot of work---Kinda lazy ya
know!


Thanksl!






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
Printing single pages from multiple worksheets in a single print job [email protected] Excel Discussion (Misc queries) 2 April 27th 07 06:11 PM
Inserting a single row to separate data multiple times Luthdawg Excel Discussion (Misc queries) 2 April 19th 07 09:02 PM
Using SUBSTITUTE multiple times on single cell of data Cameron Excel Discussion (Misc queries) 1 December 6th 06 11:58 PM
Printing multiple worksheet areas in a single page cradino Excel Worksheet Functions 2 July 16th 06 05:35 PM
Multiple dates, times, or formulas in a single cell PM-S Excel Discussion (Misc queries) 2 January 12th 06 04:19 AM


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