Cut from one workbook to another workbook

Closed
Opera - Updated on Jan 24, 2018 at 04:46 PM
 Blocked Profile - Jan 24, 2018 at 01:35 PM
Hello,

from data specific cell value match then entire row cut and paste another workbook sheet in excel vba formual



Related:

1 response

Blocked Profile
Jan 24, 2018 at 01:35 PM
Well, here is a beginning:

 ActiveSheet.Range("A" & whatrow).EntireRow.Select
ActiveSheet.Paste Destination:=Worksheets(whatsheet).Range("A" & whatrow)


Please understand, we will help when you are stuck, but will not author a turn key solution!

I hope this helps.

0