Hello All,
Here is my situation, i'm using excel vba on a spreadsheet. All the values of column K are in mm/dd/yy ie (8/7/19). Now i have made a macro that take information from this sheets and fills a few word documents. My problem is that they now want the documents to display the full calendar date (ie August 7, 2019). How would i go about doing this. So far here is what i have
How can i convert the date entered into NOCdate to the format Month Date, Year or August 7, 2019.
Thank you.
Here is my situation, i'm using excel vba on a spreadsheet. All the values of column K are in mm/dd/yy ie (8/7/19). Now i have made a macro that take information from this sheets and fills a few word documents. My problem is that they now want the documents to display the full calendar date (ie August 7, 2019). How would i go about doing this. So far here is what i have
Code:
NOCdate = NOCws.Cells(Target, "K").Value
Wordapp.ActiveDocument.FormFields("TXCompletionDate").Result = NOCdate
How can i convert the date entered into NOCdate to the format Month Date, Year or August 7, 2019.
Thank you.