how to extract AM ,PM from time format Eg:1:40:00 PM
data have;
x='19:20:21't;
format x timeampm.;
run;
data want;
set have;
want=scan(vvalue(x),-1);
run;
Please supply example data in a data step with datalines, so we can see variable types, formats and values, and use it for testing.
Is the value 1:40:00 PM extracted from a character variable or an actual SAS time variable?
Please be more specific in your requirements
it is in time format (timeampm11.)
data have;
x='19:20:21't;
format x timeampm.;
run;
data want;
set have;
want=scan(vvalue(x),-1);
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.