Is it possible to copy and paste data from an opened excel window, which is defined as remote (//Remote)?

69 Views Asked by At

Is it possible to copy and paste data from an opened excel window, which is defined as remote (//Remote) because it is apparently/probably on another server?

I normally searched for and set the workbook like this:

For beginoutput = 1 To 9999
    On Error Resume Next
    Set wbook = Workbooks("info" & reeks & ".csv)
    If wbook Is Nothing Then
        Set wbook = Nothing
        On Error GoTo 0
        reeks = reeks + 1
    Else
        Exit For
    End If
Next beginoutput

But the data I use now resides on another server I think, because when I open it, my code does not work anymore, while the excel windows are next to each other on my screen.

If i check the source it shows a difference in filepaths (between the active workshoot and the worksheet with the information I need), which changes per user, so i cannot use pathway to copy and paste the required data.

1

There are 1 best solutions below

0
On

I don't see why that WOULDN'T work. Can you turn on the Macro Recorder and click through the process? You should get all the code you need, and a whole lot more too.