How to get empty rows from the excel

How to get empty rows from the excel in Ui Path Studio can someone help me on this. Not able to understand

Hi @Taruna_Gupta ,

Could you let us know what is the End Output required ? Is it only fetching the Empty rows ? Or do you want to perform additional operation after ?

This understanding would help to get us the details in one go, so we can provide better suggestions.

Hi @Taruna_Gupta

Check the below thread for better understanding

Hope it helps!!

Hi @Taruna_Gupta

Refer the below code to the empty row from the Data Table
DataTableName=DataTableName.Rows.Cast(Of DataRow)().Where(Function(row) row.ItemArray.All(Function(a) a.Equals(“”))).CopyToDataTable()

Hoep this helps

Hi @Taruna_Gupta

you can try this

Hope this helps

What do you mean “get empty rows?” Are you trying to find the first row that has no data? Remove all the completely empty rows? You have to tell us in detail what you’re trying to do.