SAS User File for H85D 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 (H85D.SSP) or the ASCII data file (H85D.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\H85D.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.H85D; TITLE 'List of Variables in MEPS H85D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H85D (OBS=20); TITLE 'First 20 Observations in MEPS H85D 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) H85D 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 H85D.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H85D.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 H85D.DAT to a SAS data set as described in Section B. ADDITIONAL 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\H85D.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 H85D.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\H85D.DAT'; DATA PUFLIB.H85D; INFILE IN1 LRECL=371; 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 (H85D). In the example, after the successful completion of the DATA step, a PC file named H85D.SAS7BDAT 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 (371 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 H85D.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., 371 for H85D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (373 for H85D.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 (371 for H85D.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 (H85D.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. ADDITIONAL 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 SAS Transport file - e.g., LIBNAME PUFLIB 'C:\MEPS'; FILENAME IN1 'C:\DOWNLOAD\H85D.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT RUN; 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.H85D; 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 'SAS7BDAT') and format libraries (file name extension is 'SAS7BCAT') 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.SAS7BCAT. 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 H85D.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=371; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 EVENTRN 1.0 @30 ERHEVIDX $12.0 @42 FFEEIDX $12.0 @54 MPCDATA 1.0 @55 IPBEGYR 4.0 @59 IPBEGMM 2.0 @61 IPBEGDD 2.0 @63 IPENDYR 4.0 @67 IPENDMM 2.0 @69 IPENDDD 2.0 @71 NUMNIGHX 3.0 @74 NUMNIGHT 2.0 @76 EMERROOM 2.0 @78 SPECCOND 2.0 @80 RSNINHOS 2.0 @82 ANYOPER 2.0 @84 VAPLACE 1.0 @85 IPICD1X $3.0 @88 IPICD2X $3.0 @91 IPICD3X $3.0 @94 IPICD4X $3.0 @97 IPPRO1X $2.0 @99 IPPRO2X $2.0 @101 IPCCC1X $3.0 @104 IPCCC2X $3.0 @107 IPCCC3X $3.0 @110 IPCCC4X $3.0 @113 DSCHPMED 2.0 @115 FFIPTYPE 2.0 @117 IPXP04X 9.2 @126 IPTC04X 10.2 @136 IPFSF04X 8.2 @144 IPFMR04X 9.2 @153 IPFMD04X 9.2 @162 IPFPV04X 9.2 @171 IPFVA04X 8.2 @179 IPFTR04X 8.2 @187 IPFOF04X 8.2 @195 IPFSL04X 8.2 @203 IPFWC04X 8.2 @211 IPFOR04X 8.2 @219 IPFOU04X 8.2 @227 IPFOT04X 8.2 @235 IPFXP04X 9.2 @244 IPFTC04X 9.2 @253 IPDSF04X 8.2 @261 IPDMR04X 8.2 @269 IPDMD04X 8.2 @277 IPDPV04X 8.2 @285 IPDVA04X 7.2 @292 IPDTR04X 7.2 @299 IPDOF04X 6.2 @305 IPDSL04X 7.2 @312 IPDWC04X 7.2 @319 IPDOR04X 7.2 @326 IPDOU04X 7.2 @333 IPDOT04X 6.2 @339 IPDXP04X 8.2 @347 IPDTC04X 8.2 @355 IMPFLAG 1.0 @356 PERWT04F 12.6 @368 VARSTR 3.0 @371 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. ERHEVIDX $ERHEIDF. FFEEIDX $FFEEIDX. MPCDATA MPCDATAF. IPBEGYR IPBEGYRF. IPBEGMM IPBEGMMF. IPBEGDD IPBEGDDF. IPENDYR IPENDYRF. IPENDMM IPENDMMF. IPENDDD IPENDDF. NUMNIGHX NUMNIGHX. NUMNIGHT NUMNIGHF. EMERROOM EMERROOF. SPECCOND SPECCONF. RSNINHOS RSNINHOF. ANYOPER ANYOPERF. VAPLACE VAPLACEF. IPICD1X $IPICD1X. IPICD2X $IPICD2X. IPICD3X $IPICD3X. IPICD4X $IPICD4X. IPPRO1X $IPPRO1X. IPPRO2X $IPPRO2X. IPCCC1X $IPCCC1X. IPCCC2X $IPCCC2X. IPCCC3X $IPCCC3X. IPCCC4X $IPCCC4X. DSCHPMED DSCHPMEF. FFIPTYPE FFIPTYPF. IPXP04X IPXP04XF. IPTC04X IPTC04XF. IPFSF04X IPFSF04F. IPFMR04X IPFMR04F. IPFMD04X IPFMD04F. IPFPV04X IPFPV04F. IPFVA04X IPFVA04F. IPFTR04X IPFTR04F. IPFOF04X IPFOF04F. IPFSL04X IPFSL04F. IPFWC04X IPFWC04F. IPFOR04X IPFOR04F. IPFOU04X IPFOU04F. IPFOT04X IPFOT04F. IPFXP04X IPFXP04F. IPFTC04X IPFTC04F. IPDSF04X IPDSF04F. IPDMR04X IPDMR04F. IPDMD04X IPDMD04F. IPDPV04X IPDPV04F. IPDVA04X IPDVA04F. IPDTR04X IPDTR04F. IPDOF04X IPDOF04F. IPDSL04X IPDSL04F. IPDWC04X IPDWC04F. IPDOR04X IPDOR04F. IPDOU04X IPDOU04F. IPDOT04X IPDOT04F. IPDXP04X IPDXP04F. IPDTC04X IPDTC04F. IMPFLAG IMPFLAGF. PERWT04F PERWT04F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' PID ='PERSON NUMBER' DUPERSID='PERSON ID (DUID + PID)' EVNTIDX ='EVENT ID' EVENTRN ='EVENT ROUND NUMBER' ERHEVIDX='EVENT ID FOR CORRESPONDING EMER RM VISIT' FFEEIDX ='FLAT FEE ID' MPCDATA ='MPC DATA FLAG' IPBEGYR ='EVENT START DATE - YEAR' IPBEGMM ='EVENT START DATE - MONTH' IPBEGDD ='EVENT START DATE - DAY' IPENDYR ='EVENT END DATE - YEAR' IPENDMM ='EVENT END DATE - MONTH' IPENDDD ='EVENT END DATE - DAY' NUMNIGHX='# OF NIGHTS IN HOSPITAL - EDITED/IMPUTED' NUMNIGHT='NUMBER OF NIGHTS STAYED AT PROVIDER' EMERROOM='DID STAY BEGIN WITH EMERGENCY ROOM VISIT' SPECCOND='HOSPITAL STAY RELATED TO CONDITION' RSNINHOS='REASON ENTERED HOSPITAL' ANYOPER ='ANY OPERATIONS OR SURGERIES PERFORMED' VAPLACE ='VA FACILITY FLAG' IPICD1X ='3-DIGIT ICD-9-CM CONDITION CODE' IPICD2X ='3-DIGIT ICD-9-CM CONDITION CODE' IPICD3X ='3-DIGIT ICD-9-CM CONDITION CODE' IPICD4X ='3-DIGIT ICD-9-CM CONDITION CODE' IPPRO1X ='2-DIGIT ICD-9-CM PROCEDURE CODE' IPPRO2X ='2-DIGIT ICD-9-CM PROCEDURE CODE' IPCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' IPCCC4X ='MODIFIED CLINICAL CLASSIFICATION CODE' DSCHPMED='MEDICINES PRESCRIBED AT DISCHARGE' FFIPTYPE='FLAT FEE BUNDLE' IPXP04X ='TOT EXP FOR EVENT (IPFXP04X+IPDXP04X)' IPTC04X ='TOTAL CHG FOR EVENT (IPFTC04X+IPDTC04X)' IPFSF04X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR04X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD04X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV04X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA04X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFTR04X='FACILITY AMT PD, TRICARE (IMPUTED)' IPFOF04X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL04X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC04X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR04X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU04X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT04X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP04X='FACILITY SUM PAYMENTS IPFSF04X-IPFOT04X' IPFTC04X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF04X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR04X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD04X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV04X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA04X='DOCTOR AMOUNT PD, VETERANS (IMPUTED)' IPDTR04X='DOCTOR AMOUNT PD, TRICARE (IMPUTED)' IPDOF04X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL04X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC04X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR04X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU04X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT04X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP04X='DOCTOR SUM PAYMENTS IPDSF04X-IPDOT04X' IPDTC04X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT04F='EXPENDITURE FILE PERSON WEIGHT, 2004' VARSTR ='VARIANCE ESTIMATION STRATUM, 2004' VARPSU ='VARIANCE ESTIMATION PSU, 2004' ; * VALUE STATEMENTS; VALUE ANYOPERF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE DSCHPMEF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EMERROOF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE $ERHEIDF '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE $FFEEIDX '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE FFIPTYPF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 FLAT FEE STEM' 2 = '2 FLAT FEE LEAF' ; VALUE IMPFLAGF 0 = '0 NOT ELIGIBLE FOR IMPUTATION' 1 = '1 COMPLETE HC DATA' 2 = '2 COMPLETE MPC DATA' 3 = '3 FULLY IMPUTED' 4 = '4 PARTIALLY IMPUTED' 5 = '5 CAPITATION IMPUTATION' ; VALUE IPBEGDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE IPBEGMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE IPBEGYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2003 = '2003' 2004 = '2004' ; VALUE $IPCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $IPCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $IPCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE $IPCCC4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '663' = '650-663' ; VALUE IPDMD04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 85.63 = '$1.00 - $85.63' 85.64 - 249.33 = '$85.64 - $249.33' 249.34 - 823.29 = '$249.34 - $823.29' 823.3 - 12453.85 = '$823.30 - $12,453.85' ; VALUE IPDMR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.46 - 251.73 = '$0.46 - $251.73' 251.74 - 541.92 = '$251.74 - $541.92' 541.93 - 1169.08 = '$541.93 - $1,169.08' 1169.09 - 17323.34 = '$1,169.09 - $17,323.34' ; VALUE IPDOF04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 250 = '$250.00' ; VALUE IPDOR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.43 - 63.4 = '$0.43 - $63.40' 63.41 - 169.28 = '$63.41 - $169.28' 169.29 - 437.9 = '$169.29 - $437.90' 437.91 - 6955.95 = '$437.91 - $6,955.95' ; VALUE IPDOT04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 25 - 28.5 = '$25.00 - $28.50' 28.51 - 108.93 = '$28.51 - $108.93' 108.94 - 122.82 = '$108.94 - $122.82' 122.83 - 160.04 = '$122.83 - $160.04' ; VALUE IPDOU04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.6 - 94.68 = '$0.60 - $94.68' 94.69 - 341.92 = '$94.69 - $341.92' 341.93 - 852.77 = '$341.93 - $852.77' 852.78 - 2037.52 = '$852.78 - $2,037.52' ; VALUE IPDPV04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 179 = '$0.01 - $179.00' 179.01 - 583.14 = '$179.01 - $583.14' 583.15 - 1868.12 = '$583.15 - $1,868.12' 1868.13 - 14580.61 = '$1,868.13 - $14,580.61' ; VALUE IPDSF04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.5 - 29.55 = '$0.50 - $29.55' 29.56 - 86.99 = '$29.56 - $86.99' 87 - 268.91 = '$87.00 - $268.91' 268.92 - 10303 = '$268.92 - $10,303.00' ; VALUE IPDSL04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.14 - 29.4 = '$3.14 - $29.40' 29.41 - 137.5 = '$29.41 - $137.50' 137.51 - 500.71 = '$137.51 - $500.71' 500.72 - 1640 = '$500.72 - $1,640.00' ; VALUE IPDTC04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10 - 749 = '$10.00 - $749.00' 749.01 - 1924.18 = '$749.01 - $1,924.18' 1924.19 - 4568.9 = '$1,924.19 - $4,568.90' 4568.91 - 93785.88 = '$4,568.91 - $93,785.88' ; VALUE IPDTR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.38 - 48.69 = '$2.38 - $48.69' 48.7 - 178.75 = '$48.70 - $178.75' 178.76 - 627.63 = '$178.76 - $627.63' 627.64 - 3746.2 = '$627.64 - $3,746.20' ; VALUE IPDVA04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.28 - 10.88 = '$3.28 - $10.88' 10.89 - 410.66 = '$10.89 - $410.66' 410.67 - 2902.72 = '$410.67 - $2,902.72' 2902.73 - 5664.65 = '$2,902.73 - $5,664.65' ; VALUE IPDWC04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 17 - 496.76 = '$17.00 - $496.76' 496.77 - 1477.69 = '$496.77 - $1,477.69' 1477.7 - 2944.3 = '$1,477.70 - $2,944.30' 2944.31 - 6153.73 = '$2,944.31 - $6,153.73' ; VALUE IPDXP04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.95 - 326.56 = '$3.95 - $326.56' 326.57 - 809.71 = '$326.57 - $809.71' 809.72 - 1731.23 = '$809.72 - $1,731.23' 1731.24 - 21634.45 = '$1,731.24 - $21,634.45' ; VALUE IPENDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE IPENDMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE IPENDYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2004 = '2004' ; VALUE IPFMD04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.93 - 881.93 = '$0.93 - $881.93' 881.94 - 2387.59 = '$881.94 - $2,387.59' 2387.6 - 4370.73 = '$2,387.60 - $4,370.73' 4370.74 - 637900.13 = '$4,370.74 - $637,900.13' ; VALUE IPFMR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.06 - 3065.08 = '$7.06 - $3,065.08' 3065.09 - 4953.08 = '$3,065.09 - $4,953.08' 4953.09 - 9773.21 = '$4,953.09 - $9,773.21' 9773.22 - 169356.11 = '$9,773.22 - $169,356.11' ; VALUE IPFOF04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 711.5 - 31876.74 = '$711.50 - $31,876.74' ; VALUE IPFOR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.64 - 873.09 = '$1.64 - $873.09' 873.1 - 881.08 = '$873.10 - $881.08' 881.09 - 3059.04 = '$881.09 - $3,059.04' 3059.05 - 44007.29 = '$3,059.05 - $44,007.29' ; VALUE IPFOT04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 325.68 - 786.68 = '$325.68 - $786.68' 786.69 - 4637.17 = '$786.69 - $4,637.17' 4637.18 - 9720.19 = '$4,637.18 - $9,720.19' 9720.2 - 37714.89 = '$9,720.20 - $37,714.89' ; VALUE IPFOU04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 94.55 - 1550 = '$94.55 - $1,550.00' 1550.01 - 2595.02 = '$1,550.01 - $2,595.02' 2595.03 - 4204.82 = '$2,595.03 - $4,204.82' 4204.83 - 37901.11 = '$4,204.83 - $37,901.11' ; VALUE IPFPV04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.64 - 881.08 = '$1.64 - $881.08' 881.09 - 2864.03 = '$881.09 - $2,864.03' 2864.04 - 6358.5 = '$2,864.04 - $6,358.50' 6358.51 - 185568.2 = '$6,358.51 - $185,568.20' ; VALUE IPFSF04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.28 - 56.54 = '$0.28 - $56.54' 56.55 - 250 = '$56.55 - $250.00' 250.01 - 590.38 = '$250.01 - $590.38' 590.39 - 12500 = '$590.39 - $12,500.00' ; VALUE IPFSL04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 600 - 31895.1 = '$600.00 - $31,895.10' ; VALUE IPFTC04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7 - 5658.64 = '$7.00 - $5,658.64' 5658.65 - 10597.4 = '$5,658.65 - $10,597.40' 10597.41 - 22456.6 = '$10,597.41 - $22,456.60' 22456.61 - 981384.82 = '$22,456.61 - $981,384.82' ; VALUE IPFTR04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.22 - 87982.73 = '$8.22 - $87,982.73' ; VALUE IPFVA04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 69.25 - 1947.19 = '$69.25 - $1,947.19' 1947.2 - 5730.4 = '$1,947.20 - $5,730.40' 5730.41 - 11872.88 = '$5,730.41 - $11,872.88' 11872.89 - 67721.76 = '$11,872.89 - $67,721.76' ; VALUE IPFWC04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 149.88 - 14461.79 = '$149.88 - $14,461.79' ; VALUE IPFXP04F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.16 - 2569.81 = '$5.16 - $2,569.81' 2569.82 - 4538.55 = '$2,569.82 - $4,538.55' 4538.56 - 8736 = '$4,538.56 - $8,736.00' 8736.01 - 637900.13 = '$8,736.01 - $637,900.13' ; VALUE $IPICD1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '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' 'V01' - 'V83' = 'V01 - V83' ; VALUE $IPICD2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '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' 'V01' - 'V83' = 'V01 - V83' ; VALUE $IPICD3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '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' 'V01' - 'V83' = 'V01 - V83' ; VALUE $IPICD4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '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' 'V01' - 'V83' = 'V01 - V83' ; VALUE $IPPRO1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '01' - '05' = '01 - 05' '06' - '07' = '06 - 07' '08' - '16' = '08 - 16' '18' - '20' = '18 - 20' '21' - '29' = '21 - 29' '30' - '34' = '30 - 34' '35' - '39' = '35 - 39' '40' - '41' = '40 - 41' '42' - '54' = '42 - 54' '55' - '59' = '55 - 59' '60' - '64' = '60 - 64' '65' - '71' = '65 - 71' '72' - '75' = '72 - 75' '76' - '84' = '76 - 84' '85' - '86' = '85 - 86' '87' - '99' = '87 - 99' ; VALUE $IPPRO2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '01' - '05' = '01 - 05' '06' - '07' = '06 - 07' '08' - '16' = '08 - 16' '18' - '20' = '18 - 20' '21' - '29' = '21 - 29' '30' - '34' = '30 - 34' '35' - '39' = '35 - 39' '40' - '41' = '40 - 41' '42' - '54' = '42 - 54' '55' - '59' = '55 - 59' '60' - '64' = '60 - 64' '65' - '71' = '65 - 71' '72' - '75' = '72 - 75' '76' - '84' = '76 - 84' '85' - '86' = '85 - 86' '87' - '99' = '87 - 99' ; VALUE IPTC04XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 43.99 - 7055.78 = '$43.99 - $7,055.78' 7055.79 - 13131.63 = '$7,055.79 - $13,131.63' 13131.64 - 26465.2 = '$13,131.64 - $26,465.20' 26465.21 - 1005358.82 = '$26,465.21 - $1,005,358.82' ; VALUE IPXP04XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 18.93 - 3113.19 = '$18.93 - $3,113.19' 3113.2 - 5401 = '$3,113.20 - $5,401.00' 5401.01 - 9937.99 = '$5,401.01 - $9,937.99' 9938 - 645378.22 = '$9,938.00 - $645,378.22' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE NUMNIGHF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 75 = '1 - 75 NUMBER OF NIGHTS' ; VALUE NUMNIGHX (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0 NUMBER OF NIGHTS' 1 - 365 = '1 - 365 NUMBER OF NIGHTS' ; VALUE PERWT04F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 589.374718 - 53008.347967 = '589.374718 - 53008.347967 WEIGHT' ; VALUE PID OTHER = 'VALID ID' ; VALUE RSNINHOF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 OPERATION OR SURGICAL PROCEDURE' 2 = '2 TREATMENT/THERAPY' 3 = '3 DIAGNOSTIC TESTS ONLY' 4 = '4 GIVE BIRTH TO A BABY (MOTHER)' 5 = '5 TO BE BORN (BABY)' 91 = '91 OTHER (SPECIFY)' ; VALUE SPECCONF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE VAPLACEF -1 = '-1 INAPPLICABLE' 0 = '0 NO' 1 = '1 YES' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1 - 203 = '1 - 203' ;