Hi @vaish
You
can do in this way too
-
Assign the current date to the variable let’s say date = DateTime.Now.ToString(“yyyy/MM/dd”)
-
Use excel application scope , inside use read range to read the excel file and store in datatable DT
-
get the no of rows of datatable as DT.Rows.Count and store in the variable let’s say
count
-
Create another integer variable a and assign it’s value as 2 (If u want the not to start write from A2, u can assign a as 2)
-
Use while loop with condition as a<= count
inside it use write cell activitiy with value to be written as date variable and cell no should be specified as “A”+a.ToString
- After this assign a = a+1 inside the while loop so that it can write in next cell
Hope it helps you
Mark it as solution if u works
Nived N 
Happy Automation 
