Hi @Tom Sorry it took me so long to get back to this. I used your suggestion and it worked. Thank you!!! Now I am trying to find out how to use the same variable and create a date like this: 7/27/2025 9:00:00 AM I think someone mentioned I could do this but using this part of the code what would I change to get 7/27/2025 9:00:00 AM using my first observation as an example: Thank you!! length string $50;
date=datepart(datetime);
format date date9.;
string = catx(', '
,put(date,downame.)
,catx(' ',put(date,monname.),day(date))
,put(datetime,timeampm.));
... View more