Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to select a variable range of rows in a worksheet ?
Message
De
25/02/2010 03:51:50
Yim Ming Sun Derek
Spacious Design Consultant
Hong Kong, Hong Kong
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
How to select a variable range of rows in a worksheet ?
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Application:
Desktop
Divers
Thread ID:
01450925
Message ID:
01450925
Vues:
104
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'
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform