Sub Tapcon_134()
'
' Add_Fastener Macro
'
Sheets("Hardware Load List").Range("C" & Rows.Count).End(xlUp).Offset(1).Resize(, 6).Value = Range("B9,D9,E9:F9,G9:H9").Value
End Sub
The above macro is only taking the value is B9 and copying it across all cells in "Hardware Load list". I want to copy the entire selected Range and paste whatever is in those cells to the "Hardware Load List" sheet. The Range that is to be copied in sheet called "Fasteners". I want the range to be pasted to the next available row in the "Hardware Load List" which I believe this macro is already setup to do.
Need help copying all data in selected Range.
'
' Add_Fastener Macro
'
Sheets("Hardware Load List").Range("C" & Rows.Count).End(xlUp).Offset(1).Resize(, 6).Value = Range("B9,D9,E9:F9,G9:H9").Value
End Sub
The above macro is only taking the value is B9 and copying it across all cells in "Hardware Load list". I want to copy the entire selected Range and paste whatever is in those cells to the "Hardware Load List" sheet. The Range that is to be copied in sheet called "Fasteners". I want the range to be pasted to the next available row in the "Hardware Load List" which I believe this macro is already setup to do.
Need help copying all data in selected Range.