on ‎2016 Aug 05 12:47 PM
Hi All,
Below is a part of my excel macro:
For i = 0 To 6
session.findById("wnd[1]/usr/tabsTAB_STRIP/tabpSIVA/ssubSCREEN_HEADER:SAPLALDB:3010/tblSAPLALDBSINGLE/ctxtRSCSEL_255-SLOW_I[1,i]").Text = Plant(i)
Next
I am using a variable " i " instead of [1,0]").Text , [1,1]").Text etc of the macro. But it is not working.
Can someone let me know what correction is
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
Hello Krishna,
please try
session.findById("wnd[1]/usr/tabsTAB_STRIP/tabpSIVA/ssubSCREEN_HEADER:SAPLALDB:3010/tblSAPLALDBSINGLE/ctxtRSCSEL_255-SLOW_I[1," & CStr(i) & "]").Text = Plant(i)
CStr converts i to a string and with the & you add it as string.
Let us know your results.
Cheers
Stefan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How do i convert below code in python, below code is not working
i=0
j=1
while i<534:
session.findById("wnd[1]/usr/tabsTAB_STRIP/tabpSIVA/ssubSCREEN_HEADER:SAPLALDB:3010/tblSAPLALDBSINGLE/ctxtRSCSEL_255-SLOW_I[j,i)]").text = k[i]
i=i+1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.