Hello guys I'm here for a new question... For me, never seen like this before (Too misterious): Copy/Paste Data from temporary workbook 1 to a table in main workbook 2.
I'm making a code to copy a specific range (A2:B100) with raw data from a temporary workbook to paste in a table databodyrange (A22:B120) on the main workbook.
Here's the problem: 1st cell (in A2) in the copied range is not matching 1st cell in the table, but curiously, it misses the first 21 upper copied data rows.
This usually is very simple: Basically, On the main workbook, I 1st reset my table (by removing all databodyrange rows), and then go to the other workbook, copy the range and then come back to my main workbook, select the table and paste the data.
Sub CopyPaste()
'A few Variable declaration
'Copying range from the Rawdata workbook
Range(Cells(2, 1), Cells(2, 1).End(xlDown).Offset(0, 1)).Select
Selection.Copy
'Pasting range in the main workbook
LibroPpal.Activate
TablaDetalle.DataBodyRange.Select
ActiveCell.Select
ActiveSheet.Paste
End Sub
I was expecting to paste exactly my selection.