SAS User File for H77D 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 (H77D.SSP) or the ASCII data file (H77D.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\H77D.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.H77D; TITLE 'List of Variables in MEPS H77D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H77D (OBS=20); TITLE 'First 20 Observations in MEPS H77D 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) H77D 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 H77D.SAS7BDAT will be created under the C:\MEPS directory when PROC XCOPY runs successfully. 4) The SAS transport file H77D.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 H77D.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\H77D.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 H77D.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\H77D.DAT'; DATA PUFLIB.H77D; INFILE IN1 LRECL=373; 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 (H77D). In the example, after the successful completion of the DATA step, a PC file named H77D.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 (373 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 H77D.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., 373 for H77D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (375 for H77D.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 (373 for H77D.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 (H77D.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\H77D.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.H77D; 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 H77D.DAT file into a SAS data set, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=373; 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 IPXP03X 9.2 @126 IPTC03X 10.2 @136 IPFSF03X 8.2 @144 IPFMR03X 9.2 @153 IPFMD03X 9.2 @162 IPFPV03X 9.2 @171 IPFVA03X 9.2 @180 IPFTR03X 8.2 @188 IPFOF03X 8.2 @196 IPFSL03X 8.2 @204 IPFWC03X 9.2 @213 IPFOR03X 8.2 @221 IPFOU03X 8.2 @229 IPFOT03X 8.2 @237 IPFXP03X 9.2 @246 IPFTC03X 10.2 @256 IPDSF03X 7.2 @263 IPDMR03X 7.2 @270 IPDMD03X 8.2 @278 IPDPV03X 8.2 @286 IPDVA03X 7.2 @293 IPDTR03X 7.2 @300 IPDOF03X 6.2 @306 IPDSL03X 7.2 @313 IPDWC03X 8.2 @321 IPDOR03X 7.2 @328 IPDOU03X 7.2 @335 IPDOT03X 6.2 @341 IPDXP03X 8.2 @349 IPDTC03X 8.2 @357 IMPFLAG 1.0 @358 PERWT03F 12.6 @370 VARSTR 3.0 @373 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. IPXP03X IPXP03XF. IPTC03X IPTC03XF. IPFSF03X IPFSF03F. IPFMR03X IPFMR03F. IPFMD03X IPFMD03F. IPFPV03X IPFPV03F. IPFVA03X IPFVA03F. IPFTR03X IPFTR03F. IPFOF03X IPFOF03F. IPFSL03X IPFSL03F. IPFWC03X IPFWC03F. IPFOR03X IPFOR03F. IPFOU03X IPFOU03F. IPFOT03X IPFOT03F. IPFXP03X IPFXP03F. IPFTC03X IPFTC03F. IPDSF03X IPDSF03F. IPDMR03X IPDMR03F. IPDMD03X IPDMD03F. IPDPV03X IPDPV03F. IPDVA03X IPDVA03F. IPDTR03X IPDTR03F. IPDOF03X IPDOF03F. IPDSL03X IPDSL03F. IPDWC03X IPDWC03F. IPDOR03X IPDOR03F. IPDOU03X IPDOU03F. IPDOT03X IPDOT03F. IPDXP03X IPDXP03F. IPDTC03X IPDTC03F. IMPFLAG IMPFLAGF. PERWT03F PERWT03F. 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' IPXP03X ='TOT EXP FOR EVENT (IPFXP03X+IPDXP03X)' IPTC03X ='TOTAL CHG FOR EVENT (IPFTC03X+IPDTC03X)' IPFSF03X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR03X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD03X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV03X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA03X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFTR03X='FACILITY AMT PD, TRICARE (IMPUTED)' IPFOF03X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL03X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC03X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR03X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU03X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT03X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP03X='FACILITY SUM PAYMENTS IPFSF03X-IPFOT03X' IPFTC03X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF03X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR03X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD03X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV03X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA03X='DOCTOR AMOUNT PD, VETERANS (IMPUTED)' IPDTR03X='DOCTOR AMOUNT PD, TRICARE (IMPUTED)' IPDOF03X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL03X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC03X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR03X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU03X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT03X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP03X='DOCTOR SUM PAYMENTS IPDSF03X-IPDOT03X' IPDTC03X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT03F='EXPENDITURE FILE PERSON WEIGHT, 2003' VARSTR ='VARIANCE ESTIMATION STRATUM, 2003' VARPSU ='VARIANCE ESTIMATION PSU, 2003' ; * 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' 2002 = '2002' 2003 = '2003' ; VALUE $IPCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE $IPCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE $IPCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE $IPCCC4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '260' = '001 - 260' ; VALUE IPDMD03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.3 - 85.21 = '$0.30 - $85.21' 85.22 - 288.28 = '$85.22 - $288.28' 288.29 - 914.01 = '$288.29 - $914.01' 914.02 - 12300.14 = '$914.02 - $12,300.14' ; VALUE IPDMR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.82 - 238.36 = '$6.82 - $238.36' 238.37 - 558.65 = '$238.37 - $558.65' 558.66 - 1135.32 = '$558.66 - $1,135.32' 1135.33 - 9529.71 = '$1,135.33 - $9,529.71' ; VALUE IPDOF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 219.52 - 300.9 = '$219.52 - $300.90' ; VALUE IPDOR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.97 - 58.18 = '$1.97 - $58.18' 58.19 - 166.62 = '$58.19 - $166.62' 166.63 - 347.37 = '$166.63 - $347.37' 347.38 - 5590.17 = '$347.38 - $5,590.17' ; VALUE IPDOT03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 53 - 435 = '$53.00 - $435.00' ; VALUE IPDOU03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.89 - 47.94 = '$1.89 - $47.94' 47.95 - 350.58 = '$47.95 - $350.58' 350.59 - 801.34 = '$350.59 - $801.34' 801.35 - 3006.89 = '$801.35 - $3,006.89' ; VALUE IPDPV03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.71 - 191.06 = '$1.71 - $191.06' 191.07 - 568.53 = '$191.07 - $568.53' 568.54 - 1799.07 = '$568.54 - $1,799.07' 1799.08 - 33138.19 = '$1,799.08 - $33,138.19' ; VALUE IPDSF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.6 - 30 = '$1.60 - $30.00' 30.01 - 88.81 = '$30.01 - $88.81' 88.82 - 288 = '$88.82 - $288.00' 288.01 - 5431 = '$288.01 - $5,431.00' ; VALUE IPDSL03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10.5 - 125.6 = '$10.50 - $125.60' 125.61 - 314.65 = '$125.61 - $314.65' 314.66 - 889.15 = '$314.66 - $889.15' 889.16 - 1750 = '$889.16 - $1,750.00' ; VALUE IPDTC03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4 - 746 = '$4.00 - $746.00' 746.01 - 1891.01 = '$746.01 - $1,891.01' 1891.02 - 4253.5 = '$1,891.02 - $4,253.50' 4253.51 - 52746.25 = '$4,253.51 - $52,746.25' ; VALUE IPDTR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.16 - 53.89 = '$2.16 - $53.89' 53.9 - 242.51 = '$53.90 - $242.51' 242.52 - 1145.08 = '$242.52 - $1,145.08' 1145.09 - 6444.25 = '$1,145.09 - $6,444.25' ; VALUE IPDVA03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10.27 - 4400 = '$10.27 - $4,400.00' ; VALUE IPDWC03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 37.71 - 121.3 = '$37.71 - $121.30' 121.31 - 737 = '$121.31 - $737.00' 737.01 - 5719.53 = '$737.01 - $5,719.53' 5719.54 - 18153.07 = '$5,719.54 - $18,153.07' ; VALUE IPDXP03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 331.07 = '$2.00 - $331.07' 331.08 - 795.45 = '$331.08 - $795.45' 795.46 - 1700 = '$795.46 - $1,700.00' 1700.01 - 33196.88 = '$1,700.01 - $33,196.88' ; 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' 2003 = '2003' ; VALUE IPFMD03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.14 - 850.25 = '$1.14 - $850.25' 850.26 - 2336.92 = '$850.26 - $2,336.92' 2336.93 - 4478.72 = '$2,336.93 - $4,478.72' 4478.73 - 140208.52 = '$4,478.73 - $140,208.52' ; VALUE IPFMR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.54 - 3039.79 = '$2.54 - $3,039.79' 3039.8 - 5193.05 = '$3,039.80 - $5,193.05' 5193.06 - 9786.53 = '$5,193.06 - $9,786.53' 9786.54 - 125608.99 = '$9,786.54 - $125,608.99' ; VALUE IPFOF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1805.7 - 30390.64 = '$1,805.70 - $30,390.64' ; VALUE IPFOR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.13 - 799.77 = '$5.13 - $799.77' 799.78 - 841.89 = '$799.78 - $841.89' 841.9 - 2965.33 = '$841.90 - $2,965.33' 2965.34 - 47200 = '$2,965.34 - $47,200.00' ; VALUE IPFOT03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 51.26 - 604.27 = '$51.26 - $604.27' 604.28 - 2251.54 = '$604.28 - $2,251.54' 2251.55 - 6111.38 = '$2,251.55 - $6,111.38' 6111.39 - 29956.22 = '$6,111.39 - $29,956.22' ; VALUE IPFOU03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 30.84 - 1407.4 = '$30.84 - $1,407.40' 1407.41 - 2459.12 = '$1,407.41 - $2,459.12' 2459.13 - 4122.02 = '$2,459.13 - $4,122.02' 4122.03 - 12594.61 = '$4,122.03 - $12,594.61' ; VALUE IPFPV03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.2 - 858.4 = '$1.20 - $858.40' 858.41 - 2825.95 = '$858.41 - $2,825.95' 2825.96 - 6269.65 = '$2,825.96 - $6,269.65' 6269.66 - 453475.25 = '$6,269.66 - $453,475.25' ; VALUE IPFSF03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 43.86 = '$1.00 - $43.86' 43.87 - 209.42 = '$43.87 - $209.42' 209.43 - 520.7 = '$209.43 - $520.70' 520.71 - 57898 = '$520.71 - $57,898.00' ; VALUE IPFSL03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1088.35 - 2082.23 = '$1,088.35 - $2,082.23' 2082.24 - 3741.8 = '$2,082.24 - $3,741.80' 3741.81 - 10923.43 = '$3,741.81 - $10,923.43' 10923.44 - 21305.9 = '$10,923.44 - $21,305.90' ; VALUE IPFTC03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10 - 5343.9 = '$10.00 - $5,343.90' 5343.91 - 9980 = '$5,343.91 - $9,980.00' 9980.01 - 20555.93 = '$9,980.01 - $20,555.93' 20555.94 - 1365836.55 = '$20,555.94 - $1,365,836.55' ; VALUE IPFTR03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 104.71 - 840 = '$104.71 - $840.00' 840.01 - 1310.46 = '$840.01 - $1,310.46' 1310.47 - 3466.74 = '$1,310.47 - $3,466.74' 3466.75 - 79197.52 = '$3,466.75 - $79,197.52' ; VALUE IPFVA03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.18 - 3310.68 = '$7.18 - $3,310.68' 3310.69 - 8820 = '$3,310.69 - $8,820.00' 8820.01 - 23878.32 = '$8,820.01 - $23,878.32' 23878.33 - 213758.93 = '$23,878.33 - $213,758.93' ; VALUE IPFWC03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 142.89 - 2459.64 = '$142.89 - $2,459.64' 2459.65 - 8746.73 = '$2,459.65 - $8,746.73' 8746.74 - 19658.82 = '$8,746.74 - $19,658.82' 19658.83 - 628631.24 = '$19,658.83 - $628,631.24' ; VALUE IPFXP03F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.54 - 2448 = '$2.54 - $2,448.00' 2448.01 - 4437.71 = '$2,448.01 - $4,437.71' 4437.72 - 8707.35 = '$4,437.72 - $8,707.35' 8707.36 - 628631.24 = '$8,707.36 - $628,631.24' ; 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 IPTC03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10 - 6714.3 = '$10.00 - $6,714.30' 6714.31 - 12379.51 = '$6,714.31 - $12,379.51' 12379.52 - 24259.68 = '$12,379.52 - $24,259.68' 24259.69 - 1386326.55 = '$24,259.69 - $1,386,326.55' ; VALUE IPXP03XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 2986.09 = '$2.00 - $2,986.09' 2986.1 - 5368.5 = '$2,986.10 - $5,368.50' 5368.51 - 9954.83 = '$5,368.51 - $9,954.83' 9954.84 - 648408.48 = '$9,954.84 - $648,408.48' ; 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 - 60 = '1 - 60 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 - 190 = '1 - 190 NUMBER OF NIGHTS' ; VALUE PERWT03F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 640.017535 - 57180.15692 = '640.017535 - 57180.156920 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' ;