Populate data from a column in one worksheet to a cell in multiple other sheets
Solved/Closed
Related:
- How to populate data in excel from another sheet
- How to copy data from one excel sheet to another - Guide
- Excel move data from one sheet to another - Guide
- Excel hyperlink to another sheet - Guide
- How to copy data to multiple worksheets in Excel - Guide
- Export data from excel - Guide
2 responses
TrowaD
Posts
2921
Registration date
Sunday 12 September 2010
Status
Contributor
Last seen
27 December 2022
555
10 Dec 2019 à 12:08
10 Dec 2019 à 12:08
Hi Vee,
Since I don't think the provided links will guide you to your answer, you can try the following code:
Best regards,
Trowa
Since I don't think the provided links will guide you to your answer, you can try the following code:
Sub RunMe()
Dim shName As String
Sheets("Raw Data").Select
For Each cell In Range("B1:B" & Range("B" & Rows.Count).End(xlUp).Row)
If cell.Value = vbNullString Then GoTo NextCell
shName = cell.Value
Sheets("Template").Copy before:=Sheets("Template")
ActiveSheet.Name = shName
Range("B5").Value = shName
NextCell:
Next cell
End Sub
Best regards,
Trowa
David Webb
Posts
3177
Registration date
Monday 25 November 2019
Status
Administrator
Last seen
15 May 2023
6,928
8 Dec 2019 à 14:50
8 Dec 2019 à 14:50
Hello there,
Have a look at this forum answer on auto population data from multiple sheets that could help you out.
Or check out this article on how to populate multiple sheets based on data entered.
Hope this helps,
David
Have a look at this forum answer on auto population data from multiple sheets that could help you out.
Or check out this article on how to populate multiple sheets based on data entered.
Hope this helps,
David
10 Dec 2019 à 13:25
11 Dec 2019 à 01:53