WRQ Reflections VBA question

Robertson1995

Board Regular
Joined
Apr 1, 2009
Messages
117
Hello, I am using a program called WRQ Reflections which is a command line interface program. I have VBA code that runs a command that outputs certain data. I need code that will copy data from a specific row. I have it working, but the problem is every time I run the command the Row/Column data changes, but I need the data from the same place every time. I think I just need to set variables, but I'm not sure how. Below is a portion of the sample code. Thanks in advance for any help.


Sub Macro5()
' Generated by the Reflection Macro Recorder on 03-20-2013 13:07:26.38.
' Generated by WRQ Reflection for UNIX and Digital 10.0.
On Error GoTo ErrorHandler

Const NEVER_TIME_OUT = 0

With Session
.SelectText StartRow:=63, StartColumn:=33, EndRow:=63, EndColumn:=58
' Press EditCopy (Copy the selection and put it on the Clipboard).
.Copy rcSelection
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"

Forum statistics

Threads
1,216,074
Messages
6,128,652
Members
449,462
Latest member
Chislobog

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