SAS User File for H197D 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 (H197D.SSP) or the ASCII data file (H197D.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\H197D.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.H197D; TITLE 'List of Variables in MEPS H197D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H197D (OBS=20); TITLE 'First 20 Observations in MEPS H197D 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) H197D 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 H197D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H197D.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 H197D.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 H197D.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\H197D.DAT'; DATA PUFLIB.H197D; INFILE IN1 LRECL=343; 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 (H197D). In the example, after the successful completion of the DATA step, a PC file named H197D.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 (343 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 H197D.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., 343 for H197D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (345 for H197D.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 (343 for H197D.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 (H197D.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.H197D; 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 H197D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=343; 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 PANEL 2.0 @56 MPCDATA 1.0 @57 IPBEGYR 4.0 @61 IPBEGMM 2.0 @63 IPENDYR 4.0 @67 IPENDMM 2.0 @69 NUMNIGHX 3.0 @72 EMERROOM 2.0 @74 SPECCOND 2.0 @76 RSNINHOS 2.0 @78 ANYOPER 2.0 @80 DSCHPMED 2.0 @82 FFIPTYPE 2.0 @84 FFBEF17 2.0 @86 FFTOT18 2.0 @88 IPXP17X 9.2 @97 IPTC17X 9.2 @106 IPFSF17X 8.2 @114 IPFMR17X 9.2 @123 IPFMD17X 9.2 @132 IPFPV17X 9.2 @141 IPFVA17X 9.2 @150 IPFTR17X 8.2 @158 IPFOF17X 7.2 @165 IPFSL17X 8.2 @173 IPFWC17X 8.2 @181 IPFOR17X 8.2 @189 IPFOU17X 8.2 @197 IPFOT17X 8.2 @205 IPFXP17X 9.2 @214 IPFTC17X 9.2 @223 IPDSF17X 7.2 @230 IPDMR17X 8.2 @238 IPDMD17X 7.2 @245 IPDPV17X 8.2 @253 IPDVA17X 8.2 @261 IPDTR17X 7.2 @268 IPDOF17X 6.2 @274 IPDSL17X 6.2 @280 IPDWC17X 7.2 @287 IPDOR17X 7.2 @294 IPDOU17X 7.2 @301 IPDOT17X 8.2 @309 IPDXP17X 8.2 @317 IPDTC17X 9.2 @326 IMPFLAG 1.0 @327 PERWT17F 12.6 @339 VARSTR 4.0 @343 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. ERHEVIDX $ERHEIDF. FFEEIDX $FFEEIDX. PANEL PANELF. MPCDATA MPCDATAF. IPBEGYR IPBEGYRF. IPBEGMM IPBEGMMF. IPENDYR IPENDYRF. IPENDMM IPENDMMF. NUMNIGHX NUMNIGHX. EMERROOM EMERROOF. SPECCOND SPECCONF. RSNINHOS RSNINHOF. ANYOPER ANYOPERF. DSCHPMED DSCHPMEF. FFIPTYPE FFIPTYPF. FFBEF17 FFBEF17F. FFTOT18 FFTOT18F. IPXP17X IPXP17XF. IPTC17X IPTC17XF. IPFSF17X IPFSF17F. IPFMR17X IPFMR17F. IPFMD17X IPFMD17F. IPFPV17X IPFPV17F. IPFVA17X IPFVA17F. IPFTR17X IPFTR17F. IPFOF17X IPFOF17F. IPFSL17X IPFSL17F. IPFWC17X IPFWC17F. IPFOR17X IPFOR17F. IPFOU17X IPFOU17F. IPFOT17X IPFOT17F. IPFXP17X IPFXP17F. IPFTC17X IPFTC17F. IPDSF17X IPDSF17F. IPDMR17X IPDMR17F. IPDMD17X IPDMD17F. IPDPV17X IPDPV17F. IPDVA17X IPDVA17F. IPDTR17X IPDTR17F. IPDOF17X IPDOF17F. IPDSL17X IPDSL17F. IPDWC17X IPDWC17F. IPDOR17X IPDOR17F. IPDOU17X IPDOU17F. IPDOT17X IPDOT17F. IPDXP17X IPDXP17F. IPDTC17X IPDTC17F. IMPFLAG IMPFLAGF. PERWT17F PERWT17F. 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' PANEL ='PANEL NUMBER' MPCDATA ='MPC DATA FLAG' IPBEGYR ='EVENT START DATE - YEAR' IPBEGMM ='EVENT START DATE - MONTH' IPENDYR ='EVENT END DATE - YEAR' IPENDMM ='EVENT END DATE - MONTH' NUMNIGHX='# OF NIGHTS IN HOSPITAL - EDITED/IMPUTED' EMERROOM='DID STAY BEGIN WITH EMERGENCY ROOM VISIT' SPECCOND='HOSPITAL STAY RELATED TO CONDITION' RSNINHOS='REASON ENTERED HOSPITAL' ANYOPER ='ANY OPERATIONS OR SURGERIES PERFORMED' DSCHPMED='MEDICINES PRESCRIBED AT DISCHARGE' FFIPTYPE='FLAT FEE BUNDLE' FFBEF17 ='TOTAL # OF VISITS IN FF BEFORE 2017' FFTOT18 ='TOTAL # OF VISITS IN FF AFTER 2017' IPXP17X ='TOT EXP FOR EVENT (IPFXP17X+IPDXP17X)' IPTC17X ='TOTAL CHG FOR EVENT (IPFTC17X+IPDTC17X)' IPFSF17X='FACILITY AMT PD, FAMILY (IMPUTED)' IPFMR17X='FACILITY AMT PD, MEDICARE (IMPUTED)' IPFMD17X='FACILITY AMT PD, MEDICAID (IMPUTED)' IPFPV17X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' IPFVA17X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPFTR17X='FACILITY AMT PD,TRICARE(IMPUTED)' IPFOF17X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' IPFSL17X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' IPFWC17X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' IPFOR17X='FACILITY AMT PD, OTH PRIV (IMPUTED)' IPFOU17X='FACILITY AMT PD, OTH PUB (IMPUTED)' IPFOT17X='FACILITY AMT PD, OTH INSUR (IMPUTED)' IPFXP17X='FACILITY SUM PAYMENTS IPFSF17X-IPFOT17X' IPFTC17X='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF17X='DOCTOR AMOUNT PD, FAMILY (IMPUTED)' IPDMR17X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' IPDMD17X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV17X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' IPDVA17X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' IPDTR17X='DOCTOR AMT PD,TRICARE(IMPUTED)' IPDOF17X='DOCTOR AMT PD, OTH FEDERAL (IMPUTED)' IPDSL17X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' IPDWC17X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' IPDOR17X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' IPDOU17X='DOCTOR AMT PD, OTH PUB (IMPUTED)' IPDOT17X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' IPDXP17X='DOCTOR SUM PAYMENTS IPDSF17X-IPDOT17X' IPDTC17X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT17F='EXPENDITURE FILE PERSON WEIGHT, 2017' VARSTR ='VARIANCE ESTIMATION STRATUM, 2017' VARPSU ='VARIANCE ESTIMATION PSU, 2017' ; * 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 FFBEF17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 = '1' ; 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 FFTOT18F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0' 3 = '1 - 3' ; 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 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' 2016 = '2016' 2017 = '2017' ; VALUE IPDMD17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.14 - 122.44 = '$0.14 - $122.44' 122.45 - 332.18 = '$122.45 - $332.18' 332.19 - 1003.41 = '$332.19 - $1,003.41' 1003.42 - 7855.24 = '$1,003.42 - $7,855.24' ; VALUE IPDMR17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.25 - 196.35 = '$4.25 - $196.35' 196.36 - 544.38 = '$196.36 - $544.38' 544.39 - 1208.98 = '$544.39 - $1,208.98' 1208.99 - 13882.32 = '$1,208.99 - $13,882.32' ; VALUE IPDOF17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 420.55 = '$1.00 - $420.55' ; VALUE IPDOR17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.32 - 52.73 = '$0.32 - $52.73' 52.74 - 149.33 = '$52.74 - $149.33' 149.34 - 460.89 = '$149.34 - $460.89' 460.9 - 4505.94 = '$460.90 - $4,505.94' ; VALUE IPDOT17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.89 - 49.03 = '$3.89 - $49.03' 49.04 - 105.55 = '$49.04 - $105.55' 105.56 - 325.24 = '$105.56 - $325.24' 325.25 - 20596.8 = '$325.25 - $20,596.80' ; VALUE IPDOU17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 10.24 - 108.47 = '$10.24 - $108.47' 108.48 - 366.73 = '$108.48 - $366.73' 366.74 - 381.22 = '$366.74 - $381.22' 381.23 - 1672.38 = '$381.23 - $1,672.38' ; VALUE IPDPV17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.32 - 118.54 = '$0.32 - $118.54' 118.55 - 490.47 = '$118.55 - $490.47' 490.48 - 1748.76 = '$490.48 - $1,748.76' 1748.77 - 76147.34 = '$1,748.77 - $76,147.34' ; VALUE IPDSF17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2 - 45.62 = '$2.00 - $45.62' 45.63 - 138.88 = '$45.63 - $138.88' 138.89 - 385.3 = '$138.89 - $385.30' 385.31 - 8699.68 = '$385.31 - $8,699.68' ; VALUE IPDSL17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 97.25 - 265.13 = '$97.25 - $265.13' ; VALUE IPDTC17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 12.96 - 977 = '$12.96 - $977.00' 977.01 - 2485 = '$977.01 - $2,485.00' 2485.01 - 5907 = '$2,485.01 - $5,907.00' 5907.01 - 112455.55 = '$5,907.01 - $112,455.55' ; VALUE IPDTR17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.57 - 3679.27 = '$1.57 - $3,679.27' ; VALUE IPDVA17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8.53 - 10488.3 = '$8.53 - $10,488.30' ; VALUE IPDWC17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 197.15 - 363.71 = '$197.15 - $363.71' 363.72 - 3441.39 = '$363.72 - $3,441.39' 3441.4 - 7106.32 = '$3,441.40 - $7,106.32' 7106.33 - 7860.11 = '$7,106.33 - $7,860.11' ; VALUE IPDXP17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.48 - 275.83 = '$2.48 - $275.83' 275.84 - 767.13 = '$275.84 - $767.13' 767.14 - 1802.88 = '$767.14 - $1,802.88' 1802.89 - 96744.14 = '$1,802.89 - $96,744.14' ; 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' 2017 = '2017' ; VALUE IPFMD17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.43 - 1580.19 = '$1.43 - $1,580.19' 1580.2 - 4470.77 = '$1,580.20 - $4,470.77' 4470.78 - 8847.8 = '$4,470.78 - $8,847.80' 8847.81 - 253222.82 = '$8,847.81 - $253,222.82' ; VALUE IPFMR17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 9.69 - 3801.2 = '$9.69 - $3,801.20' 3801.21 - 6908.95 = '$3,801.21 - $6,908.95' 6908.96 - 11590 = '$6,908.96 - $11,590.00' 11590.01 - 234428 = '$11,590.01 - $234,428.00' ; VALUE IPFOF17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1120.21 - 1744.13 = '$1.00 - $1,744.13' ; VALUE IPFOR17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.68 - 39041.03 = '$1.68 - $39,041.03' ; VALUE IPFOT17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.39 - 677.51 = '$14.39 - $677.51' 677.52 - 2128.18 = '$677.52 - $2,128.18' 2128.19 - 6145.7 = '$2,128.19 - $6,145.70' 6145.71 - 98483.74 = '$6,145.71 - $98,483.74' ; VALUE IPFOU17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1227.73 - 2789.08 = '$1,227.73 - $2,789.08' 2789.09 - 4282.3 = '$2,789.09 - $4,282.30' 4282.31 - 8751.69 = '$4,282.31 - $8,751.69' 8751.7 - 32133.65 = '$8,751.70 - $32,133.65' ; VALUE IPFPV17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.68 - 1316 = '$1.68 - $1,316.00' 1316.01 - 5411.93 = '$1,316.01 - $5,411.93' 5411.94 - 13736.77 = '$5,411.94 - $13,736.77' 13736.78 - 415473.47 = '$13,736.78 - $415,473.47' ; VALUE IPFSF17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1 - 100 = '$1.00 - $100.00' 100.01 - 350.06 = '$100.01 - $350.06' 350.07 - 1174.61 = '$350.07 - $1,174.61' 1174.62 - 40000 = '$1,174.62 - $40,000.00' ; VALUE IPFSL17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 70 - 98483.74 = '$70.00 - $98,483.74' ; VALUE IPFTC17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 87 - 13601.43 = '$87.00 - $13,601.43' 13601.44 - 26089.55 = '$13,601.44 - $26,089.55' 26089.56 - 49555.22 = '$26,089.56 - $49,555.22' 49555.23 - 767700.86 = '$49,555.23 - $767,700.86' ; VALUE IPFTR17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.68 - 24538.83 = '$1.68 - $24,538.83' ; VALUE IPFVA17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 61.94 - 1180 = '$61.94 - $1,180.00' 1180.01 - 6415.35 = '$1,180.01 - $6,415.35' 6415.36 - 15405.5 = '$6,415.36 - $15,405.50' 15405.51 - 106856.93 = '$15,405.51 - $106,856.93' ; VALUE IPFWC17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 8188.56 - 38850.41 = '$8,188.56 - $38,850.41' ; VALUE IPFXP17F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.08 - 3800 = '$6.08 - $3,800.00' 3800.01 - 7527.22 = '$3,800.01 - $7,527.22' 7527.23 - 13503.57 = '$7,527.23 - $13,503.57' 13503.58 - 415473.47 = '$13,503.58 - $415,473.47' ; VALUE IPTC17XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 111 - 15460.71 = '$111.00 - $15,460.71' 15460.72 - 29849.4 = '$15,460.72 - $29,849.40' 29849.41 - 54606.25 = '$29,849.41 - $54,606.25' 54606.26 - 785634.86 = '$54,606.26 - $785,634.86' ; VALUE IPXP17XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 6.08 - 4444 = '$6.08 - $4,444.00' 4444.01 - 8306.13 = '$4,444.01 - $8,306.13' 8306.14 - 14899.35 = '$8,306.14 - $14,899.35' 14899.36 - 415473.47 = '$14,899.36 - $415,473.47' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE NUMNIGHX (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 0 = '0 NUMBER OF NIGHTS' 1 - 164 = '1 - 164 NUMBER OF NIGHTS' ; VALUE PANELF 21 = 'PANEL 21' 22 = 'PANEL 22' ; VALUE PERWT17F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 721.220625 - 79352.953816 = '721.220625 - 79352.953816 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)' 6 = '6 PREGNANCY-RELATED COMPLICATIONS' 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) 1001 - 2117 = '1,001 - 2,117' ;