Thanks Antonio,
That is very helpful actually, i think i've learnt quite a bit from these additional comments, i can't thank you enough!
Just one quick question, the 'Sheets' part. My workbook has about 10 different sheets. Now i can't remember the order they were created in but I do have them in a specific order now.
So sheet 1 is now technically sheet 2 (in terms of the order of the worksheet panels at the bottom of the page left to right) and I have called this Submission form
Sheet 2 is now sheet 6 (in terms of the order of the worksheet panels at the bottom of the page left to right) and I have called this 'Data Sheet'
So do i change this first part to to read;
Sub Test()
Dim sh1 As Worksheet, sh2 As Worksheet
Dim myName As String, myRange As Range
Dim myText As String
With ThisWorkbook
Set sh1 = .Sheets(2)
Set sh2 = .Sheets(6)
End With
OR
Sub Test()
Dim sh1 As 'Submission form'!, sh2 As 'Data Sheet'!
Dim myName As String, myRange As Range
Dim myText As String
With ThisWorkbook
Set sh1 = .Sheets(2)
Set sh2 = .Sheets(6)
End With
Also the data on the second page is now in a column 90 so i assume i just change the offset from 1 to 89. Is that correct?
Bookmarks