Hi UiPath,
I need help in automating my task,
Is there a way to count the last row of a specified column only?
example below:
Column B contains blank data I want to get its row number
thanks!
Hi UiPath,
I need help in automating my task,
Is there a way to count the last row of a specified column only?
example below:
Column B contains blank data I want to get its row number
thanks!
Use Read Range activity to read the data from Excel file and it will give output as DataTable. Let’s say dtInput.
And then try below expression to find the row count of Status column.
rowCount = dtInput.DefaultView.ToTable(False,"Status").Rows.Count
You can try as @lakshman suggested and also you can try this methods
Method 1
Method 2
Method 3
Regards
Gokul
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.