SAS User File for H51A Data This file contains information and sample SAS programs to create a permanent SAS dataset, for users who want to use SAS in processing the MEPS data provided in this PUF release. There are two ways to create a permanent SAS dataset, using either the SAS transport data file (H51A.SSP) or the ASCII data file (H51A.DAT) supplied in this PUF release. Section A provides a sample SAS program for the first alternative, which is to convert the SAS transport data file to a regular SAS dataset, using the SAS PROCedure: XCOPY. Section B provides a sample SAS program for the second alternative, which is to read data from the ASCII data file, using a SAS DATA step with INFILE, INPUT, and LABEL statements. Section C explains format-related SAS statements that a user may optionally use when working with the SAS dataset. Examples of SAS programs (DATA step or PROC) are provided in all three sections, primarily for the benefit of inexperienced users. Section D contains complete SAS statements that must be used in the programs described in Sections B and C. INCLUDED BELOW ARE NOTES APPLICABLE TO USERS OF SAS VERSION 8. ****************************************************************************** The sample SAS programs provided in Sections A and B show how to create a permanent SAS dataset from the data files provided in this PUF release. A. A Sample SAS Program for Converting the SAS Transport File to a Permanent SAS Dataset The SAS PROCedure XCOPY will read a SAS transport data file and convert the data to regular SAS format, storing the output in a permanent SAS dataset. This permanent SAS dataset can then be used for all future processing and analyses. Below is a sample PC-SAS program that can be used to convert the SAS transport file to a permanent PC SAS dataset (in a Windows environment, with SAS V6.12). LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\MEPS\H51A.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; If the user wants a list of variables and a few sample records in the permanent SAS dataset, following are the SAS statements to accomplish these. PROC CONTENTS DATA=PUFLIB.H51A; TITLE "List of Variables in MEPS H51A SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.H51A (OBS=20); TITLE "First 20 Observations in MEPS H51A SAS Dataset"; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC XCOPY. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 2) The directory and file names used in the LIBNAME and FILENAME statements shown above are Windows syntax and may need to be modified for other operating systems such as UNIX, MAC/OS, VMS, or OS/2. 3) H51A is the internal SAS dataset name (also the PC file name, without the extension) prior to the creation of the SAS transport data file. After running PROC XCOPY, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H51A.SD2 will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H51A.SSP was created from a PC-SAS Version 6.12 data file, using PROC COPY. This file has been tested for use with PC-SAS version 6.10 or higher, or with mainframe SAS version 6.08 or higher. This file may work with earlier versions of SAS, although it has not been tested with those versions. Users who are unable to use this SAS Transport file should instead convert the ASCII data file H51A.DAT to a SAS data set as described in Section B. ADDITONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded SAS Transport file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H51A.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; B. A Sample SAS Program for Converting the ASCII Data File to a Permanent SAS Dataset The complete SAS statements (INPUT and LABEL) included in Section D are intended to save time for those users wishing to create a permanent SAS dataset from the H51A.DAT ASCII data file. These statements must be used in combination with other SAS statements to create the appropriate SAS program, as shown below. To use the statements provided in Section D to create a SAS program, you will need an ASCII text editor. If you are using an interactive form of SAS (Windows, UNIX, OS2, etc.), use the editor provided as part of the SAS software. Following is a sample SAS program that will convert the ASCII data file to SAS format. LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\MEPS\H51A.DAT'; DATA PUFLIB.H51A; INFILE IN1 LRECL=487; INPUT .....; * to user: insert the complete INPUT statement that is provided in Section D; LABEL .....; * to user: insert the complete LABEL statement that is provided in Section D; RUN; Here is an explanation of the SAS statements used in the program above. LIBNAME statement: This tells SAS the location (directory name) of the permanent SAS dataset. FILENAME statement: This tells SAS the location of the input ASCII data file. DATA statement: This signifies the beginning of a SAS DATA step and specifies describes the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H51A). In the example, after the successful completion of the DATA step, a PC file named H51A.SD2 would have been created in the C:\MEPS directory. INFILE statement: This tells SAS the location (directory and file name) of the input ASCII data file. Also provided is the logical record length (487 bytes), with the default of RECFM=V implied when this parameter is omitted. LRECL and RECFM are optional parameters in the INFILE statement. With regard to these options, please note the following: the ASCII data file H51A.DAT contains a 2-byte carriage return/line feed at the end of each record. When converting to a PC-SAS file, the LRECL option should be used to specify the record length to avoid use of a default record length by PC-SAS. If the RECFM=V option is used, the LRECL option must be specified as the logical record length (e.g., 487 for H51A.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (489 for H51A.DAT). Note that if the RECFM option is omitted, then the default option of RECFM=V is automatically used, and LRECL should be specified as the logical record (487 for H51A.DAT). INPUT statement: This specifies the input record layout, giving names and the beginning and ending column positions for data items (which become SAS variables) in the ASCII data file (H51A.DAT). Variable type (numeric or character) is also defined via the INPUT statement. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. ADDITONAL NOTE TO USERS OF SAS VERSION 8: One of the following procedures should be used to avoid a SAS error when using the downloaded ASCII data file: 1) Add V8 to LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS'; OR 2) Output the SAS data set to a different library than the one which contains the downloaded ASCII data file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H51A.DAT'; DATA PUFLIB.H51A; INFILE IN1 LRECL=487; C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format library must first be created. Below is a SAS program that will accomplish this. LIBNAME PUFLIB 'C:\MEPS'; PROC FORMAT LIBRARY=PUFLIB; VALUE .....; * to user: insert the complete set of VALUE statements found in Section D; VALUE .....; .......... ; RUN; Below is an example of how to use the SAS formats defined by the PROC FORMAT procedure. LIBNAME PUFLIB 'C:\MEPS'; OPTIONS FMTSEARCH=(PUFLIB); PROC FREQ DATA=PUFLIB.H51A; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnami and fmtnami with actual variable names and format names; * Insert the FORMAT statement provided in Section D, if you are using all the variables; * in the TABLES statement; TITLE "Frequency Distributions ...."; RUN; Here is an explanation of the SAS statements used above. LIBNAME statement: This tells SAS the location (directory name) of the SAS format library. Please note that SAS datasets (file name extension is 'SD2') and format libraries (file name extension is 'SC2') can be stored under the same directory. OPTIONS FMTSEARCH=...: This specifies the SAS format library. PROC FORMAT statement: This identifies the SAS procedure that will make SAS formats according to VALUE statements. Formats will be stored in a file named FORMATS.SC2. Please note that the option 'LIBRARY=...' can be omitted, if the user does not want to create a permanent SAS format library. When simply 'PROC FORMAT;' is used, the formats are defined only for the duration of the batch SAS program or an interactive SAS session. VALUE statement: This gives a) names to formats; and b) descriptive labels for individual values, or range of values. The format names can then be invoked using a FORMAT statement, if desired. PROC FREQ statement: This identifies the SAS procedure that will generate frequency distributions of variables specified in the TABLES statement, formatted if a FORMAT statement is used. The input SAS dataset is specified in the 'DATA=' option. FORMAT statement: This associates existing formats with variables. When using this statement, the formats must have already been created with a PROC FORMAT procedure. RUN statement: This tells SAS to execute all commands up to this point. NOTES: 1) Use of formats is entirely optional, and depends on the type of analyses that you are doing. It is recommended that you create and use them as appropriate. 2) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 3) You only create the permanent SAS data set once. Additional analyses can be run using this permanent dataset. 4) The file and directory specifications in the LIBNAME and FILENAME statements are Windows syntax and may need to be modified for other operating systems such as UNIX, MAC/OS, VMS, or OS/2. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT and VALUE statements for use in converting the ASCII H51A.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=487; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 RXRECIDX $15.0 @32 LINKIDX $12.0 @44 PURCHRD 1.0 @45 RXBEGDD 2.0 @47 RXBEGMM 2.0 @49 RXBEGYR 4.0 @53 RXNAME $50.0 @103 RXHHNAME $30.0 @133 RXNDC $11.0 @144 RXQUANTY 8.2 @152 RXFORM $50.0 @202 RXFRMUNT $50.0 @252 RXSTRENG $50.0 @302 RXSTRUNT $50.0 @352 PHARTP1 2.0 @354 PHARTP2 2.0 @356 PHARTP3 2.0 @358 PHARTP4 2.0 @360 PHARTP5 2.0 @362 PHARTP6 2.0 @364 PHARTP7 2.0 @366 RXFLG 1.0 @367 PCIMPFLG 1.0 @368 CLMOMFLG 1.0 @369 INPCFLG 1.0 @370 DIABFLG 1.0 @371 SAMPLE 1.0 @372 RXICD1X $3.0 @375 RXICD2X $3.0 @378 RXICD3X $3.0 @381 RXCCC1X $3.0 @384 RXCCC2X $3.0 @387 RXCCC3X $3.0 @390 RXSF00X 7.2 @397 RXMR00X 6.2 @403 RXMD00X 6.2 @409 RXPV00X 7.2 @416 RXVA00X 6.2 @422 RXTR00X 6.2 @428 RXOF00X 6.2 @434 RXSL00X 6.2 @440 RXWC00X 6.2 @446 RXOT00X 6.2 @452 RXOR00X 7.2 @459 RXOU00X 6.2 @465 RXXP00X 7.2 @472 PERWT00F 12.6 @484 VARSTR00 2.0 @486 VARPSU00 2.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERSI. RXRECIDX $RXRECIX. LINKIDX $LINKIDX. PURCHRD PURCHRD. RXBEGDD RXBEGDD. RXBEGMM RXBEGMM. RXBEGYR RXBEGYR. RXNAME $RXNAME. RXHHNAME $RXHHNAM. RXNDC $RXNDC. RXQUANTY RXQUANTY. RXFORM $RXFORM. RXFRMUNT $RXFRMUN. RXSTRENG $RXSTREN. RXSTRUNT $RXSTRUN. PHARTP1 PHARTP. PHARTP2 PHARTP. PHARTP3 PHARTP. PHARTP4 PHARTP. PHARTP5 PHARTP. PHARTP6 PHARTP. PHARTP7 PHARTP. RXFLG RXFLG. PCIMPFLG PCIMPFLG. CLMOMFLG CLMOMFLG. INPCFLG INPCFLG. DIABFLG DIABFLG. SAMPLE SAMPLE. RXICD1X $ICD9COD. RXICD2X $ICD9COD. RXICD3X $ICD9COD. RXCCC1X $CCCODEX. RXCCC2X $CCCODEX. RXCCC3X $CCCODEX. RXSF00X RXSF00X. RXMR00X RXMR00X. RXMD00X RXMD00X. RXPV00X RXPV00X. RXVA00X RXVA00X. RXTR00X RXTR00X. RXOF00X RXOF00X. RXSL00X RXSL00X. RXWC00X RXWC00X. RXOT00X RXOT00X. RXOR00X RXOR00X. RXOU00X RXOU00X. RXXP00X RXXP00X. PERWT00F PERWT00F. VARSTR00 VARSTR0G. VARPSU00 VARPSU0G. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='PERSON NUMBER' DUPERSID='PERSON ID (DUID + PID)' RXRECIDX='UNIQUE Rx/PRESCRIBED MEDICINE IDENTIFIER' LINKIDX ='ID FOR LINKAGE TO COND/OTH EVENT FILES' PURCHRD ='ROUND Rx/PRESCR MED OBTAINED/PURCHASED' RXBEGDD ='DAY PERSON STARTED TAKING MEDICINE' RXBEGMM ='MONTH PERSON STARTED TAKING MEDICINE' RXBEGYR ='YEAR PERSON STARTED TAKING MEDICINE' RXNAME ='MEDICATION NAME (IMPUTED)' RXHHNAME='HC REPORTED MEDICATION NAME' RXNDC ='NATIONAL DRUG CODE (IMPUTED)' RXQUANTY='QUANTITY OF Rx/PRESCR MED (IMPUTED)' RXFORM ='FORM OF Rx/PRESCRIBED MEDICINE (IMPUTED)' RXFRMUNT='UNIT OF MEAS FORM Rx/PRESC MED (IMPUTED)' RXSTRENG='STRENGTH OF Rx/PRESCR MED DOSE (IMPUTED)' RXSTRUNT='UNIT OF MEAS STRENGTH OF Rx (IMPUTED)' PHARTP1 ='TYPE OF PHARMACY PROV - 1ST' PHARTP2 ='TYPE OF PHARMACY PROV - 2ND' PHARTP3 ='TYPE OF PHARMACY PROV - 3RD' PHARTP4 ='TYPE OF PHARMACY PROV - 4TH' PHARTP5 ='TYPE OF PHARMACY PROV - 5TH' PHARTP6 ='TYPE OF PHARMACY PROV - 6TH' PHARTP7 ='TYPE OF PHARMACY PROV - 7TH' RXFLG ='NDC IMPUTATION SOURCE ON PC DONOR REC' PCIMPFLG='TYPE OF HC TO PC PRESCRIPTION MATCH' CLMOMFLG='CHGE/PYMNT, Rx CLAIM FILING, OMTYPE STAT' INPCFLG ='PID HAS AT LEAST 1 RECORD IN PC' DIABFLG ='Rx INSULIN OR DIABETIC EQUIPMENT/SUPPLY' SAMPLE ='HOUSEHLD RCVD FREE SAMPLE OF Rx IN ROUND' RXICD1X ='3 DIGIT ICD-9 CONDITION CODE' RXICD2X ='3 DIGIT ICD-9 CONDITION CODE' RXICD3X ='3 DIGIT ICD-9 CONDITION CODE' RXCCC1X ='MODIFIED CLINICAL CLASS CODE' RXCCC2X ='MODIFIED CLINICAL CLASS CODE' RXCCC3X ='MODIFIED CLINICAL CLASS CODE' RXSF00X ='AMOUNT PAID, SELF OR FAMILY (IMPUTED)' RXMR00X ='AMOUNT PAID, MEDICARE (IMPUTED)' RXMD00X ='AMOUNT PAID, MEDICAID (IMPUTED)' RXPV00X ='AMOUNT PAID, PRIVATE INSURANCE (IMPUTED)' RXVA00X ='AMOUNT PAID, VETERANS (IMPUTED)' RXTR00X ='AMOUNT PAID, TRICARE (IMPUTED)' RXOF00X ='AMOUNT PAID, OTHER FEDERAL (IMPUTED)' RXSL00X ='AMOUNT PAID, STATE & LOCAL GOV (IMPUTED)' RXWC00X ='AMOUNT PAID, WORKERS COMP (IMPUTED)' RXOT00X ='AMOUNT PAID, OTHER INSURANCE (IMPUTED)' RXOR00X ='AMOUNT PAID, OTHER PRIVATE (IMPUTED)' RXOU00X ='AMOUNT PAID, OTHER PUBLIC (IMPUTED)' RXXP00X ='SUM OF PAYMENTS RXSF00X-RXOU00X(IMPUTED)' PERWT00F='FINAL PERSON LEVEL WEIGHT, 2000' VARSTR00='VARIANCE ESTIMATION STRATUM, 2000' VARPSU00='VARIANCE ESTIMATION PSU, 2000' ; * VALUE STATEMENTS; VALUE $CCCODEX '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001-260' ; VALUE CLMOMFLG 1 = '1 C+P=N,FILER=PHARMACY' 2 = '2 C+P=N,FILER=NEITHER' 3 = '3 C+P=Y,FILER=UNK/INAP' 4 = '4 C+P=Y,FILER=FAMILY' 5 = '5 C+P=Y,FILER=PHARMACY,OM=2,3' 6 = '6 C+P=Y,FILER=NEITHER,OM=2,3' ; VALUE DIABFLG 0 = '0 NO' 1 = '1 YES' ; VALUE DUID 70002 - 85356 = 'VALID ID' ; VALUE $DUPERSI '70002016' - '85356028' = 'VALID ID' ; VALUE $ICD9COD '-1' = '-1 INAPPLICABLE' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '999' = '001-999' 'E00' - 'E99' = 'E00-E99' 'V00' - 'V99' = 'V00-V99' ; VALUE INPCFLG 0 = '0 NO' 1 = '1 YES' ; VALUE $LINKIDX '700020160206' - '853560280273' = 'VALID ID' ; VALUE PCIMPFLG 1 = '1 EXACT MATCH TO PC Rx FOR PID' 2 = '2 NOT EXACT MATCH TO PC Rx FOR PID' ; VALUE PERWT00F 0 = '0' 519.418829 - 73558.465581 = '519.418829 - 73558.465581' ; VALUE PHARTP -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 MAIL-ORDER' 2 = '2 IN ANOTHER STORE' 3 = '3 IN HMO/CLINIC/HOSPITAL' 4 = '4 DRUG STORE' ; VALUE PID 10 - 153 = 'VALID ID' ; VALUE PURCHRD 1 = '1' 2 = '2' 3 = '3' 4 = '4' 5 = '5' ; VALUE RXBEGDD -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1-31' ; VALUE RXBEGMM -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1-12' ; VALUE RXBEGYR -14 = '-14 NOT YET USED/TAKEN' -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1936 - 2001 = '1936-2001' ; VALUE RXFLG 1 = '1 NO IMPUTATION' 2 = '2 IMPUTED FROM OTHER PC RECORD' 3 = '3 IMPUTED FR SECONDARY SRC, BUT ORIG REPORTED' ; VALUE $RXFORM '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' OTHER = 'A-ZZZZZZZZZZ' ; VALUE $RXFRMUN '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '91' = '91 OTHER SPECIFY' OTHER = 'A-ZZZZZZZZZZ' ; VALUE $RXHHNAM ' ' = 'BLANK' '-1' = '-1 INAPPLICABLE' '-13' = '-13 VALUE SUPPRESSED' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' OTHER = '0-ZZZZZZZZZZ' ; VALUE RXMD00X 0 = '0' 0.3 - 9.99 = '$0.30 - $9.99' 9.99 < - 29.8 = '$10.00 - $29.80' 29.8 < - 64.9 = '$29.80 - $64.90' 64.9 < - 754.93 = '$64.90 - $754.93' ; VALUE RXMR00X 0 = '0' 0.02 - 10.5 = '$0.02 - $10.50' 10.5 < - 29.26 = '$10.51 - $29.26' 29.26 < - 56 = '$29.27 - $56.00' 56 < - 937.11 = '$56.01 - $937.11' ; VALUE $RXNAME ' ' = 'BLANK' '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' OTHER = '0-ZZZZZZZZZZ' ; VALUE $RXNDC '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '00000000000' = '00000000000' '00000000296' - '99999999996' = '00000000296-99999999996' ; VALUE RXOF00X 0 = '0' 0.85 - 6.82 = '$0.85 - $6.82' 6.82 < - 18.52 = '$6.83 - $18.52' 18.52 < - 58.57 = '$18.53 - $58.57' 58.57 < - 474.43 = '$58.58 - $474.43' ; VALUE RXOR00X 0 = '0' 0.06 - 8.21 = '$0.06 - $8.21' 8.21 < - 19.69 = '$8.22 - $19.69' 19.69 < - 45.76 = '$19.70 - $45.76' 45.76 < - 2115.32 = '$45.77 - $2115.32' ; VALUE RXOT00X 0 = '0' 1.72 - 18.57 = '$1.72 - $18.57' 18.57 < - 39.69 = '$18.58 - $39.69' 39.69 < - 60.39 = '$39.70 - $60.39' 60.39 < - 228.11 = '$60.40 - $228.11' ; VALUE RXOU00X 0 = '0' 3.19 - 11.18 = '$3.19 - $11.18' 11.18 < - 29.47 = '$11.19 - $29.47' 29.47 < - 63.13 = '$29.48 - $63.13' 63.13 < - 187.08 = '$63.14 - $187.08' ; VALUE RXPV00X 0 = '0' 0.01 - 10.64 = '$0.01 - $10.64' 10.64 < - 28.05 = '$10.65 - $28.05' 28.05 < - 56.23 = '$28.06 - $56.23' 56.23 < - 2761.14 = '$56.24 - $2761.14' ; VALUE RXQUANTY -9 = '-9 NOT ASCERTAINED' 0.5 - 28880 = '0.5 - 28880' ; VALUE $RXRECIX '700020160206001' - '853560280273003' = 'VALID ID' ; VALUE RXSF00X 0 = '0' 0.01 - 5 = '$0.01 - $5.00' 5 < - 12 = '$5.01 - $12.00' 12 < - 27.54 = '$12.01 - $27.54' 27.54 < - 2130.32 = '$27.55 - $2130.32' ; VALUE RXSL00X 0 = '0' 0.09 - 8.45 = '$0.09 - $8.45' 8.45 < - 21.39 = '$8.46 - $21.39' 21.39 < - 48.74 = '$21.40 - $48.74' 48.74 < - 999.98 = '$48.75 - $999.98' ; VALUE $RXSTREN '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '.0002.5' - '99' = '.0002.5 - 99' ; VALUE $RXSTRUN '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '91' = '91 OTHER SPECIFY' OTHER = 'A-ZZZZZZZZZZ' ; VALUE RXTR00X -9 = '-9 NOT ASCERTAINED' 0 = '0' 0.68 - 13.57 = '$0.68 - $13.57' 13.57 < - 34.6 = '$13.58 - $34.60' 34.6 < - 72.79 = '$34.61 - $72.79' 72.79 < - 288.67 = '$72.80 - $288.67' ; VALUE RXVA00X 0 = '0' 0.01 - 9.15 = '$0.01 - $9.15' 9.15 < - 30.43 = '$9.16 - $30.43' 30.43 < - 73 = '$30.44 - $73.00' 73 < - 722.93 = '$73.01 - $722.93' ; VALUE RXWC00X 0 = '0' 3.17 - 11.47 = '$3.17 - $11.47' 11.47 < - 21.78 = '$11.48 - $21.78' 21.78 < - 79.98 = '$21.79 - $79.98' 79.98 < - 290.35 = '$79.99 - $290.35' ; VALUE RXXP00X 0 = '0' 0.24 - 13.8 = '$0.24 - $13.80' 13.8 < - 32.89 = '$13.81 - $32.89' 32.89 < - 62.32 = '$32.90 - $62.32' 62.32 < - 2773.14 = '$62.33 - $2773.14' ; VALUE SAMPLE 0 = '0 NO' 1 = '1 YES' ; VALUE VARPSU0G 1 - 30 = '1 - 30' ; VALUE VARSTR0G 1 - 56 = '1 - 56' ;