SAS User File for H206D 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 (H206D.SSP) or the ASCII data file (H206D.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: CIMPORT. Section B provides a sample SAS program for the second alternative, which is to read data from the ASCII data file using a SAS DATA step with INFILE, INPUT, and LABEL statements. Section C explains format-related SAS statements that a user may optionally use when working with the SAS dataset. Examples of SAS programs (DATA step or PROC) are provided in all three sections, primarily for the benefit of inexperienced users. Section D contains complete SAS statements that must be used in the programs described in Sections B and C. ****************************************************************************** The sample SAS programs provided in Sections A and B show how to create a permanent SAS dataset from the data files provided in this PUF release. A. A Sample SAS Program for Converting the SAS Transport File to a Permanent SAS Dataset The SAS procedure CIMPORT 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). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H206D.SSP'; PROC CIMPORT DATA=PUFLIB.H206D INFILE=IN1; RUN; Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H206D; TITLE 'List of Variables in MEPS H206D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H206D (OBS=20); TITLE 'First 20 Observations in MEPS H206D SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC CIMPORT. 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 and Linux. 3) H206D 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 CIMPORT, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H206D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H206D.SSP was created from a SAS V9 data file, using PROC CPORT. This file should 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 H206D.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 H206D.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, Linux, etc.), use the editor provided as part of the SAS software. Following is a sample Windows SAS program that will convert the ASCII data file to SAS format: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H206D.DAT'; DATA PUFLIB.H206D; INFILE IN1 LRECL=351; 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 (H206D). In the example, after the successful completion of the DATA step, a PC file named H206D.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 (351 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 H206D.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., 351 for H206D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (353 for H206D.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 (351 for H206D.DAT). INPUT statement: This specifies the input record layout, giving names, the beginning column positions, and the lengths for data items (which become SAS variables) in the ASCII data file (H206D.DAT). Variable type (numeric or character) is also defined by character variables having a dollar sign ($) directly before the variables length, while numeric variables do not have a dollar sign. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format catalog 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.H206D; 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') and format catalog (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 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) 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 and Linux. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in converting the ASCII H206D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=351; INPUT @1 DUID 7.0 @8 PID 3.0 @11 DUPERSID $10.0 @21 EVNTIDX $16.0 @37 EVENTRN 1.0 @38 ERHEVIDX $16.0 @54 FFEEIDX $12.0 @66 PANEL 2.0 @68 MPCDATA 1.0 @69 IPBEGYR 4.0 @73 IPBEGMM 2.0 @75 IPENDYR 4.0 @79 IPENDMM 2.0 @81 NUMNIGHX 3.0 @84 EMERROOM 1.0 @85 SPECCOND 2.0 @87 RSNINHOS 2.0 @89 ANYOPER 2.0 @91 DSCHPMED 2.0 @93 FFIPTYPE 2.0 @95 IPXP18X 9.2 @104 IPTC18X 10.2 @114 IPFSF18X 8.2 @122 IPFMR18X 9.2 @131 IPFMD18X 9.2 @140 IPFPV18X 9.2 @149 IPFVA18X 9.2 @158 IPFTR18X 8.2 @166 IPFOF18X 8.2 @174 IPFSL18X 8.2 @182 IPFWC18X 8.2 @190 IPFOR18X 8.2 @198 IPFOU18X 8.2 @206 IPFOT18X 9.2 @215 IPFXP18X 9.2 @224 IPFTC18X 10.2 @234 IPDSF18X 7.2 @241 IPDMR18X 7.2 @248 IPDMD18X 8.2 @256 IPDPV18X 8.2 @264 IPDVA18X 8.2 @272 IPDTR18X 7.2 @279 IPDOF18X 4.2 @283 IPDSL18X 6.2 @289 IPDWC18X 7.2 @296 IPDOR18X 7.2 @303 IPDOU18X 7.2 @310 IPDOT18X 8.2 @318 IPDXP18X 8.2 @326 IPDTC18X 8.2 @334 IMPFLAG 1.0 @335 PERWT18F 12.6 @347 VARSTR 4.0 @351 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. IPXP18X IPXP18XF. IPTC18X IPTC18XF. IPFSF18X IPFSF18F. IPFMR18X IPFMR18F. IPFMD18X IPFMD18F. IPFPV18X IPFPV18F. IPFVA18X IPFVA18F. IPFTR18X IPFTR18F. IPFOF18X IPFOF18F. IPFSL18X IPFSL18F. IPFWC18X IPFWC18F. IPFOR18X IPFOR18F. IPFOU18X IPFOU18F. IPFOT18X IPFOT18F. IPFXP18X IPFXP18F. IPFTC18X IPFTC18F. IPDSF18X IPDSF18F. IPDMR18X IPDMR18F. IPDMD18X IPDMD18F. IPDPV18X IPDPV18F. IPDVA18X IPDVA18F. IPDTR18X IPDTR18F. IPDOF18X IPDOF18F. IPDSL18X IPDSL18F. IPDWC18X IPDWC18F. IPDOR18X IPDOR18F. IPDOU18X IPDOU18F. IPDOT18X IPDOT18F. IPDXP18X IPDXP18F. IPDTC18X IPDTC18F. IMPFLAG IMPFLAGF. PERWT18F PERWT18F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ='PANEL # + ENCRYPTED DU IDENTIFIER' 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' IPXP18X ='TOTAL EXP FOR EVENT (IPFXP18X+IPDXP18X)' IPTC18X ='TOTAL CHG FOR EVENT (IPFTC18X+IPDTC18X)' IPFSF18X ='FACILITY AMOUNT PAID, FAMILY (IMPUTED)' IPFMR18X ='FACILITY AMOUNT PAID, MEDICARE (IMPUTED)' IPFMD18X ='FACILITY AMOUNT PAID, MEDICAID (IMPUTED)' IPFPV18X ='FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)' IPFVA18X ='FACILITY AMOUNT PAID,VETERANS/CHAMPVA(IMPUTED)' IPFTR18X ='FACILITY AMOUNT PAID,TRICARE(IMPUTED)' IPFOF18X ='FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)' IPFSL18X ='FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)' IPFWC18X ='FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)' IPFOR18X ='FACILITY AMOUNT PAID, OTH PRIV (IMPUTED)' IPFOU18X ='FACILITY AMOUNT PAID, OTH PUB (IMPUTED)' IPFOT18X ='FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)' IPFXP18X ='FACILITY SUM PAYMENTS IPFSF18X-IPFOT18X' IPFTC18X ='TOTAL FACILITY CHARGE (IMPUTED)' IPDSF18X ='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' IPDMR18X ='DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)' IPDMD18X ='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' IPDPV18X ='DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)' IPDVA18X ='DOCTOR AMOUNT PAID,VETERANS/CHAMPVA(IMPUTED)' IPDTR18X ='DOCTOR AMOUNT PAID,TRICARE(IMPUTED)' IPDOF18X ='DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)' IPDSL18X ='DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)' IPDWC18X ='DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)' IPDOR18X ='DOCTOR AMOUNT PAID, OTH PRIV (IMPUTED)' IPDOU18X ='DOCTOR AMOUNT PAID, OTH PUB (IMPUTED)' IPDOT18X ='DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)' IPDXP18X ='DOCTOR SUM PAYMENTS IPDSF18X-IPDOT18X' IPDTC18X ='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT18F ='EXPENDITURE FILE PERSON WEIGHT, 2018' VARSTR ='VARIANCE ESTIMATION STRATUM, 2018' VARPSU ='VARIANCE ESTIMATION PSU, 2018' ; * VALUE STATEMENTS; VALUE ANYOPERF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' ; VALUE DSCHPMEF -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' ; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EMERROOF 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 -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 IPBEGMMF -8 = '-8 DK' -7 = '-7 REFUSED' 1 - 12 = '1 - 12 MONTH' ; VALUE IPBEGYRF -8 = '-8 DK' -7 = '-7 REFUSED' 2017 = '2017' 2018 = '2018' ; VALUE IPDMD18F (DEFAULT=40) 0 = '0' 0.95 - 75.6 = '$0.95 - $75.60' 75.61 - 258.18 = '$75.61 - $258.18' 258.19 - 928.12 = '$258.19 - $928.12' 928.13 - 11053.96 = '$928.13 - $11,053.96' ; VALUE IPDMR18F (DEFAULT=40) 0 = '0' 3.83 - 179.85 = '$3.83 - $179.85' 179.86 - 474.22 = '$179.86 - $474.22' 474.23 - 1225.63 = '$474.23 - $1,225.63' 1225.64 - 8403.11 = '$1,225.64 - $8,403.11' ; VALUE IPDOF18F 0 = '0' 0.01 - 99999999.99 = '.01 - 99999999.99' ; VALUE IPDOR18F (DEFAULT=40) 0 = '0' 1.81 - 45.88 = '$1.81 - $45.88' 45.89 - 141.42 = '$45.89 - $141.42' 141.43 - 333.47 = '$141.43 - $333.47' 333.48 - 3060.42 = '$333.48 - $3,060.42' ; VALUE IPDOT18F (DEFAULT=40) 0 = '0' 8.53 - 59.01 = '$8.53 - $59.01' 59.02 - 288.39 = '$59.02 - $288.39' 288.4 - 686.12 = '$288.40 - $686.12' 686.13 - 20369.35 = '$686.13 - $20,369.35' ; VALUE IPDOU18F (DEFAULT=40) 0 = '0' 5.35 - 1016.68 = '$5.35 - $1,016.68' ; VALUE IPDPV18F (DEFAULT=40) 0 = '0' 1.7 - 134.78 = '$1.70 - $134.78' 134.79 - 577.08 = '$134.79 - $577.08' 577.09 - 2012.21 = '$577.09 - $2,012.21' 2012.22 - 20382.9 = '$2,012.22 - $20,382.90' ; VALUE IPDSF18F (DEFAULT=40) 0 = '0' 0.34 - 25 = '$0.34 - $25.00' 25.01 - 108.01 = '$25.01 - $108.01' 108.02 - 400 = '$108.02 - $400.00' 400.01 - 4184.87 = '$400.01 - $4,184.87' ; VALUE IPDSL18F (DEFAULT=40) 0 = '0' 77.24 - 995.04 = '$77.24 - $995.04' ; VALUE IPDTC18F (DEFAULT=40) 0 = '0' 9.6 - 823 = '$9.60 - $823.00' 823.01 - 2385 = '$823.01 - $2,385.00' 2385.01 - 5431.84 = '$2,385.01 - $5,431.84' 5431.85 - 80851.5 = '$5,431.85 - $80,851.50' ; VALUE IPDTR18F (DEFAULT=40) 0 = '0' 1.64 - 69.98 = '$1.64 - $69.98' 69.99 - 161.63 = '$69.99 - $161.63' 161.64 - 478.37 = '$161.64 - $478.37' 478.38 - 6365.31 = '$478.38 - $6,365.31' ; VALUE IPDVA18F (DEFAULT=40) 0 = '0' 1.64 - 102 = '$1.64 - $102.00' 102.01 - 249 = '$102.01 - $249.00' 249.01 - 905 = '$249.01 - $905.00' 905.01 - 10973.84 = '$905.01 - $10,973.84' ; VALUE IPDWC18F (DEFAULT=40) 0 = '0' 22 - 3829.27 = '$22.00 - $3,829.27' ; VALUE IPDXP18F (DEFAULT=40) 0 = '0' 2.1 - 249.36 = '$2.10 - $249.36' 249.37 - 700.7 = '$249.37 - $700.70' 700.71 - 1839.88 = '$700.71 - $1,839.88' 1839.89 - 21497.57 = '$1,839.89 - $21,497.57' ; VALUE IPENDMMF -8 = '-8 DK' -7 = '-7 REFUSED' 1 - 12 = '1 - 12 MONTH' ; VALUE IPENDYRF -8 = '-8 DK' -7 = '-7 REFUSED' 2018 = '2018' ; VALUE IPFMD18F (DEFAULT=40) 0 = '0' 0.7 - 1340 = '$0.70 - $1,340.00' 1340.01 - 3452.1 = '$1,340.01 - $3,452.10' 3452.11 - 7452.8 = '$3,452.11 - $7,452.80' 7452.81 - 239531.65 = '$7,452.81 - $239,531.65' ; VALUE IPFMR18F (DEFAULT=40) 0 = '0' 3.84 - 3869.01 = '$3.84 - $3,869.01' 3869.02 - 7487.94 = '$3,869.02 - $7,487.94' 7487.95 - 12810.01 = '$7,487.95 - $12,810.01' 12810.02 - 189826.83 = '$12,810.02 - $189,826.83' ; VALUE IPFOF18F (DEFAULT=40) 0 = '0' 639.04 - 10332 = '$639.04 - $10,332.00' ; VALUE IPFOR18F (DEFAULT=40) 0 = '0' 10.46 - 53904.54 = '$10.46 - $53,904.54' ; VALUE IPFOT18F (DEFAULT=40) 0 = '0' 90.12 - 2101.7 = '$90.12 - $2,101.70' 2101.71 - 5960.14 = '$2,101.71 - $5,960.14' 5960.15 - 9303 = '$5,960.15 - $9,303.00' 9303.01 - 219315.8 = '$9,303.01 - $219,315.80' ; VALUE IPFOU18F (DEFAULT=40) 0 = '0' 21.17 - 945.33 = '$21.17 - $945.33' 945.34 - 1324.04 = '$945.34 - $1,324.04' 1324.05 - 4550.21 = '$1,324.05 - $4,550.21' 4550.22 - 10788.81 = '$4,550.22 - $10,788.81' ; VALUE IPFPV18F (DEFAULT=40) 0 = '0' 0.02 - 1378.05 = '$0.02 - $1,378.05' 1378.06 - 6849.06 = '$1,378.06 - $6,849.06' 6849.07 - 15924.78 = '$6,849.07 - $15,924.78' 15924.79 - 677975.63 = '$15,924.79 - $677,975.63' ; VALUE IPFSF18F (DEFAULT=40) 0 = '0' 0.35 - 100 = '$0.35 - $100.00' 100.01 - 350 = '$100.01 - $350.00' 350.01 - 1183.76 = '$350.01 - $1,183.76' 1183.77 - 40964.12 = '$1,183.77 - $40,964.12' ; VALUE IPFSL18F (DEFAULT=40) 0 = '0' 271.23 - 83769.72 = '$271.23 - $83,769.72' ; VALUE IPFTC18F (DEFAULT=40) 0 = '0' 20 - 14287.5 = '$20.00 - $14,287.50' 14287.51 - 28311.09 = '$14,287.51 - $28,311.09' 28311.1 - 54092.35 = '$28,311.10 - $54,092.35' 54092.36 - 1445927.64 = '$54,092.36 - $1,445,927.64' ; VALUE IPFTR18F (DEFAULT=40) 0 = '0' 25.09 - 66826.82 = '$25.09 - $66,826.82' ; VALUE IPFVA18F (DEFAULT=40) 0 = '0' 155.62 - 4584.26 = '$155.62 - $4,584.26' 4584.27 - 9166.9 = '$4,584.27 - $9,166.90' 9166.91 - 22534.59 = '$9,166.91 - $22,534.59' 22534.6 - 109214.29 = '$22,534.60 - $109,214.29' ; VALUE IPFWC18F (DEFAULT=40) 0 = '0' 5059.25 - 56918.24 = '$5,059.25 - $56,918.24' ; VALUE IPFXP18F (DEFAULT=40) 0 = '0' 3.84 - 4123.73 = '$3.84 - $4,123.73' 4123.74 - 8135.75 = '$4,123.74 - $8,135.75' 8135.76 - 14644.96 = '$8,135.76 - $14,644.96' 14644.97 - 677975.63 = '$14,644.97 - $677,975.63' ; VALUE IPTC18XF (DEFAULT=40) 0 = '0' 20 - 15772.04 = '$20.00 - $15,772.04' 15772.05 - 31282.92 = '$15,772.05 - $31,282.92' 31282.93 - 59327.85 = '$31,282.93 - $59,327.85' 59327.86 - 1471063.64 = '$59,327.86 - $1,471,063.64' ; VALUE IPXP18XF (DEFAULT=40) 0 = '0' 3.84 - 4497.06 = '$3.84 - $4,497.06' 4497.07 - 8900.44 = '$4,497.07 - $8,900.44' 8900.45 - 15918.14 = '$8,900.45 - $15,918.14' 15918.15 - 690778.74 = '$15,918.15 - $690,778.74' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE NUMNIGHX (DEFAULT=40) 0 = '0 NUMBER OF NIGHTS' 1 - 178 = '1 - 178 NUMBER OF NIGHTS' ; VALUE PANELF 22 = 'PANEL 22' 23 = 'PANEL 23' ; VALUE PERWT18F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 574.884297 - 53586.943081 = '574.884297 - 53586.943081 WEIGHT' ; VALUE PID OTHER = 'VALID ID' ; VALUE RSNINHOF -15 = '-15 CANNOT BE COMPUTED' -8 = '-8 DK' -7 = '-7 REFUSED' 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 -8 = '-8 DK' -7 = '-7 REFUSED' 1 = '1 YES' 2 = '2 NO' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 2001 - 2117 = '2001 - 2117' ;