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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.