You might want to join the TSO Rexx newsgroup. For TSO-REXX subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: INFO TSO-REXX
Look at the DO FOREVER process in REXX. It will continue the loop until you tell it how to get out. DO FOREVER Say " Enter the Year: (YYYY)" PARSE PULL year If Datatype(year) = Numeric Then Call NextPart End NextPart: Procedure Expose ... Lizette > hi, > > how make a loop using the DO command in REXX? > > ex: > > Say ' enter wiith the year' > pull year > > do until year (not numeric???) > say ' invalid date, enter with the year' > pull year > end > > be right the command above? > ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

