Table extraction problem target is too general

Hi

I’m not able to select a column because when I click add column the “target” covers all of the table and not seperate elements. Please see attached:

Do you have any ideas how to fix it?

Have you tried clicking F4 while hovering over elements in order to change the UI framework? That might solve your issue

Hello

It does not work.

Hey @marcin.chowaniec

If you are not able to extract table just try to extract the values as string using "Get Text "Activity
The output will be in String format
Inorder to convert this to Data Table you can use “Genarate Data Table” Activity Like below

Regards,

4 Likes

Thanks I will do that. Do you have any idea how can I limit my rows as I would be able to do in extract data? I need only 15 first rows and I’m not sure how do do this with this activity you provided me with

@marcin.chowaniec ,
You can continue with the same method after the Generate Data Table Activity you will be getting the output in Data Table (GenerateDataTable)Type
So You can do

GenerateDataTable.AsEnumerable.Take(15).CopyToDataTable

It will take only first 15 rows from the DataTable

Regards,

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.