I want to extract only a particular cell value as example in this imagine i just want to take first reference id and put it in workbook .. hoow do i do that in UiPath
Hi @poojaskyrathore,
Can you share the image.
If you are using excel then you can use Read Cell Value activity to get the value and Write Cell value activity to write the value.
Thanks
Use Extract Table Data to get the table into a DataTable, then take the first row and required column value.
Example after extraction: dtTable.Rows(0)("Reference ID").ToString → this gives the first Reference ID.
Then write it to Excel using Write Cell / Write Cell Workbook with that value.
If you only need one cell and not the full table, use Get Text on that specific cell instead of Extract Table Data.
Happy Automation
Not able to extract data table cause it says elivated priveledges required
I see its banking related application so there could be extra security which is restricting UiPath from scraping it.
Check the DOM of the application through Developer tool on the browser by pressing F12 button.
Could you provide detailed solution plzz
Difficult to help only on the basis of screenshots and back and forth conversations. Have you checked this?
Hi @poojaskyrathore,
Are you able to retrieve any values from this table using Get Text or Extract Table Data?
Thanks
No i am not able to retrive
- Use the For Each UI Element activity to iterate through the cells (or rows) containing the reference IDs.
- Inside the loop, use the appropriate Get Text (or Get Attribute, if applicable) activity to extract the value of the Reference ID from the current UI element.
- Store the extracted value in a String variable (for example, referenceId).
- Use the Write Cell (or Write Cell Workbook) activity to write the value to your Excel workbook.
- To write each extracted value to the next row automatically, either:
-Use an integer counter variable (for example, rowIndex) and increment it after each iteration, or
-Enable the activity’s auto-increment option if you’re using a workflow that supports it.
Hi @poojaskyrathore,
If this is a Citrix, Remote Desktop, or Java application where UiPath can’t access the table, use computer vision (if selectors don’t work). Try to use CV Get Text or CV Extract Table.
Cheers!
