Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to select a variable range of rows in a worksheet ?
Message
From
25/02/2010 04:48:10
Lutz Scheffler
Lutz Scheffler Software Ingenieurbüro
Dresden, Germany
 
 
To
25/02/2010 03:51:50
Yim Ming Sun Derek
Spacious Design Consultant
Hong Kong, Hong Kong
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01450925
Message ID:
01450927
Views:
37
lnLastRow is not known to excel, so you have to translate.

Try something like
oExcel.activesheet.Range("D2:D"+TRIM(PADR(lnLastRow,11))).value='=B2+C2'
HTH

Agnes

>Hi,
>I want to set a formula to Column D2 to lnLastRow .
>lnLastRow is no. of rows in the worksheet, how to select the variable range of rows using the .Range method ?
>
>Please advise,
>Derek
>
>
>oExcel = CREATEOBJECT([Excel.Application])
>oWorkbook = oExcel.Workbooks.open("C:\WTS\MID\WTS77XLS.XLS")
>oExcel.Visible = .t.
>oExcel.activesheet.Range("A1").value = "Col. 1"
>oExcel.activesheet.Range("B1").value = "Col. 2"
>oExcel.activesheet.Range("C1").value = "Col. 3"
>oExcel.activesheet.Range("D1").value = "Col. 4"
>oExcel.activesheet.Range("E1").value = "Col. 5"
>
>lnLastRow = oExcel.activesheet.UsedRange.Rows.Count
>
>oExcel.activesheet.Range("D2:lnLastRow").value='=B2+C2'
>
>
Words are given to man to enable him to conceal his true feelings.
Charles Maurice de Talleyrand-Périgord

Weeks of programming can save you hours of planning.

Off

There is no place like [::1]
Previous
Reply
Map
View

Click here to load this message in the networking platform