If you want to do this on a special cell, you should use
worksheet.Cell(row,column).Style.NumberFormat.Format = "mm/dd/yyyy";
and
If you want to do this on multiple cells, you should use
worksheet.Range(row,column,row,column).Style.NumberFormat.Format = "mm/dd/yyyy";
source share