LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (April 2008, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 29 Apr 2008 08:21:03 -0700
Reply-To:     gayakrup@GMAIL.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         gayakrup@GMAIL.COM
Organization: http://groups.google.com
Subject:      character to numeric
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset=ISO-8859-1

Iam trying to write a format to use th evariable later as a numeric,iam not sure of wat to add.

Proc format; value park 0='mon - 0' 1='tue - 1' 2='wed - 2' 3='thur - 3' 4='fri - 4' 5='Sat - 5'; run; I need a statement to convert park to a numeric value to use later on ...put or input proc sort data=vis out=days (keep = visit park); by visit; where visit >= 8 ; run;


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