Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Automate excel in a way similar to mail merge

How can I populate differente worksheets from a list of data? (ie, in a
similar way to mail merge but only with Excel)

Thanks in advance
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Automate excel in a way similar to mail merge

No built in capability. You can write a macro to loop through your data,
update cells on another sheet, possibly print that sheet, repeat:

Dim rng as Range
With Worksheets("Sheet2")
Set rng = .Range(.Cells(1,1),.Cells(1,1).End(xldown))
End with
for each cell in rng
worksheets("Form1").Range("B9").Value = cell.Value
worksheets("Form1").Printout
Next


This further assumes that the form1 page is configured to print out as you
want it.


Regards,
Tom Ogilvy




"Alberto Pinto" wrote:

How can I populate differente worksheets from a list of data? (ie, in a
similar way to mail merge but only with Excel)

Thanks in advance

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
merge two excel files like in word mail merge azmerritt Excel Discussion (Misc queries) 1 December 11th 16 09:23 PM
How do I do an e-mail mail merge using an Excel spreadsheet? Gretchen Excel Worksheet Functions 0 July 19th 09 05:18 PM
Code launches Mail Merge but disables the Mail Merge austris Excel Discussion (Misc queries) 0 October 14th 06 01:11 AM
How do I merge similar data across different excel worksheets? MK Excel Discussion (Misc queries) 1 August 11th 05 12:17 AM
Macro Similar to Mail Merge help/question JohnG[_2_] Excel Programming 0 November 30th 04 05:45 AM


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