Unable to extract table

Hello,

i want to extarct tble data and check if count is >1 for table rows.
i am extarcting from below corp directory using tabel extarction activity

i am giving name as names to header after fetching but it taking hear also as data in table.
check below ss

data in corp may contain one row multiple rows
expected output here is it should contain first row as Mathkar,kunal

where i am going wrong
help me on same

@Mathkar_kunal

While indicating the column to extract, instead of indicating column header, try indicating the data.

when i am doing that it is getting data from next column as well like below.

even i am selecting take data from only on e column

@Mathkar_kunal

Is it getting extracted into a single column or a separate one? Also check the table source html, that could give you some hint on this.

asking like this so selecting first option .

@Mathkar_kunal

ok so the table is structured like the data will be splitted into rows. Try with two rows in the search filter.

If data is being extracted like
Name
Email
Name
Email

Then I will advise to avoid much time on modifying the extraction logic and work on manipulating the datatable after extraction.

when i am trying for more than one data dn doing same steps

showing like above image.
so confused.
and after doing save when i am trying to run and get rows count using extarctdatatable.rows.count then it is showing value 0
here comming alst name first name as well after indicating data instaed header.

@Mathkar_kunal

You may try For each ui element activity and see if the names and emails are identifiable and extractable separatly.

1 Like

If you just need to check if table contains more than 1 row you could just check app state if the selector for second row exist (or has value). It makes sense if you don’t need to operate with dt later, of course :slight_smile:

ok is app state is alternative for element exist?

@Mathkar_kunal

Yes, you can use Check App State activity which is alternative to Element Exists activity