M
MLewis123
Ok, I will make this question as easy as possibly.
I have some data from a survey that was done.
I have compiled it in the following manner:
A1 = Client Name; B2 = Comment 1; C3 = Comment 2, ect up to 13.
Now, I have created a sample template in a worksheet that I want each
clients data to show up there automatically. I have figured out the macro to
bring new tabs into the workbook based on how many clients, but I cannot
figure out how to bring the data from the survey to each respective
worksheet. This is the macro to automatically add the sheets.
Sub Create_Client_Sheets()
Dim MyCell As Range, MyRange As Range
Set MyRange = Sheets("Client Info").Range("a2")
Set MyRange = Range(MyRange, MyRange.End(xlDown))
For Each MyCell In MyRange
Sheets.Add After:=Sheets(Sheets.Count)
Sheets(Sheets.Count).Name = MyCell.Value
Next MyCell
End Sub
So in essence here is what I want:
When I run the macro each client will have their own worksheet with their
survey data in it, the reason for seperate workbooks is we will review the
data with each client.
Hope this is enough information.
Thanks in advance for the help.
I have some data from a survey that was done.
I have compiled it in the following manner:
A1 = Client Name; B2 = Comment 1; C3 = Comment 2, ect up to 13.
Now, I have created a sample template in a worksheet that I want each
clients data to show up there automatically. I have figured out the macro to
bring new tabs into the workbook based on how many clients, but I cannot
figure out how to bring the data from the survey to each respective
worksheet. This is the macro to automatically add the sheets.
Sub Create_Client_Sheets()
Dim MyCell As Range, MyRange As Range
Set MyRange = Sheets("Client Info").Range("a2")
Set MyRange = Range(MyRange, MyRange.End(xlDown))
For Each MyCell In MyRange
Sheets.Add After:=Sheets(Sheets.Count)
Sheets(Sheets.Count).Name = MyCell.Value
Next MyCell
End Sub
So in essence here is what I want:
When I run the macro each client will have their own worksheet with their
survey data in it, the reason for seperate workbooks is we will review the
data with each client.
Hope this is enough information.
Thanks in advance for the help.