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;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.