Good Morning All,
I have a document that I share with a collectors community, I have created a database of collectibles but will update the workbook from time to time with new items, meaning I will have to release a new version of the workbook for people to download, so I wanted to work on a data transfer method.
I am not an expert in VBA so would appreciate any advise here, I've recoded a simple copy and paste macro to the new workbook, my question is, I would have to replicate this code over 100 times under 1 macro using different sheet names and ranges, before I commit to doing that does it seem like the right approach?
Thanks in advance,
I have a document that I share with a collectors community, I have created a database of collectibles but will update the workbook from time to time with new items, meaning I will have to release a new version of the workbook for people to download, so I wanted to work on a data transfer method.
I am not an expert in VBA so would appreciate any advise here, I've recoded a simple copy and paste macro to the new workbook, my question is, I would have to replicate this code over 100 times under 1 macro using different sheet names and ranges, before I commit to doing that does it seem like the right approach?
Thanks in advance,
VBA Code:
Sub Data_Transfer()
'
' Data_Transfer Macro
'
'
Windows("Pokemon Collection Tracker Ver 1.2.xlsm").Activate
Sheets("Base Set").Select
Range("H2:K103").Select
Selection.Copy
Windows("Pokemon Collection Tracker Ver 1.3.xlsm").Activate
Sheets("Base Set").Select
Range("H2").Select
ActiveSheet.Paste
Windows("Pokemon Collection Tracker Ver 1.3.xlsm").Activate
Application.CutCopyMode = False
End Sub