Check if specific cell is empty

Hi @Jad_Bennis,

Use Read Range activity to read the data from excel file and will give you output as DataTable and say ‘DT’. And then check below condition.

   IF DT.Rows.Count > 0
   Then it has data 
   Else no data
   you add another specific cell data to columnA

Refer this link- Check for empty excel file - #3 by Veselin_Ganchev

Hope this will helps,if it works mark as solution.

Regards,
Neelima.