SAS User File for H16A 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 (H16A.SSP) or the ASCII data file (H16A.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. ****************************************************************************** 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 transport file H16A.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 H16A.DAT to a SAS data set as described in Section B. 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\H16A.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.H16A; TITLE "List of Variables in MEPS H16A SAS Dataset"; RUN; PROC PRINT DATA=PUFLIB.H16A (OBS=20); TITLE "First 20 Observations in MEPS H16A 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) H16A 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 H16A.SD2 will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 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 H16A.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\H16A.DAT'; DATA PUFLIB.H16A; INFILE IN1 LRECL=405; 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 (H16A). In the example, after the successful completion of the DATA step, a PC file named H16A.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 (405 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 H16A.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., 405 for H16A.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (407 for H16A.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 (405 for H16A.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 (H16A.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. 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.H16A; 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 H16A.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=405; 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 7.2 @151 RXFORM 2.0 @153 RXFORMOS $50.0 @203 RXSTRENG $12.0 @215 RXUNIT 2.0 @217 RXUNITOS $50.0 @267 PHARTP1 2.0 @269 PHARTP2 2.0 @271 PHARTP3 2.0 @273 PHARTP4 2.0 @275 PHARTP5 2.0 @277 PHARTP6 2.0 @279 PHARTP7 2.0 @281 RXFLG 1.0 @282 PCIMPFLG 1.0 @283 SELFFLG 1.0 @284 INPCFLG 1.0 @285 DIABFLG 1.0 @286 SAMPLE 1.0 @287 RXICD1X $3.0 @290 RXICD2X $3.0 @293 RXICD3X $3.0 @296 RXCCC1X $3.0 @299 RXCCC2X $3.0 @302 RXCCC3X $3.0 @305 NUMCOND 2.0 @307 RXSF97X 7.2 @314 RXMR97X 7.2 @321 RXMD97X 7.2 @328 RXPV97X 7.2 @335 RXVA97X 6.2 @341 RXCH97X 6.2 @347 RXOF97X 5.2 @352 RXSL97X 6.2 @358 RXWC97X 6.2 @364 RXOT97X 6.2 @370 RXOR97X 6.2 @376 RXOU97X 6.2 @382 RXXP97X 7.2 @389 WTDPER97 12.6 @401 VARSTR97 3.0 @404 VARPSU97 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. RXFORMOS $RXFORMO. RXSTRENG $RXSTREN. RXUNIT RXUNIT. RXUNITOS $RXUNITO. PHARTP1 PHARTP. PHARTP2 PHARTP. PHARTP3 PHARTP. PHARTP4 PHARTP. PHARTP5 PHARTP. PHARTP6 PHARTP. PHARTP7 PHARTP. RXFLG RXFLG. PCIMPFLG PCIMPFLG. SELFFLG SELFFLG. INPCFLG INPCFLG. DIABFLG DIABFLG. SAMPLE SAMPLE. RXICD1X $ICD9COD. RXICD2X $ICD9COD. RXICD3X $ICD9COD. RXCCC1X $CCCODEX. RXCCC2X $CCCODEX. RXCCC3X $CCCODEX. NUMCOND NUMCOND. RXSF97X RXSF97X. RXMR97X RXMR97X. RXMD97X RXMD97X. RXPV97X RXPV97X. RXVA97X RXVA97X. RXCH97X RXCH97X. RXOF97X RXOF97X. RXSL97X RXSL97X. RXWC97X RXWC97X. RXOT97X RXOT97X. RXOR97X RXOR97X. RXOU97X RXOU97X. RXXP97X RXXP97X. WTDPER97 WTDPER9G. VARSTR97 VARSTR9G. VARPSU97 VARPSU9G. ; * 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)' RXFORMOS='OTH SPEC FORM OF Rx/PRESCR MED (IMPUTED)' RXSTRENG='STRENGTH OF Rx/PRESCR MED DOSE (IMPUTED)' RXUNIT ='UNIT OF MEAS Rx/PRESC MED DOSE (IMPUTED)' RXUNITOS='OTH SPEC UNIT MEAS Rx MED DOSE (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 IMPUTE SCE ON PC DONOR REC (IMPUTED)' PCIMPFLG='TYPE OF HC TO PC PRESCRIPTION MATCH' SELFFLG ='EVENT IS A SELF-FILER EVENT' 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' NUMCOND ='TOT # COND RECS LINK TO EVNT' RXSF97X ='AMOUNT PAID, SELF OR FAMILY (IMPUTED)' RXMR97X ='AMOUNT PAID, MEDICARE (IMPUTED)' RXMD97X ='AMOUNT PAID, MEDICAID (IMPUTED)' RXPV97X ='AMOUNT PAID, PRIVATE INSURANCE (IMPUTED)' RXVA97X ='AMOUNT PAID, VETERANS (IMPUTED)' RXCH97X ='AMOUNT PAID, CHAMPUS/CHAMPVA (IMPUTED)' RXOF97X ='AMOUNT PAID, OTHER FEDERAL (IMPUTED)' RXSL97X ='AMOUNT PAID, STATE & LOCAL GOV (IMPUTED)' RXWC97X ='AMOUNT PAID, WORKERS COMP (IMPUTED)' RXOT97X ='AMOUNT PAID, OTHER INSURANCE (IMPUTED)' RXOR97X ='AMOUNT PAID, OTHER PRIVATE (IMPUTED)' RXOU97X ='AMOUNT PAID, OTHER PUBLIC (IMPUTED)' RXXP97X ='SUM OF PAYMENTS RXSF97X-RXOU97X(IMPUTED)' WTDPER97='POVERTY/MORTALITY ADJUSTED PERS LEVL WGT' VARSTR97='VARIANCE ESTIMATION STRATUM, 1997' VARPSU97='VARIANCE ESTIMATION PSU, 1997' ; * VALUE STATEMENTS; VALUE $CCCODEX '-1' = '-1 INAPPLICABLE' '-8' = '-8 DK' '001' - '259' = '001-259' ; VALUE DIABFLG 0 - 0 = '0 NO' 1 - 1 = '1 YES' ; VALUE DUID 2 - 36284 = 'VALID ID' ; VALUE $DUPERSI '00002025' - '36284037' = 'VALID ID' ; VALUE $ICD9COD '-1' = '-1 INAPPLICABLE' '-8' = '-8 DK' '001' - '139' = '001-139' '140' - '239' = '140-239' '240' - '279' = '240-279' '280' - '289' = '280-289' '290' - '319' = '290-319' '320' - '389' = '320-389' '390' - '459' = '390-459' '460' - '519' = '460-519' '520' - '579' = '520-579' '580' - '629' = '580-629' '630' - '677' = '630-677' '680' - '709' = '680-709' '710' - '739' = '710-739' '740' - '759' = '740-759' '760' - '779' = '760-779' '780' - '799' = '780-799' '800' - '999' = '800-999' 'V00' - 'V99' = 'V00-V99' ; VALUE INPCFLG 0 - 0 = '0 NO' 1 - 1 = '1 YES' ; VALUE $LINKIDX '000020250065' - '362840370084' = 'VALID ID' ; VALUE NUMCOND 0 - 0 = '0' 1 - 3 = '1-3' 4 - 4 = '4' 5 - 5 = '5' 6 - 6 = '6' 7 - 7 = '7' 8 - 8 = '8' 9 - 9 = '9' 10 - 10 = '10' 11 - 11 = '11' 12 - 12 = '12' 13 - 13 = '13' 14 - 14 = '14' 15 - 15 = '15' 16 - 16 = '16' ; VALUE PCIMPFLG 0 - 0 = '0 NONE' 1 - 1 = '1 EXACT MATCH TO PC Rx FOR PID' 2 - 2 = '2 REFILL OF EXACT MATCH TO PC Rx FOR PID' 3 - 3 = '3 NOT EXACT MATCH TO PC Rx FOR PID' ; VALUE PHARTP . - . = '. MISSING' -9 - -9 = '-9 NOT ASCERTAINED' -8 - -8 = '-8 DK' -7 - -7 = '-7 REFUSED' -1 - -1 = '-1 INAPPLICABLE' 1 - 1 = '1 MAIL-ORDER' 2 - 2 = '2 IN ANOTHER STORE' 3 - 3 = '3 IN HMO/CLINIC/HOSPITAL' 4 - 4 = '4 DRUG STORE' ; VALUE PID 10 - 170 = '10 - 170' ; VALUE PURCHRD 1 - 1 = '1' 2 - 2 = '2' 3 - 3 = '3' 4 - 4 = '4' 5 - 5 = '5' ; VALUE RXBEGDD -9 - -9 = '-9 NOT ASCERTAINED' -8 - -8 = '-8 DK' -7 - -7 = '-7 REFUSED' -1 - -1 = '-1 INAPPLICABLE' 1 - 31 = '1-31' ; VALUE RXBEGMM -9 - -9 = '-9 NOT ASCERTAINED' -8 - -8 = '-8 DK' -7 - -7 = '-7 REFUSED' -1 - -1 = '-1 INAPPLICABLE' 1 - 12 = '1-12' ; VALUE RXBEGYR -14 - -14 = '-14 NOT YET USED/TAKEN' -9 - -9 = '-9 NOT ASCERTAINED' -8 - -8 = '-8 DK' -7 - -7 = '-7 REFUSED' -1 - -1 = '-1 INAPPLICABLE' 99 - 99 = '99 HAS NOT YET TAKEN/USED' 1904 - 1998 = '1904-1998' ; VALUE RXCH97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.39 - 8.6 = '$0.39 - $8.60' 8.6 < - 18.8 = '$8.61 - $18.80' 18.8 < - 44.21 = '$18.81 - $44.21' 44.21 < - 485.36 = '$44.22 - $485.36' ; VALUE RXFLG 1 - 1 = '1 NO IMPUTATION' 2 - 2 = '2 IMPUTED FROM OTHER PC RECORD' 3 - 3 = '3 IMPUTED FR SECONDARY SRC, BUT ORIG REPORTED' ; VALUE RXFORM -9 - -9 = '-9 NOT ASCERTAINED' -7 - -7 = '-7 REFUSED' 1 - 1 = '1 PILLS' 2 - 2 = '2 LIQUID' 3 - 3 = '3 DROPS' 4 - 4 = '4 TOPICAL OINTMENT' 5 - 5 = '5 SUPPOSITORIES' 6 - 6 = '6 AEROSOL/SPRAY,INHALANT' 7 - 7 = '7 SHAMPOO/SOAP' 8 - 8 = '8 INJECTION' 9 - 9 = '9 IV INJECTION' 10 - 10 = '10 PATCHES' 11 - 11 = '11 TOPICAL GEL/JELLY' 12 - 12 = '12 POWDER' 13 - 13 = '13 LANCETS' 14 - 14 = '14 GRAMS' 15 - 15 = '15 OUNCES' 16 - 16 = '16 SOLUTION' 17 - 17 = '17 TEST STRIPS' 18 - 18 = '18 SYRINGES' 19 - 19 = '19 NEBULIZER' 20 - 20 = '20 Z-PAK' 91 - 91 = '91 OTHER SPECIFY' ; VALUE $RXFORMO '-1' = '-1 INAPPLICABLE' '-9' = '-9 NOT ASCERTAINED' '99999' = '99999' '999999999' = '999999999' '9999999998' = '9999999998' '9999999999' = '9999999999' 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 RXMD97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.04 - 8.51 = '$0.04 - $8.51' 8.51 < - 22.24 = '$8.52 - $22.24' 22.24 < - 46.83 = '$22.25 - $46.83' 46.83 < - 3186 = '$46.84 - $3186.00' ; VALUE RXMR97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.01 - 7.01 = '$0.01 - $7.01' 7.01 < - 19.5 = '$7.02 - $19.50' 19.5 < - 46.8 = '$19.51 - $46.80' 46.8 < - 1075.01 = '$46.81 - $1075.01' ; VALUE $RXNAME ' ' = 'BLANK' '-1' = '-1 INAPPLICABLE' '-13' = '-13 VALUE SUPPRESSED' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' OTHER = '0-ZZZZZZZZZZ' ; VALUE $RXNDC ' ' = 'Blank' '-9' = '-9 NOT ASCERTAINED' '00000000000' = '00000000000' '00000000020' - '99999999996' = '00000000020-99999999996' '99999999999' = '99999999999' OTHER = 'OTHER' ; VALUE RXOF97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.01 - 5.76 = '$0.01 - $5.76' 5.76 < - 15.92 = '$5.77 - $15.92' 15.92 < - 36.49 = '$15.93 - $36.49' 36.49 < - 98.97 = '$36.50 - $98.97' ; VALUE RXOR97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.09 - 6.53 = '$0.09 - $6.53' 6.53 < - 15.8 = '$6.54 - $15.80' 15.8 < - 39.54 = '$15.81 - $39.54' 39.54 < - 435.63 = '$39.55 - $435.63' ; VALUE RXOT97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.97 - 12.545 = '$0.97 - $12.55' 12.545 < - 23.5 = '$12.56 - $23.50' 23.5 < - 48.145 = '$23.51 - $48.15' 48.145 < - 508.37 = '$48.16 - $508.37' ; VALUE RXOU97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.53 - 10.41 = '$0.53 - $10.41' 10.41 < - 26.94 = '$10.42 - $26.94' 26.94 < - 58.88 = '$26.95 - $58.88' 58.88 < - 144.77 = '$58.89 - $144.77' ; VALUE RXPV97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.01 - 8.05 = '$0.01 - $8.05' 8.05 < - 21.34 = '$8.06 - $21.34' 21.34 < - 48.7 = '$21.35 - $48.70' 48.7 < - 3810.26 = '$48.71 - $3810.26' ; VALUE RXQUANTY -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 1 - 7110 = '1 - 7110' ; VALUE $RXRECIX '0' - '99999999999999999' = 'VALID ID' ; VALUE RXSF97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.01 - 5 = '$0.01 - $5.00' 5 < - 10 = '$5.01 - $10.00' 10 < - 23.93 = '$10.01 - $23.93' 23.93 < - 4405.66 = '$23.94 - $4405.66' ; VALUE RXSL97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.3 - 8 = '$0.30 - $8.00' 8 < - 17.64 = '$8.01 - $17.64' 17.64 < - 37 = '$17.65 - $37.00' 37 < - 317.03 = '$37.01 - $317.03' ; VALUE $RXSTREN ' ' = 'BLANK' '-9' = '-9 NOT ASCERTAINED' OTHER = '0-ZZZZZZZZZZ' ; VALUE RXUNIT -9 - -9 = '-9 NOT ASCERTAINED' -8 - -8 = '-8 DK' -7 - -7 = '-7 REFUSED' 1 - 1 = '1 MG' 2 - 2 = '2 MCG' 3 - 3 = '3 MEG' 4 - 4 = '4 MG/ML' 5 - 5 = '5 GM' 6 - 6 = '6 GR' 7 - 7 = '7 %' 8 - 8 = '8 ML' 9 - 9 = '9 COMPOUNDS' 10 - 10 = '10 MG/MCG' 11 - 11 = '11 MG/MG' 12 - 12 = '12 MG/HR' 13 - 13 = '13 MEG/ML' 14 - 14 = '14 MCG/ML' 15 - 15 = '15 U/GM' 16 - 16 = '16 U/ML' 17 - 17 = '17 IU' 91 - 91 = '91 OTHER SPECIFY' ; VALUE $RXUNITO '-1' = '-1 INAPPLICABLE' '-9' = '-9 NOT ASCERTAINED' '99999' = '99999' '999999999' = '999999999' '9999999998' = '9999999998' '9999999999' = '9999999999' OTHER = 'A-ZZZZZZZZZZ' ; VALUE RXVA97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.47 - 8.57 = '$0.47 - $8.57' 8.57 < - 22.49 = '$8.58 - $22.49' 22.49 < - 49.6 = '$22.50 - $49.60' 49.6 < - 560.28 = '$49.61 - $560.28' ; VALUE RXWC97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 3.5 - 12.56 = '$3.50 - $12.56' 12.56 < - 38.6 = '$12.57 - $38.60' 38.6 < - 69.85 = '$38.61 - $69.85' 69.85 < - 342.96 = '$69.86 - $342.96' ; VALUE RXXP97X -9 - -9 = '-9 NOT ASCERTAINED' 0 - 0 = '0' 0.05 - 10.49 = '$0.05 - $10.49' 10.49 < - 24.53 = '$10.50 - $24.53' 24.53 < - 48.22 = '$24.54 - $48.22' 48.22 < - 4405.66 = '$48.23 - $4405.66' ; VALUE SAMPLE 0 - 0 = '0 NO' 1 - 1 = '1 YES' ; VALUE SELFFLG 0 - 0 = '0 NON-SELF-FILER' 1 - 1 = '1 SELF-FILER' ; VALUE VARPSU9G 1 - 34 = '1 - 34' ; VALUE VARSTR9G 1 - 254 = '1 - 254' ; VALUE WTDPER9G 0 - 0 = '0' 299.337534 - 66983.924524 = '299.337534-66983.924524' ;