I'm trying to copy some data (values only) from one sheet to another. The source is data imported from an ascii file.
I'm not really sure why the code isn't working! Can anyone assist?
In the code ThisBk is the destination book and TmpBk and TmpSht are the source workbook and worksheets.
Thanks
I'm not really sure why the code isn't working! Can anyone assist?
Code:
With ThisBk.Sheets("RawInput")
.UsedRange.Offset(1, 0).ClearContents
.Range("A2").Resize(TmpRows, TmpCols).Value = TmpBk.TmpSht.UsedRange.Value
End With
Thanks