Hello Everyone,
The issue I am working on today is being able to use the .find function to find a column header and copy all the data to be pasted into another worksheet.
so when I try and paste this information it does not fit the row count of the "DI" worksheet.
Any thoughts?
Cheers!
The issue I am working on today is being able to use the .find function to find a column header and copy all the data to be pasted into another worksheet.
Code:
'Find Customer Sub
Cells.find(what:="customerSub", after:=Range("A1"), lookin:=xlformulas, lookat:= xlpart _
, Searchorder:= xlbyrows.entirecolumn.copy
Sheets("DI").select
Range("A4").select
Activesheet.paste
Application.cutcopymode = false
so when I try and paste this information it does not fit the row count of the "DI" worksheet.
Any thoughts?
Cheers!