Hello,
So, this is something I asked about here.
Tiger gave some advice that gave me an idea:
Sub tgr()
Dim ws As Worksheet: Set ws = ActiveSheet
'''''''''''''''''''''''
' '
' Your other code '
' '
'''''''''''''''''''''''
ws.Select
End Sub
So my thought is that I could use two macros. The first would assign the original active sheet to ws and then paste the string value (sheet name) to a cell on the 'multiple paste' sheet.
Then once the values are inputted on 'multiple paste' sheet the second macro will return to the sheet the first macro was ran from and paste the concatenated values.
My attempts so far have been unnsuccessful. I thought something like this would work, but it did not:
Sub Actv_Sheet_Ref()
Dim ws As Worksheet: Set ws = ActiveSheet
Dim x As String: Set x = ws
Sheets("Multiple paste Values").Select
Range("F4").Value = x
End Sub
So as usual any help would be greatly appreciated.
-BC
Bookmarks