Currently, I working on how to find a specific text using lookup range activity in the excel application scope. if the text available, it has no problem, but the robot fault when the text cannot be found.
can I used the lookup range activity to read 2cell at once and used read cell activity to read the text?
hmmm do you want to read multiple column in excel right? @Amin
Scenario
1.Use excel application scope activities.
2.Use read range activities.,
3.Create variable with data type of Datatable
4.Assign the variable to read range activities in output properties.
5.Use foreachrow activities to iterate in the data.
6.Use row(“Columname1”).ToString ,row(“Columname2”).ToString,row(“Columname3”).ToString if you want to get your desire data.
Thank you for the share, but can I make a decision based on the text that I find?
if the text can be found, it goes to A, not found goes to B instead error.
As i can see you want to search some data on specified range is that what you want ? Or you just want to retrieve data using multiple parameter ? @Amin
Yeah, but the excel file will be variable. for the excel file that contain the text will be no problem, but how a bout the excel that have no contain the set up word. this part i want to know and study.
also using some parameter or logical expression for the searching text.
Is like these what i want is to read the excel using Excel application scope and read range activities after that i will create variable type of data table and for the datatable we will create queries based on your needs and after we get the data that we need we can write it again to the output excel using excel application scope and the write range activites. @Amin