SAS User File for H229D 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 (H229D.SSP) or the ASCII data file (H229D.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\H229D.SSP'; PROC CIMPORT DATA=PUFLIB.H229D 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.H229D; TITLE 'List of Variables in MEPS H229D SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H229D (OBS=20); TITLE 'First 20 Observations in MEPS H229D 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) H229D 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 H229D.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H229D.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 H229D.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 H229D.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\H229D.DAT'; DATA PUFLIB.H229D; 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 (H229D). In the example, after the successful completion of the DATA step, a PC file named H229D.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 H229D.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 H229D.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (324 for H229D.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 H229D.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 (H229D.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.H229D; 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 H229D.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 IPXP21X 9.2 @105 IPTC21X 10.2 @115 IPFSF21X 8.2 @123 IPFMR21X 9.2 @132 IPFMD21X 8.2 @140 IPFPV21X 9.2 @149 IPFVA21X 9.2 @158 IPFTR21X 8.2 @166 IPFOF21X 7.2 @173 IPFSL21X 8.2 @181 IPFWC21X 8.2 @189 IPFOT21X 8.2 @197 IPFXP21X 9.2 @206 IPFTC21X 10.2 @216 IPDSF21X 7.2 @223 IPDMR21X 9.2 @232 IPDMD21X 8.2 @240 IPDPV21X 8.2 @248 IPDVA21X 7.2 @255 IPDTR21X 7.2 @262 IPDOF21X 4.2 @266 IPDSL21X 7.2 @273 IPDWC21X 7.2 @280 IPDOT21X 7.2 @287 IPDXP21X 9.2 @296 IPDTC21X 9.2 @305 IMPFLAG 1.0 @306 PERWT21F 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 NUMNIGHXF. EMERROOM EMERROOMF. SPECCOND SPECCONDF. RSNINHOS RSNINHOSF. ANYOPER ANYOPERF. DSCHPMED DSCHPMEDF. FFIPTYPE FFIPTYPEF. IPXP21X IPXP21XF. IPTC21X IPTC21XF. IPFSF21X IPFSF21XF. IPFMR21X IPFMR21XF. IPFMD21X IPFMD21XF. IPFPV21X IPFPV21XF. IPFVA21X IPFVA21XF. IPFTR21X IPFTR21XF. IPFOF21X IPFOF21XF. IPFSL21X IPFSL21XF. IPFWC21X IPFWC21XF. IPFOT21X IPFOT21XF. IPFXP21X IPFXP21XF. IPFTC21X IPFTC21XF. IPDSF21X IPDSF21XF. IPDMR21X IPDMR21XF. IPDMD21X IPDMD21XF. IPDPV21X IPDPV21XF. IPDVA21X IPDVA21XF. IPDTR21X IPDTR21XF. IPDOF21X IPDOF21XF. IPDSL21X IPDSL21XF. IPDWC21X IPDWC21XF. IPDOT21X IPDOT21XF. IPDXP21X IPDXP21XF. IPDTC21X IPDTC21XF. IMPFLAG IMPFLAGF. PERWT21F PERWT21FF. 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" IPXP21X ="TOTAL EXP FOR EVENT (IPFXP21X + IPDXP21X)" IPTC21X ="TOTAL CHG FOR EVENT (IPFTC21X + IPDTC21X)" IPFSF21X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" IPFMR21X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" IPFMD21X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" IPFPV21X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" IPFVA21X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" IPFTR21X ="FACILITY AMOUNT PAID, TRICARE (IMPUTED)" IPFOF21X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" IPFSL21X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" IPFWC21X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" IPFOT21X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" IPFXP21X ="FACILITY SUM PAYMENTS IPFSF21X - IPFOT21X" IPFTC21X ="TOTAL FACILITY CHARGE (IMPUTED)" IPDSF21X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" IPDMR21X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" IPDMD21X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" IPDPV21X ="DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)" IPDVA21X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" IPDTR21X ="DOCTOR AMOUNT PAID, TRICARE (IMPUTED)" IPDOF21X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" IPDSL21X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" IPDWC21X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" IPDOT21X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" IPDXP21X ="DOCTOR SUM PAYMENTS IPDSF21X - IPDOT21X" IPDTC21X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT21F ="EXPENDITURE FILE PERSON WEIGHT, 2021" VARSTR ="VARIANCE ESTIMATION STRATUM, 2021" VARPSU ="VARIANCE ESTIMATION PSU, 2021" ; * VALUE STATEMENTS; VALUE ANYOPERF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE DSCHPMEDF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE DUIDF 2320005 - 2689438 = "VALID ID" ; VALUE $DUPERSIDF '2320005102' - '2689438101' = "VALID ID" ; VALUE EMERROOMF 1 = "1 YES" 2 = "2 NO" ; VALUE $ERHEVIDXF '-1' = "-1 INAPPLICABLE" '2320005102202001' - '2689415101003401' = "VALID ID" ; VALUE EVENTRNF 1 = "1 ROUND 1" 2 = "2 ROUND 2" 3 = "3 ROUND 3" 4 = "4 ROUND 4" 5 = "5 ROUND 5" 6 = "6 ROUND 6" 7 = "7 ROUND 7" 8 = "8 ROUND 8" 9 = "9 ROUND 9" ; VALUE $EVNTIDXF '2320005102201901' - '2689438101000901' = "VALID ID" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10013' - '10164' = "VALID ID" ; VALUE FFIPTYPEF -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" 2020 = "2020" 2021 = "2021" ; VALUE IPDMD21XF 0 = "0" 0.03 - 106.18 = "$0.03 - $106.18" 106.19 - 310.93 = "$106.19 - $310.93" 310.94 - 1008.09 = "$310.94 - $1,008.09" 1008.1 - 61589.32 = "$1,008.10 - $61,589.32" ; VALUE IPDMR21XF 0 = "0" 6.64 - 185.34 = "$6.64 - $185.34" 185.35 - 508.03 = "$185.35 - $508.03" 508.04 - 1313.79 = "$508.04 - $1,313.79" 1313.8 - 146329 = "$1,313.80 - $146,329.00" ; VALUE IPDOF21XF 0 = "0.00" ; VALUE IPDOT21XF 0 = "0" 2 - 24.26 = "$2.00 - $24.26" 24.27 - 86.04 = "$24.27 - $86.04" 86.05 - 729.2 = "$86.05 - $729.20" 729.21 - 1698.58 = "$729.21 - $1,698.58" ; VALUE IPDPV21XF 0 = "0" 1.73 - 119.45 = "$1.73 - $119.45" 119.46 - 415.57 = "$119.46 - $415.57" 415.58 - 1483.57 = "$415.58 - $1,483.57" 1483.58 - 58117 = "$1,483.58 - $58,117.00" ; VALUE IPDSF21XF 0 = "0" 1 - 38.59 = "$1.00 - $38.59" 38.6 - 133.97 = "$38.60 - $133.97" 133.98 - 434.05 = "$133.98 - $434.05" 434.06 - 5056.33 = "$434.06 - $5,056.33" ; VALUE IPDSL21XF 0 = "0" 59.14 - 1105 = "$59.14 - $1,105.00" ; VALUE IPDTC21XF 0 = "0" 13 - 1074.69 = "$13.00 - $1,074.69" 1074.7 - 2588.16 = "$1,074.70 - $2,588.16" 2588.17 - 6750.78 = "$2,588.17 - $6,750.78" 6750.79 - 264861.14 = "$6,750.79 - $264,861.14" ; VALUE IPDTR21XF 0 = "0" 1.72 - 46.65 = "$1.72 - $46.65" 46.66 - 267.88 = "$46.66 - $267.88" 267.89 - 686.32 = "$267.89 - $686.32" 686.33 - 5130.2 = "$686.33 - $5,130.20" ; VALUE IPDVA21XF 0 = "0" 23.91 - 271.3 = "$23.91 - $271.30" 271.31 - 436.4 = "$271.31 - $436.40" 436.41 - 623.1 = "$436.41 - $623.10" 623.11 - 5030.69 = "$623.11 - $5,030.69" ; VALUE IPDWC21XF 0 = "0" 2 - 2473.64 = "$2.00 - $2,473.64" ; VALUE IPDXP21XF 0 = "0" 6.24 - 273.93 = "$6.24 - $273.93" 273.94 - 762.07 = "$273.94 - $762.07" 762.08 - 1885.32 = "$762.08 - $1,885.32" 1885.33 - 146329 = "$1,885.33 - $146,329.00" ; VALUE IPENDMMF -8 = "-8 DK" -7 = "-7 REFUSED" 1 - 12 = "1-12 MONTH" ; VALUE IPENDYRF -8 = "-8 DK" -7 = "-7 REFUSED" 2021 = "2021" ; VALUE IPFMD21XF 0 = "0" 1.6 - 1117.57 = "$1.60 - $1,117.57" 1117.58 - 3433.93 = "$1,117.58 - $3,433.93" 3433.94 - 7655.59 = "$3,433.94 - $7,655.59" 7655.6 - 78914.26 = "$7,655.60 - $78,914.26" ; VALUE IPFMR21XF 0 = "0" 3.67 - 2903.39 = "$3.67 - $2,903.39" 2903.4 - 7492.85 = "$2,903.40 - $7,492.85" 7492.86 - 14363.16 = "$7,492.86 - $14,363.16" 14363.17 - 420273.84 = "$14,363.17 - $420,273.84" ; VALUE IPFOF21XF 0 = "0" 982.6 - 1054.23 = "$982.60 - $1,054.23" 1054.24 - 1457.41 = "$1,054.24 - $1,457.41" 1457.42 - 2068.75 = "$1,457.42 - $2,068.75" 2068.76 - 2348.55 = "$2,068.76 - $2,348.55" ; VALUE IPFOT21XF 0 = "0" 59.13 - 5758.84 = "$59.13 - $5,758.84" 5758.85 - 7666.99 = "$5,758.85 - $7,666.99" 7667 - 12022.01 = "$7,667.00 - $12,022.01" 12022.02 - 90089.18 = "$12,022.02 - $90,089.18" ; VALUE IPFPV21XF 0 = "0" 0.73 - 1484 = "$0.73 - $1,484.00" 1484.01 - 5765.13 = "$1,484.01 - $5,765.13" 5765.14 - 16303.65 = "$5,765.14 - $16,303.65" 16303.66 - 250508 = "$16,303.66 - $250,508.00" ; VALUE IPFSF21XF 0 = "0" 1 - 150 = "$1.00 - $150.00" 150.01 - 450 = "$150.01 - $450.00" 450.01 - 1300 = "$450.01 - $1,300.00" 1300.01 - 55000 = "$1,300.01 - $55,000.00" ; VALUE IPFSL21XF 0 = "0" 549.67 - 9908.15 = "$549.67 - $9,908.15" 9908.16 - 12022.01 = "$9,908.16 - $12,022.01" 12022.02 - 15886.5 = "$12,022.02 - $15,886.50" 15886.51 - 19492.68 = "$15,886.51 - $19,492.68" ; VALUE IPFTC21XF 0 = "0" 6 - 16100.66 = "$6.00 - $16,100.66" 16100.67 - 31986.73 = "$16,100.67 - $31,986.73" 31986.74 - 63435.37 = "$31,986.74 - $63,435.37" 63435.38 - 4273857.74 = "$63,435.38 - $4,273,857.74" ; VALUE IPFTR21XF 0 = "0" 7.06 - 517.58 = "$7.06 - $517.58" 517.59 - 1484 = "$517.59 - $1,484.00" 1484.01 - 2575.81 = "$1,484.01 - $2,575.81" 2575.82 - 58296.85 = "$2,575.82 - $58,296.85" ; VALUE IPFVA21XF 0 = "0" 159.43 - 5850.84 = "$159.43 - $5,850.84" 5850.85 - 11850.94 = "$5,850.85 - $11,850.94" 11850.95 - 23426.54 = "$11,850.95 - $23,426.54" 23426.55 - 157724.94 = "$23,426.55 - $157,724.94" ; VALUE IPFWC21XF 0 = "0" 4251.32 - 5975.99 = "$4,251.32 - $5,975.99" 5976 - 16606.14 = "$5,976.00 - $16,606.14" 16606.15 - 26473.49 = "$16,606.15 - $26,473.49" 26473.5 - 27435.37 = "$26,473.50 - $27,435.37" ; VALUE IPFXP21XF 0 = "0" 5.29 - 3857.71 = "$5.29 - $3,857.71" 3857.72 - 8901 = "$3,857.72 - $8,901.00" 8901.01 - 16865.47 = "$8,901.01 - $16,865.47" 16865.48 - 421961.72 = "$16,865.48 - $421,961.72" ; VALUE IPTC21XF 0 = "0" 6 - 18033.5 = "$6.00 - $18,033.50" 18033.51 - 35278.45 = "$18,033.51 - $35,278.45" 35278.46 - 70013.52 = "$35,278.46 - $70,013.52" 70013.53 - 4273857.74 = "$70,013.53 - $4,273,857.74" ; VALUE IPXP21XF 0 = "0" 7.77 - 4587.08 = "$7.77 - $4,587.08" 4587.09 - 9937.3 = "$4,587.09 - $9,937.30" 9937.31 - 18472.23 = "$9,937.31 - $18,472.23" 18472.24 - 421961.72 = "$18,472.24 - $421,961.72" ; VALUE MPCDATAF 1 = "1 HAS MPC DATA" 2 = "2 NO MPC DATA" ; VALUE NUMNIGHXF 1 - 159 = "1 - 159 NUMBER OF NIGHTS" ; VALUE PANELF 23 = "23 PANEL 23" 24 = "24 PANEL 24" 25 = "25 PANEL 25" 26 = "26 PANEL 26" ; VALUE PERWT21FF 0 = "0.000000" 427.32102 - 63204.128972 = "427.321020 - 63204.128972" ; VALUE PIDF 101 - 501 = "VALID ID" ; VALUE RSNINHOSF -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 SPECCONDF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE VARPSUF 1 - 8 = "1 - 8 VARPSU" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117 VARSTR" ;