How to Remove Time Stamp from Date taken from Excel

Hi,

the full timestamp is good. You can just format it to how you want using date functions like Year(date) or Month(date) or the preferred way you can use .ToString(format), like datetime.ToString(“MM/dd/yyyy”)

So you can get rid of the time by using different format methods.