SAS User File for H213D 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 (H213D.SSP) or the ASCII data file (H213D.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\H213D.SSP'; PROC CIMPORT DATA=PUFLIB.H213D 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.H213D; TITLE 'List of Variables in MEPS H213D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H213D (OBS=20); TITLE 'First 20 Observations in MEPS H213D 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) H213D 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 H213D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H213D.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 H213D.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 H213D.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\H213D.DAT'; DATA PUFLIB.H213D; INFILE IN1 LRECL=322; 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 (H213D). In the example, after the successful completion of the DATA step, a PC file named H213D.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 (322 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 H213D.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., 322 for H213D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (324 for H213D.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 (322 for H213D.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 (H213D.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.H213D; 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 H213D.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=322; 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 3.0 @90 ANYOPER 2.0 @92 DSCHPMED 2.0 @94 FFIPTYPE 2.0 @96 IPXP19X 9.2 @105 IPTC19X 10.2 @115 IPFSF19X 8.2 @123 IPFMR19X 9.2 @132 IPFMD19X 9.2 @141 IPFPV19X 9.2 @150 IPFVA19X 9.2 @159 IPFTR19X 8.2 @167 IPFOF19X 8.2 @175 IPFSL19X 8.2 @183 IPFWC19X 8.2 @191 IPFOT19X 8.2 @199 IPFXP19X 9.2 @208 IPFTC19X 10.2 @218 IPDSF19X 7.2 @225 IPDMR19X 8.2 @233 IPDMD19X 8.2 @241 IPDPV19X 8.2 @249 IPDVA19X 8.2 @257 IPDTR19X 7.2 @264 IPDOF19X 4.2 @268 IPDSL19X 6.2 @274 IPDWC19X 8.2 @282 IPDOT19X 7.2 @289 IPDXP19X 8.2 @297 IPDTC19X 8.2 @305 IMPFLAG 1.0 @306 PERWT19F 12.6 @318 VARSTR 4.0 @322 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUIDF. PID PIDF. DUPERSID $DUPERSIDF. EVNTIDX $EVNTIDXF. EVENTRN EVENTRNF. ERHEVIDX $ERHEVIDXF. FFEEIDX $FFEEIDXF. 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. IPXP19X IPXP19XF. IPTC19X IPTC19XF. IPFSF19X IPFSF19F. IPFMR19X IPFMR19F. IPFMD19X IPFMD19F. IPFPV19X IPFPV19F. IPFVA19X IPFVA19F. IPFTR19X IPFTR19F. IPFOF19X IPFOF19F. IPFSL19X IPFSL19F. IPFWC19X IPFWC19F. IPFOT19X IPFOT19F. IPFXP19X IPFXP19F. IPFTC19X IPFTC19F. IPDSF19X IPDSF19F. IPDMR19X IPDMR19F. IPDMD19X IPDMD19F. IPDPV19X IPDPV19F. IPDVA19X IPDVA19F. IPDTR19X IPDTR19F. IPDOF19X IPDOF19F. IPDSL19X IPDSL19F. IPDWC19X IPDWC19F. IPDOT19X IPDOT19F. IPDXP19X IPDXP19F. IPDTC19X IPDTC19F. IMPFLAG IMPFLAGF. PERWT19F PERWT19F. 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" IPXP19X ="TOTAL EXP FOR EVENT (IPFXP19X + IPDXP19X)" IPTC19X ="TOTAL CHG FOR EVENT (IPFTC19X + IPDTC19X)" IPFSF19X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" IPFMR19X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" IPFMD19X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" IPFPV19X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" IPFVA19X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)" IPFTR19X ="FACILITY AMOUNT PAID, TRICARE(IMPUTED)" IPFOF19X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" IPFSL19X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" IPFWC19X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" IPFOT19X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" IPFXP19X ="FACILITY SUM PAYMENTS IPFSF19X - IPFOT19X" IPFTC19X ="TOTAL FACILITY CHARGE (IMPUTED)" IPDSF19X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" IPDMR19X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" IPDMD19X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" IPDPV19X ="DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)" IPDVA19X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)" IPDTR19X ="DOCTOR AMOUNT PAID, TRICARE(IMPUTED)" IPDOF19X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" IPDSL19X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" IPDWC19X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" IPDOT19X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" IPDXP19X ="DOCTOR SUM PAYMENTS IPDSF19X - IPDOT19X" IPDTC19X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT19F ="EXPENDITURE FILE PERSON WEIGHT, 2019" VARSTR ="VARIANCE ESTIMATION STRATUM, 2019" VARPSU ="VARIANCE ESTIMATION PSU, 2019" ; * 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 DUIDF 2320002 - 2469687 = "2320002 - 2469687 DUID" ; VALUE $DUPERSIDF '2320002103' - '2469687102' = "2320002103 - 2469687102 DUPERSID" ; VALUE EMERROOF 1 = "1 YES" 2 = "2 NO" ; VALUE $ERHEVIDXF '-1' = "-1 INAPPLICABLE" '2320044101211601' - '2469687102001001' = "2320044101211601 - 2469687102001001 ERHEVIDX" ; VALUE EVENTRNF 1 = "ROUND 1" 2 = "ROUND 2" 3 = "ROUND 3" 4 = "ROUND 4" 5 = "ROUND 5" ; VALUE $EVNTIDXF '2320002103200201' - '2469687102000901' = "2320002103200201 - 2469687102000901 EVNTIDX" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10031' = "10031 - 10031 FFEEIDX" ; 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" 2018 = "2018" 2019 = "2019" ; VALUE IPDMD19F 0 = "0" 0.01 - 65.42 = "$0.01 - $65.42" 65.43 - 235.91 = "$65.43 - $235.91" 235.92 - 837.69 = "$235.92 - $837.69" 837.7 - 11275.37 = "$837.70 - $11,275.37" ; VALUE IPDMR19F 0 = "0" 6.24 - 221.46 = "$6.24 - $221.46" 221.47 - 542.93 = "$221.47 - $542.93" 542.94 - 1349.05 = "$542.94 - $1,349.05" 1349.06 - 24599.6 = "$1,349.06 - $24,599.60" ; VALUE IPDOF19F 0 = "0" ; VALUE IPDOT19F 0 = "0" 2 - 3801.5 = "$2.00 - $3,801.50" ; VALUE IPDPV19F 0 = "0" 1.72 - 125.91 = "$1.72 - $125.91" 125.92 - 444.09 = "$125.92 - $444.09" 444.1 - 1729.82 = "$444.10 - $1,729.82" 1729.83 - 64761.97 = "$1,729.83 - $64,761.97" ; VALUE IPDSF19F 0 = "0" 0.73 - 30 = "$0.73 - $30.00" 30.01 - 105.14 = "$30.01 - $105.14" 105.15 - 416.7 = "$105.15 - $416.70" 416.71 - 4268.69 = "$416.71 - $4,268.69" ; VALUE IPDSL19F 0 = "0" 188 - 845.43 = "$188.00 - $845.43" ; VALUE IPDTC19F 0 = "0" 16.32 - 986 = "$16.32 - $986.00" 986.01 - 2770.4 = "$986.01 - $2,770.40" 2770.41 - 6065.1 = "$2,770.41 - $6,065.10" 6065.11 - 96900.9 = "$6,065.11 - $96,900.90" ; VALUE IPDTR19F 0 = "0" 3.61 - 63.43 = "$3.61 - $63.43" 63.44 - 218.19 = "$63.44 - $218.19" 218.2 - 560.28 = "$218.20 - $560.28" 560.29 - 6492.81 = "$560.29 - $6,492.81" ; VALUE IPDVA19F 0 = "0" 1.67 - 54.06 = "$1.67 - $54.06" 54.07 - 101.12 = "$54.07 - $101.12" 101.13 - 588.49 = "$101.13 - $588.49" 588.5 - 17451.69 = "$588.50 - $17,451.69" ; VALUE IPDWC19F 0 = "0" 2 - 15943.82 = "$2.00 - $15,943.82" ; VALUE IPDXP19F 0 = "0" 5.39 - 307.68 = "$5.39 - $307.68" 307.69 - 787.07 = "$307.69 - $787.07" 787.08 - 2096.58 = "$787.08 - $2,096.58" 2096.59 - 66132.76 = "$2,096.59 - $66,132.76" ; VALUE IPENDMMF -8 = "-8 DK" -7 = "-7 REFUSED" 1 - 12 = "1 - 12 MONTH" ; VALUE IPENDYRF -8 = "-8 DK" -7 = "-7 REFUSED" 2019 = "2019" ; VALUE IPFMD19F 0 = "0" 4.07 - 1083.48 = "$4.07 - $1,083.48" 1083.49 - 2840.55 = "$1,083.49 - $2,840.55" 2840.56 - 7187.22 = "$2,840.56 - $7,187.22" 7187.23 - 244329.47 = "$7,187.23 - $244,329.47" ; VALUE IPFMR19F 0 = "0" 1 - 3148.21 = "$1.00 - $3,148.21" 3148.22 - 7067.04 = "$3,148.22 - $7,067.04" 7067.05 - 12763.58 = "$7,067.05 - $12,763.58" 12763.59 - 426515.75 = "$12,763.59 - $426,515.75" ; VALUE IPFOF19F 0 = "0" 58.21 - 753.92 = "$58.21 - $753.92" 753.93 - 2360.76 = "$753.93 - $2,360.76" 2360.77 - 11207.85 = "$2,360.77 - $11,207.85" 11207.86 - 70301.96 = "$11,207.86 - $70,301.96" ; VALUE IPFOT19F 0 = "0" 447.54 - 2150.82 = "$447.54 - $2,150.82" 2150.83 - 8224.23 = "$2,150.83 - $8,224.23" 8224.24 - 16530.34 = "$8,224.24 - $16,530.34" 16530.35 - 59806.9 = "$16,530.35 - $59,806.90" ; VALUE IPFPV19F 0 = "0" 1.71 - 1366.84 = "$1.71 - $1,366.84" 1366.85 - 5587.52 = "$1,366.85 - $5,587.52" 5587.53 - 14992 = "$5,587.53 - $14,992.00" 14992.01 - 691555.48 = "$14,992.01 - $691,555.48" ; VALUE IPFSF19F 0 = "0" 0.4 - 142.35 = "$0.40 - $142.35" 142.36 - 415 = "$142.36 - $415.00" 415.01 - 1364 = "$415.01 - $1,364.00" 1364.01 - 45174.89 = "$1,364.01 - $45,174.89" ; VALUE IPFSL19F 0 = "0" 3312.3 - 66743.99 = "$3,312.30 - $66,743.99" ; VALUE IPFTC19F 0 = "0" 20.4 - 14638.96 = "$20.40 - $14,638.96" 14638.97 - 28146 = "$14,638.97 - $28,146.00" 28146.01 - 56244.4 = "$28,146.01 - $56,244.40" 56244.41 - 1474889.57 = "$56,244.41 - $1,474,889.57" ; VALUE IPFTR19F 0 = "0" 1 - 684.8 = "$1.00 - $684.80" 684.81 - 1365.42 = "$684.81 - $1,365.42" 1365.43 - 2770.93 = "$1,365.43 - $2,770.93" 2770.94 - 43401.77 = "$2,770.94 - $43,401.77" ; VALUE IPFVA19F 0 = "0" 18.42 - 3086.58 = "$18.42 - $3,086.58" 3086.59 - 8568.47 = "$3,086.59 - $8,568.47" 8568.48 - 20839.98 = "$8,568.48 - $20,839.98" 20839.99 - 190514.52 = "$20,839.99 - $190,514.52" ; VALUE IPFWC19F 0 = "0" 5764.11 - 8389.02 = "$5,764.11 - $8,389.02" 8389.03 - 11820.5 = "$8,389.03 - $11,820.50" 11820.51 - 25520.03 = "$11,820.51 - $25,520.03" 25520.04 - 50527.81 = "$25,520.04 - $50,527.81" ; VALUE IPFXP19F 0 = "0" 3.92 - 4009.86 = "$3.92 - $4,009.86" 4009.87 - 8474.78 = "$4,009.87 - $8,474.78" 8474.79 - 15112.94 = "$8,474.79 - $15,112.94" 15112.95 - 691555.48 = "$15,112.95 - $691,555.48" ; VALUE IPTC19XF 0 = "0" 20.4 - 16736.42 = "$20.40 - $16,736.42" 16736.43 - 31563.7 = "$16,736.43 - $31,563.70" 31563.71 - 61886.26 = "$31,563.71 - $61,886.26" 61886.27 - 1500529.04 = "$61,886.27 - $1,500,529.04" ; VALUE IPXP19XF 0 = "0" 3.92 - 4676.29 = "$3.92 - $4,676.29" 4676.3 - 9340.68 = "$4,676.30 - $9,340.68" 9340.69 - 16926.45 = "$9,340.69 - $16,926.45" 16926.46 - 704615.04 = "$16,926.46 - $704,615.04" ; VALUE MPCDATAF 1 = "1 HAS MPC DATA" 2 = "2 NO MPC DATA" ; VALUE NUMNIGHX 0 = "0 NUMBER OF NIGHTS" 1 - 245 = "1 - 245 NUMBER OF NIGHTS" ; VALUE PANELF 23 = "PANEL 23" 24 = "PANEL 24" ; VALUE PERWT19F 0 = "0.000000 WEIGHT" 633.006358 - 74740.855689 = "633.006358 - 74740.855689 WEIGHT" ; VALUE PIDF 101 - 501 = "101 - 501 PID" ; 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 1 - 6 = "1 - 6" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117" ;