SAS User File for H110D 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 (H110D.SSP) or the ASCII data file (H110D.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 OR HIGHER. ****************************************************************************** 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 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 SAS program that can be used to convert the SAS transport file to a permanent SAS dataset (in a Windows environment, with SAS V8 or higher). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H110D.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; SAS transport files, SAS data files, and SAS program files each should be stored in separate locations (directory names). Storing different types of SAS files in one location can cause errors with converting or retrieving data. Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H110D; TITLE 'List of Variables in MEPS H110D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H110D (OBS=20); TITLE 'First 20 Observations in MEPS H110D 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) If you have an error reading a SAS data file you created, the problem may be a result of where you are storing and/or how you are retrieving the data. First check the data library for multiple releases of SAS files (e.g., V8 or higher with file extensions of '.SAS7BDAT' and V6 with file extensions of '.SD2') stored in the same location. a) You can avoid errors when reading these files by including the SAS release within the LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS\SASDATA'; or b) Store SAS data files with different file extensions such as .SD2 and .SAS7BDAT, in separate folders (do not co-mingle V8 and V6 files in the same folder); or c) When importing transport files, output the SAS dataset to a different library than the one which contains the downloaded SAS transport file - e.g., LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\Hxxx.SSP'; PROC XCOPY IN=IN1 OUT=PUBLIB IMPORT; RUN; 2) The names used in the LIBNAME and FILENAME statements shown above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary aliases. 3) 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. 4) H110D 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 H110D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H110D.SSP was created from a SAS V9 data file, using PROC COPY. This file has been tested for use with SAS V8 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 H110D.DAT to a SAS dataset as described in Section B. 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 H110D.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\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H110D.DAT'; DATA PUFLIB.H110D; INFILE IN1 LRECL=363; 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 the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning an internal SAS dataset name (H110D). In the example, after the successful completion of the DATA step, a PC file named H110D.SAS7BDAT would have been created in the C:\MEPS\SASDATA 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 (363 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 H110D.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., 363 for H110D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (365 for H110D.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 (363 for H110D.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 (H110D.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. See Section A.1 above for tips on retrieving and storing the permanent SAS data files. 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\SASDATA'; 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\SASDATA'; OPTIONS FMTSEARCH=(PUFLIB); PROC FREQ DATA=PUFLIB.H110D; TABLES .... / LIST MISSING; FORMAT varnam1 fmtnam1. Varnam2 fmtnam2. .... ; * to user: substitute varnam1 and fmtnam1 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' for SAS V8 or higher and 'SD2' for SAS V6) and format libraries (file name extension is 'SAS7BCAT' for SAS V8 or higher and 'SC2' for SAS V6) 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 generates 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 types 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 dataset 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 H110D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=363; 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 PANEL 2.0 @44 MPCDATA 1.0 @45 IPBEGYR 4.0 @49 IPBEGMM 2.0 @51 IPBEGDD 2.0 @53 IPENDYR 4.0 @57 IPENDMM 2.0 @59 IPENDDD 2.0 @61 NUMNIGHX 3.0 @64 NUMNIGHT 2.0 @66 EMERROOM 2.0 @68 SPECCOND 2.0 @70 RSNINHOS 2.0 @72 ANYOPER 2.0 @74 IPICD1X $3.0 @77 IPICD2X $3.0 @80 IPICD3X $3.0 @83 IPICD4X $3.0 @86 IPPRO1X $2.0 @88 IPPRO2X $2.0 @90 IPCCC1X $3.0 @93 IPCCC2X $3.0 @96 IPCCC3X $3.0 @99 IPCCC4X $3.0 @102 DSCHPMED 2.0 @104 IPXP07X 9.2 @113 IPTC07X 10.2 @123 IPFSF07X 8.2 @131 IPFMR07X 9.2 @140 IPFMD07X 9.2 @149 IPFPV07X 9.2 @158 IPFVA07X 8.2 @166 IPFTR07X 8.2 @174 IPFOF07X 8.2 @182 IPFSL07X 8.2 @190 IPFWC07X 8.2 @198 IPFOR07X 8.2 @206 IPFOU07X 9.2 @215 IPFOT07X 9.2 @224 IPFXP07X 9.2 @233 IPFTC07X 10.2 @243 IPDSF07X 7.2 @250 IPDMR07X 8.2 @258 IPDMD07X 8.2 @266 IPDPV07X 8.2 @274 IPDVA07X 6.2 @280 IPDTR07X 7.2 @287 IPDOF07X 5.2 @292 IPDSL07X 7.2 @299 IPDWC07X 8.2 @307 IPDOR07X 8.2 @315 IPDOU07X 7.2 @322 IPDOT07X 8.2 @330 IPDXP07X 8.2 @338 IPDTC07X 8.2 @346 IMPFLAG 1.0 @347 PERWT07F 12.6 @359 VARSTR 4.0 @363 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. ERHEVIDX $ERHEIDF. PANEL PANELF. MPCDATA MPCDATAF. IPBEGYR IPBEGYRF. IPBEGMM IPBEGMMF. IPBEGDD IPBEGDDF. IPENDYR IPENDYRF. IPENDMM IPENDMMF. IPENDDD IPENDDDF. NUMNIGHX NUMNIGHX. NUMNIGHT NUMNIGHF. EMERROOM EMERROOF. SPECCOND SPECCONF. RSNINHOS RSNINHOF. ANYOPER ANYOPERF. IPICD1X $IPICD1X. IPICD2X $IPICD2X. IPICD3X $IPICD3X. IPICD4X $IPICD4X. IPPRO1X $IPPRO1X. IPPRO2X $IPPRO2X. IPCCC1X $IPCCC1X. IPCCC2X $IPCCC2X. IPCCC3X $IPCCC3X. IPCCC4X $IPCCC4X. DSCHPMED DSCHPMEF. IPXP07X IPXP07XF. IPTC07X IPTC07XF. IPFSF07X IPFSF07F. IPFMR07X IPFMR07F. IPFMD07X IPFMD07F. IPFPV07X IPFPV07F. IPFVA07X IPFVA07F. IPFTR07X IPFTR07F. IPFOF07X IPFOF07F. IPFSL07X IPFSL07F. IPFWC07X IPFWC07F. IPFOR07X IPFOR07F. IPFOU07X IPFOU07F. IPFOT07X IPFOT07F. IPFXP07X IPFXP07F. IPFTC07X IPFTC07F. IPDSF07X IPDSF07F. IPDMR07X IPDMR07F. IPDMD07X IPDMD07F. IPDPV07X IPDPV07F. IPDVA07X IPDVA07F. IPDTR07X IPDTR07F. IPDOF07X IPDOF07F. IPDSL07X IPDSL07F. IPDWC07X IPDWC07F. IPDOR07X IPDOR07F. IPDOU07X IPDOU07F. IPDOT07X IPDOT07F. IPDXP07X IPDXP07F. IPDTC07X IPDTC07F. IMPFLAG IMPFLAGF. PERWT07F PERWT07F. 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' PANEL ='PANEL NUMBER' 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' 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' IPXP07X ='TOT EXP FOR EVENT (IPFXP07X+IPDXP07X)' IPTC07X ='TOTAL CHG FOR EVENT (IPFTC07X+IPDTC07X)' IPFSF07X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR07X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD07X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV07X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA07X='FACILITY AMT PD, VETERANS (IMPUTED)' IPFTR07X='FACILITY AMT PD,TRICARE/CHAMPVA(IMPUTED)' IPFOF07X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL07X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC07X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR07X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU07X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT07X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP07X='FACILITY SUM PAYMENTS IPFSF07X-IPFOT07X' IPFTC07X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF07X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR07X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD07X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV07X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA07X='DOCTOR AMOUNT PD, VETERANS (IMPUTED)' IPDTR07X='DOCTOR AMT PD, TRICARE/CHAMPVA (IMPUTED)' IPDOF07X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL07X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC07X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR07X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU07X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT07X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP07X='DOCTOR SUM PAYMENTS IPDSF07X-IPDOT07X' IPDTC07X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT07F='EXPENDITURE FILE PERSON WEIGHT, 2007' VARSTR ='VARIANCE ESTIMATION STRATUM, 2007' VARPSU ='VARIANCE ESTIMATION PSU, 2007' ; * 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 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' 2006 = '2006' 2007 = '2007' ; VALUE $IPCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $IPCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $IPCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $IPCCC4X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE IPDMD07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.05 - 110.97 = '$0.05 - $110.97' 110.98 - 318.6 = '$110.98 - $318.60' 318.61 - 969.47 = '$318.61 - $969.47' 969.48 - 20154.24 = '$969.48 - $20,154.24' ; VALUE IPDMR07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.34 - 323.58 = '$6.34 - $323.58' 323.59 - 643.34 = '$323.59 - $643.34' 643.35 - 1388.78 = '$643.35 - $1,388.78' 1388.79 - 17566.7 = '$1,388.79 - $17,566.70' ; VALUE IPDOF07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 89.89 = '$1.00 - $89.89' ; VALUE IPDOR07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.14 - 89.58 = '$0.14 - $89.58' 89.59 - 207.69 = '$89.59 - $207.69' 207.7 - 598.06 = '$207.70 - $598.06' 598.07 - 10544.38 = '$598.07 - $10,544.38' ; VALUE IPDOT07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15.52 - 11372.36 = '$15.52 - $11,372.36' ; VALUE IPDOU07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.26 - 78.32 = '$0.26 - $78.32' 78.33 - 302.17 = '$78.33 - $302.17' 302.18 - 1100.8 = '$302.18 - $1,100.80' 1100.81 - 2771.16 = '$1,100.81 - $2,771.16' ; VALUE IPDPV07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.34 - 188.1 = '$0.34 - $188.10' 188.11 - 755.16 = '$188.11 - $755.16' 755.17 - 2356.79 = '$755.17 - $2,356.79' 2356.8 - 24794.44 = '$2,356.80 - $24,794.44' ; VALUE IPDSF07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.28 - 30 = '$0.28 - $30.00' 30.01 - 110 = '$30.01 - $110.00' 110.01 - 328 = '$110.01 - $328.00' 328.01 - 6210 = '$328.01 - $6,210.00' ; VALUE IPDSL07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5.53 - 50.88 = '$5.53 - $50.88' 50.89 - 350.51 = '$50.89 - $350.51' 350.52 - 886.01 = '$350.52 - $886.01' 886.02 - 2099.12 = '$886.02 - $2,099.12' ; VALUE IPDTC07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.08 - 989 = '$8.08 - $989.00' 989.01 - 2456.66 = '$989.01 - $2,456.66' 2456.67 - 5133 = '$2,456.67 - $5,133.00' 5133.01 - 73165.88 = '$5,133.01 - $73,165.88' ; VALUE IPDTR07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.63 - 95.88 = '$1.63 - $95.88' 95.89 - 228.04 = '$95.89 - $228.04' 228.05 - 638.18 = '$228.05 - $638.18' 638.19 - 2474.15 = '$638.19 - $2,474.15' ; VALUE IPDVA07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.94 - 46 = '$1.94 - $46.00' 46.01 - 111 = '$46.01 - $111.00' 111.01 - 234.24 = '$111.01 - $234.24' 234.25 - 853.55 = '$234.25 - $853.55' ; VALUE IPDWC07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 210.34 - 12802.44 = '$210.34 - $12,802.44' ; VALUE IPDXP07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.2 - 385.73 = '$6.20 - $385.73' 385.74 - 944.82 = '$385.74 - $944.82' 944.83 - 2067.18 = '$944.83 - $2,067.18' 2067.19 - 24794.44 = '$2,067.19 - $24,794.44' ; VALUE IPENDDDF -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' 2007 = '2007' ; VALUE IPFMD07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.82 - 1022.85 = '$1.82 - $1,022.85' 1022.86 - 2833.35 = '$1,022.86 - $2,833.35' 2833.36 - 5568.83 = '$2,833.36 - $5,568.83' 5568.84 - 365331.52 = '$5,568.84 - $365,331.52' ; VALUE IPFMR07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 7.43 - 3870.53 = '$7.43 - $3,870.53' 3870.54 - 6566.98 = '$3,870.54 - $6,566.98' 6566.99 - 10972.7 = '$6,566.99 - $10,972.70' 10972.71 - 178508.7 = '$10,972.71 - $178,508.70' ; VALUE IPFOF07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 147.4 - 40682.55 = '$147.40 - $40,682.55' ; VALUE IPFOR07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.33 - 72215.52 = '$1.33 - $72,215.52' ; VALUE IPFOT07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 325.91 - 2013.95 = '$325.91 - $2,013.95' 2013.96 - 9079.94 = '$2,013.96 - $9,079.94' 9079.95 - 17351.65 = '$9,079.95 - $17,351.65' 17351.66 - 196312.25 = '$17,351.66 - $196,312.25' ; VALUE IPFOU07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.82 - 1557.27 = '$1.82 - $1,557.27' 1557.28 - 3564.9 = '$1,557.28 - $3,564.90' 3564.91 - 5653.53 = '$3,564.91 - $5,653.53' 5653.54 - 140000 = '$5,653.54 - $140,000.00' ; VALUE IPFPV07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.58 - 992 = '$2.58 - $992.00' 992.01 - 3835.78 = '$992.01 - $3,835.78' 3835.79 - 8977.68 = '$3,835.79 - $8,977.68' 8977.69 - 331295.97 = '$8,977.69 - $331,295.97' ; VALUE IPFSF07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 100 = '$1.00 - $100.00' 100.01 - 250 = '$100.01 - $250.00' 250.01 - 627.1 = '$250.01 - $627.10' 627.11 - 60014.2 = '$627.11 - $60,014.20' ; VALUE IPFSL07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3157.6 - 3896.31 = '$3,157.60 - $3,896.31' 3896.32 - 7763.87 = '$3,896.32 - $7,763.87' 7763.88 - 15027.56 = '$7,763.88 - $15,027.56' 15027.57 - 38162 = '$15,027.57 - $38,162.00' ; VALUE IPFTC07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15.52 - 7431.59 = '$15.52 - $7,431.59' 7431.6 - 14413.48 = '$7,431.60 - $14,413.48' 14413.49 - 29514.94 = '$14,413.49 - $29,514.94' 29514.95 - 1019405.88 = '$29,514.95 - $1,019,405.88' ; VALUE IPFTR07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.64 - 19809.6 = '$1.64 - $19,809.60' ; VALUE IPFVA07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 67.26 - 2830.46 = '$67.26 - $2,830.46' 2830.47 - 8132.63 = '$2,830.47 - $8,132.63' 8132.64 - 18751.86 = '$8,132.64 - $18,751.86' 18751.87 - 52687.83 = '$18,751.87 - $52,687.83' ; VALUE IPFWC07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2236 - 63973.57 = '$2,236.00 - $63,973.57' ; VALUE IPFXP07F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.41 - 3298.24 = '$8.41 - $3,298.24' 3298.25 - 5892.18 = '$3,298.25 - $5,892.18' 5892.19 - 10945.68 = '$5,892.19 - $10,945.68' 10945.69 - 365331.52 = '$10,945.69 - $365,331.52' ; 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' '00' - '05' = '00 - 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' '00' - '05' = '00 - 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 IPTC07XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 15.52 - 9409.86 = '$15.52 - $9,409.86' 9409.87 - 17365.13 = '$9,409.87 - $17,365.13' 17365.14 - 34780.36 = '$17,365.14 - $34,780.36' 34780.37 - 1080849.88 = '$34,780.37 - $1,080,849.88' ; VALUE IPXP07XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.2 - 3813.15 = '$6.20 - $3,813.15' 3813.16 - 6818.87 = '$3,813.16 - $6,818.87' 6818.88 - 12544.5 = '$6,818.88 - $12,544.50' 12544.51 - 385527.13 = '$12,544.51 - $385,527.13' ; 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 - 90 = '1 - 90 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 - 277 = '1 - 277 NUMBER OF NIGHTS' ; VALUE PANELF 11 = 'PANEL 11' 12 = 'PANEL 12' ; VALUE PERWT07F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 686.82917 - 60524.403081 = '686.829170 - 60524.403081 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 VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1 - 1165 = '1 - 1,165' ;