Reading cell ranges in Background before copy paste operation

sahaider

New Member
Joined
May 30, 2014
Messages
35
Hello All,

I am trying to use the getopen application to open a csv file, copy its selected range in the background and paste it in another worksheet.

This CSV will have dynamic range which starts at A4 but ends in B(X), where X is dynamic for different csv.

This is the code:

FileToOpen = Application.GetOpenFilename(Title:="Browse for the LTE Best Server File", FileFilter:="CSV Files(*.csv),*csv*")
If FileToOpen <> False Then
Set Openbook = Application.Workbooks.Open(FileToOpen)

Openbook.Sheets(1).Range("A4", Range("B" & Rows.Count).End(xlUp)).Copy


ThisWorkbook.Worksheets("LTE_Best Server by RSRP").Range("A2").PasteSpecial xlPasteValues
Openbook.Close False



I am getting error in line: Openbook.Sheets(1).Range("A4", Range("B" & Rows.Count).End(xlUp)).Copy

Any help appreciated.

Thanks
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Try it like
VBA Code:
With Openbook.Sheets(1)
   .Range("A4", .Range("B" & Rows.Count).End(xlUp)).Copy
End With
 
Upvote 0
Solution

Forum statistics

Threads
1,213,494
Messages
6,113,986
Members
448,538
Latest member
alex78

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top