I have an excel which has 8 sheets and I want to extract data from 2 specifik sheets. But I do not want to call excel application scope more then one time.
I tried Wrokbook but I didt get the write data and then I tried creating 2 argument for Read Range… where im giving “” for both sheet and cell as I want to read more then one sheet.
I have Excel scope in one file and where I want to use the data of this excel file in different file.
ReadFromExcel.xaml = calling excel application scope
GetSheet1DataAndReadUser = calling the sheet 1 and should loop after receiving the data
GetSheet2DataAndLogin = calling the sheet 2 and do some steps
I looked your code its perfect I got my to work to show through argument the sheet name.
Now just one question… when Im on sheet one and need to read data from that sheet. how can i specify read rang sheet (“interest”) in rang area?
In my for each row loop i’m extracting User ID by Get Row Item…
I have… if statement … where im giving get row item value and saying do then and else… and
In Then I have many activity and one element Exist activity… after that i have an if statement again where Im checking if this exist value is true… Do Then or Do Else.
For Each row loop
if
id found
then
activites
else
activites
element exist activites
if
element exist
then
activites
Else
activites
end for each row loop
I want that when my element exist activity is true then my Loop should run further and when its False then go to Else activity…
Its doing right …
But when it comes to False activity it runs further in loop and not ending the loop and taking next id where i want that i go to next stage of workflow.