LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (September 2010, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 23 Sep 2010 20:49:40 -0400
Reply-To:     Trish Bous <tboussard@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Trish Bous <tboussard@GMAIL.COM>
Subject:      Re: WORKING WITH DATES

Yes, you are correct. I am just using proc print to list the data.

proc print data = admin (obs=500); var ID DATE days start_date; run;

However, i want to do some more manipulations with the dates, but I am unable to do this, as it is being forced as a character value:

1653 1654 proc means data = admin; 1655 var days; ERROR: Variable days in list does not match type prescribed for this list. 1656 run;

NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE MEANS used (Total process time): real time 0.03 seconds cpu time 0.01 seconds

Thanks for the help!


Back to: Top of message | Previous page | Main SAS-L page