BookmarkSubscribeRSS Feed
ren2010
Obsidian | Level 7

Hi,

I have a dataset with a numeric variable  with informat and format of 9.This numeric field has date value as below:

date_var

20051020

I tried to read in the variable in a Data step and change the format  of date_var to mmddyy10. and  created the dataset,but when I opened  the dataset  the value of date_var is showing in bestw format.

ie in my output dataset I am seeing the value of date_var as 20051020 instead of 10/20/2005.

I have also noticed in the log that there was a message when I opened the output dataset ,ie : Error in Format,bestw used instead.

Any idea why this is happening?

Please help.

Thanks in advance.

2 REPLIES 2
art297
Opal | Level 21

It sounds like you read your dates as numbers.  Thus, you have to use the input and put functions to convert them to date values.  E.g.:

data have;

  input date_var;

  cards;

20051020

;

data want;

  set have;

  format date_var mmddyy10.;

  date_var=input(put(date_var,z8.),yymmdd8.);

run;

ren2010
Obsidian | Level 7

Thanks Art297.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1399 views
  • 0 likes
  • 2 in conversation