I guess it's too late to answer, but I think I've found an interesting solution.
You can get 1 observation from your initial table with the field in question, then set this field's value to current date and time or something like '31DEC9999:0:0:0'dt and then use function vvalue(field). If this field uses date format without time, then our datetime value will be too big for this format, so vvalue() will return the string, consisting from '*' characters. Otherwise vvalue() will return something, that resembles date and time. Depending on the output we can determine, was the field in question in date format or in datetime format. Code is below:
data _NULL_;
set in_table;
field='31DEC9999:0:0:0'dt;
/* If the string consists only from '*' characters, then compress() below will return empty string */
if compress(vvalue(field),'*')='' then call symput('date_format','date');
else call symput('date_format','datetime');
run;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.