Use this macro and be sure to save your file as an .xls or .xlsm Sub MakeSheetsFromVehicleList() Sheets("Vehicle List").Select Dim c As Range Dim lr As Long lr = Cells(Rows.Count, 1).End(xlUp).Row For Each c In Range("a2:a" & lr) With Sheets("form") Range("d56").Value = c .Copy after:=ActiveSheet End With Next c End Sub
Don Guillett SalesAid Software dguille...@gmail.com From: John A. Smith Sent: Tuesday, November 08, 2011 1:16 PM To: excel-macros@googlegroups.com Subject: $$Excel-Macros$$ Macro To Add a Cell From A List And Create A New Tab I have a spreadsheet with a tab called Form. There is a second tab called Vehicle List. I need a macro to take the first vehicle on the list and put that number in cell D56 of the form tab and then copy the tab and repeat this process until all the vehicle numbers are on the form in their own tab. The tab names are not important as the spreadsheet will be saved in the pdf format and the tabs will become pages. Thank you for your help. John -- FORUM RULES (925+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ------------------------------------------------------------------------------------------------------ To post to this group, send email to excel-macros@googlegroups.com -- FORUM RULES (925+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get quick attention or may not be answered. 2) Don't post a question in the thread of another member. 3) Don't post questions regarding breaking or bypassing any security measure. 4) Acknowledge the responses you receive, good or bad. 5) Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. NOTE : Don't ever post personal or confidential data in a workbook. Forum owners and members are not responsible for any loss. ------------------------------------------------------------------------------------------------------ To post to this group, send email to excel-macros@googlegroups.com