For Each Row Excel Same contain column

Hello,

I have 1file excel to read and type in to app. Because every row excel I have to find Col(No) and choose Col(TimetoWork) and type into Col(OverTime). IF same 1person but i waste time for action Find Col(No).

As you see we have same content at Col(No) how i just find 1time Col(No) ? and repeat action Find when have new Col(No)

Hey @anh.nguyen,

Use datatable.DefaultView.ToTable(True,“Col(No)”,“Col(TimetoWork)”).
This will return you the unique value based on the two column you won’t get the repeated rows.

Thanks,
Sanjit

1 Like

Hi,

We can achieve it to keep previous number and compare it with current number as the following

Sample20220509-1.zip (9.6 KB)

Regards,

1 Like

Thank you so much :slight_smile: it run ok

1 Like

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