Line Item identification

Hello Guyz

I am working on a project, but i am facing one hurdle can any one have a idea is there any activity or any logic where we can count the total number lines i mean how many number is written in this column

like this is table and i want to calculate how many number is written inside this column

thanks

Hello @Khawaja_Junaid

Please follow the instructions below:

  1. Excel Application Scope. Specify the excel path
    a. Inside the scope, add a Read Range activity. Set the sheet name and the output. Save the datatable output in dtInput.
  2. To count the rows, use dtInput.Rows.Count.

Hope this helps you.
Thanks and regards :slight_smile:

1 Like

Hi @Khawaja_Junaid - You mean to say each cell how many numbers inside? or the total count of that particular column?

If it is count the you can get by column or rows .count, if it is each number inside the cell then you need to use a For Each loop then for each split the string and store it in array get the array count. That will give you how many numbers inside each cell.

Thanks,
AK

@Jan_Brian_Despi Thank you for your suggestion but is a web platform where i want to get the value with currents numbers ,i mean it is not a excel this results is showing in web application like this

image

Hope this helps you and you can support me,
so my hurdles is i want to get that how many columns is written in it

thanks

1 Like

Hi @Khawaja_Junaid
You can do data scraping for that one to get those. Then let us say that the output of the data scaping is named OutputDataTable, so to count it, just do OutputDataTable.Rows.Count
:slight_smile:

5 Likes

Data Scrap the Table and the output will be stored in a Datatable and get the count by DT.rows.count or any other manipulations would like do.

Thanks,
AK

@Jan_Brian_Despi THANK YOU

1 Like

No problem, @Khawaja_Junaid
Feel free to approach me anytime.

Thanks and best of luck,
Despi :slight_smile:

3 Likes

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