I want to extract matching values from the datatable for that i have used ‘extract table data’ activity for fetching the values. But that fetched datatable not have column and rows.
After fetching values i want to extract values present in datatable like (Argument 1, Argument 2, Argument 3)… only want to extract those values which contains ‘Argument’. For this i am using filter data table activity. But not getting output of filter table.
how we can use filter table activity without refrence of column and rows? Please help me to reach out this.
Yes it does. A datatable cannot exist without columns. You’re getting data from an app or web page using Extract Table Data? Are you saying the Extract Data Table isn’t getting the data from the app or web page? If it’s not, then you don’t have it configured correctly. If you’re not trying to get table data from an app screen or web page, then Extract Table Data is not what you use.
Show us what you’re doing. Show us the app or web page. Show us your code. We can’t help based on “it doesn’t work.” We need details.
please elaborate more on this. Maybe you can share with us the details from the extract result by using the debugging panels e.g. immediate panel (type in the variable name)
@postwickYou’re getting data from an app or web page using Extract Table Data?-—> Yes i am getting data by using extract data table activity. Please see below image.
I want only Argument values. so for that i am using filter table activity.
@postwick i am able to fetched data from web application by using extract table activity but how to fetch values which contains ‘Argument’ from fetched datatable.(for that currently i am using filter data table activity but it’s not giving expected output)
Otherwise can we directly fetched ‘Argument’ values by using extract table activity or by any other activity?
It looks like what you should use is Get Text, then Split on VbCrLf to break it into rows in an array, then loop through the array to get the values you want.