Hi All, I currently have one workbook with over 40 wire transfer form worksheets. Yes, really outdated.
I have Summary tab with list of all worksheets from A18, full name in B18, and wire amount in C18 (all with headers).
I would like to copy any wire amounts inputed under C18 and paste to the specific tab name from column A18 and paste to B5 of the specific worksheet.
Sub copyprint()
Dim SName As Worksheet
Dim TabName As String
TabName = Range("C18").Offset(1, -2)
Sheets("Summary").Range("A18").AutoFilter Field:=3, Criteria1:="<>"
Range("C18").Offset(1, 0).Copy
Sheets(TabName).Range("B5").PasteSpecial Paste:=xlPasteValues
Do Until ActiveCell.EntireRow.Hidden = True
Loop
End Sub
I have Summary tab with list of all worksheets from A18, full name in B18, and wire amount in C18 (all with headers).
I would like to copy any wire amounts inputed under C18 and paste to the specific tab name from column A18 and paste to B5 of the specific worksheet.
Sub copyprint()
Dim SName As Worksheet
Dim TabName As String
TabName = Range("C18").Offset(1, -2)
Sheets("Summary").Range("A18").AutoFilter Field:=3, Criteria1:="<>"
Range("C18").Offset(1, 0).Copy
Sheets(TabName).Range("B5").PasteSpecial Paste:=xlPasteValues
Do Until ActiveCell.EntireRow.Hidden = True
Loop
End Sub