I have some data coming in from a real estate contract where the close date is in the following format: November 11th, 2021.
I need it as 3 different variables: Month in 2 digit numeric format, day in 2 digit numeric format, year in 4 digit numeric format. ex: 11/11/2021
So far I've used an IF statement for a couple of months such as: IF X= December, then month = 12.
Before I go thru the whole year of months and then the whole month of days doing IF statements, is there a better way?