SAS User File for H229E 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 (H229E.SSP) or the ASCII data file (H229E.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\H229E.SSP'; PROC CIMPORT DATA=PUFLIB.H229E 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.H229E; TITLE 'List of Variables in MEPS H229E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H229E (OBS=20); TITLE 'First 20 Observations in MEPS H229E 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) H229E 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 H229E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H229E.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 H229E.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 H229E.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\H229E.DAT'; DATA PUFLIB.H229E; INFILE IN1 LRECL=311; 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 (H229E). In the example, after the successful completion of the DATA step, a PC file named H229E.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 (311 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 H229E.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., 311 for H229E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (313 for H229E.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 (311 for H229E.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 (H229E.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.H229E; 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 H229E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=311; 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 ERDATEYR 4.0 @73 ERDATEMM 2.0 @75 VSTCTGRY 3.0 @78 VSTRELCN 2.0 @80 LABTEST_M18 2.0 @82 SONOGRAM_M18 2.0 @84 XRAYS_M18 2.0 @86 MAMMOG_M18 2.0 @88 MRI_M18 2.0 @90 EKG_M18 2.0 @92 RCVVAC_M18 2.0 @94 SURGPROC 2.0 @96 MEDPRESC 2.0 @98 FFERTYPE 2.0 @100 ERXP21X 8.2 @108 ERTC21X 9.2 @117 ERFSF21X 7.2 @124 ERFMR21X 8.2 @132 ERFMD21X 8.2 @140 ERFPV21X 8.2 @148 ERFVA21X 7.2 @155 ERFTR21X 7.2 @162 ERFOF21X 7.2 @169 ERFSL21X 8.2 @177 ERFWC21X 8.2 @185 ERFOT21X 8.2 @193 ERFXP21X 8.2 @201 ERFTC21X 9.2 @210 ERDSF21X 7.2 @217 ERDMR21X 7.2 @224 ERDMD21X 8.2 @232 ERDPV21X 7.2 @239 ERDVA21X 7.2 @246 ERDTR21X 6.2 @252 ERDOF21X 6.2 @258 ERDSL21X 6.2 @264 ERDWC21X 7.2 @271 ERDOT21X 7.2 @278 ERDXP21X 8.2 @286 ERDTC21X 8.2 @294 IMPFLAG 1.0 @295 PERWT21F 12.6 @307 VARSTR 4.0 @311 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUIDF. PID PIDF. DUPERSID $DUPERSIDF. EVNTIDX $EVNTIDXF. EVENTRN EVENTRNF. ERHEVIDX $ERHEVIDXF. FFEEIDX $FFEEIDXF. PANEL PANELF. MPCDATA MPCDATAF. ERDATEYR ERDATEYRF. ERDATEMM ERDATEMMF. VSTCTGRY VSTCTGRYF. VSTRELCN VSTRELCNF. LABTEST_M18 LABTEST_M18F. SONOGRAM_M18 SONOGRAM_M18F. XRAYS_M18 XRAYS_M18F. MAMMOG_M18 MAMMOG_M18F. MRI_M18 MRI_M18F. EKG_M18 EKG_M18F. RCVVAC_M18 RCVVAC_M18F. SURGPROC SURGPROCF. MEDPRESC MEDPRESCF. FFERTYPE FFERTYPEF. ERXP21X ERXP21XF. ERTC21X ERTC21XF. ERFSF21X ERFSF21XF. ERFMR21X ERFMR21XF. ERFMD21X ERFMD21XF. ERFPV21X ERFPV21XF. ERFVA21X ERFVA21XF. ERFTR21X ERFTR21XF. ERFOF21X ERFOF21XF. ERFSL21X ERFSL21XF. ERFWC21X ERFWC21XF. ERFOT21X ERFOT21XF. ERFXP21X ERFXP21XF. ERFTC21X ERFTC21XF. ERDSF21X ERDSF21XF. ERDMR21X ERDMR21XF. ERDMD21X ERDMD21XF. ERDPV21X ERDPV21XF. ERDVA21X ERDVA21XF. ERDTR21X ERDTR21XF. ERDOF21X ERDOF21XF. ERDSL21X ERDSL21XF. ERDWC21X ERDWC21XF. ERDOT21X ERDOT21XF. ERDXP21X ERDXP21XF. ERDTC21X ERDTC21XF. 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 HOSPITAL STAY" FFEEIDX ="FLAT FEE ID" PANEL ="PANEL NUMBER" MPCDATA ="MPC DATA FLAG" ERDATEYR ="EVENT DATE - YEAR" ERDATEMM ="EVENT DATE - MONTH" VSTCTGRY ="BEST CATEGORY FOR CARE P RECV ON VISIT DT" VSTRELCN ="THIS VISIT RELATED TO SPEC CONDITION" LABTEST_M18 ="THIS VISIT DID P HAVE LAB TESTS" SONOGRAM_M18 ="THIS VISIT DID P HAVE SONOGRAM OR ULTRSD" XRAYS_M18 ="THIS VISIT DID P HAVE X-RAYS" MAMMOG_M18 ="THIS VISIT DID P HAVE A MAMMOGRAM" MRI_M18 ="THIS VISIT DID P HAVE AN MRI/CATSCAN" EKG_M18 ="THIS VISIT DID P HAVE AN EKG, EEG OR ECG" RCVVAC_M18 ="THIS VISIT DID P RECEIVE A VACCINATION" SURGPROC ="WAS SURG PROC PERFORMED ON P THIS VISIT" MEDPRESC ="ANY MEDICINE PRESCRIBED FOR P THIS VISIT" FFERTYPE ="FLAT FEE BUNDLE" ERXP21X ="TOTAL EXP FOR EVENT (ERFXP21X + ERDXP21X)" ERTC21X ="TOTAL CHG FOR EVENT (ERFTC21X + ERDTC21X)" ERFSF21X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" ERFMR21X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" ERFMD21X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" ERFPV21X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" ERFVA21X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" ERFTR21X ="FACILITY AMOUNT PAID, TRICARE (IMPUTED)" ERFOF21X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERFSL21X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERFWC21X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" ERFOT21X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" ERFXP21X ="FACILITY SUM PAYMENTS ERFSF21X - ERFOT21X" ERFTC21X ="TOTAL FACILITY CHARGE (IMPUTED)" ERDSF21X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" ERDMR21X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" ERDMD21X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" ERDPV21X ="DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)" ERDVA21X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" ERDTR21X ="DOCTOR AMOUNT PAID, TRICARE (IMPUTED)" ERDOF21X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERDSL21X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERDWC21X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" ERDOT21X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" ERDXP21X ="DOCTOR SUM PAYMENTS ERDSF21X - ERDOT21X" ERDTC21X ="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 DUIDF 2320005 - 2689497 = "VALID ID" ; VALUE $DUPERSIDF '2320005102' - '2689497101' = "VALID ID" ; VALUE EKG_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE ERDATEMMF -8 = "-8 DK" -7 = "-7 REFUSED" 1 - 12 = "1 - 12 MONTH" ; VALUE ERDATEYRF -8 = "-8 DK" -7 = "-7 REFUSED" 2021 = "2021" ; VALUE ERDMD21XF 0 = "0" 0.33 - 42.86 = "$0.33 - $42.86" 42.87 - 89.97 = "$42.87 - $89.97" 89.98 - 188.22 = "$89.98 - $188.22" 188.23 - 60418.18 = "$188.23 - $60,418.18" ; VALUE ERDMR21XF 0 = "0" 3.95 - 89 = "$3.95 - $89.00" 89.01 - 180.27 = "$89.01 - $180.27" 180.28 - 307.76 = "$180.28 - $307.76" 307.77 - 7428.06 = "$307.77 - $7,428.06" ; VALUE ERDOF21XF 0 = "0" 77.58 - 457 = "$77.58 - $457.00" ; VALUE ERDOT21XF 0 = "0" 8.73 - 51.5 = "$8.73 - $51.50" 51.51 - 138.19 = "$51.51 - $138.19" 138.2 - 268.52 = "$138.20 - $268.52" 268.53 - 1004.78 = "$268.53 - $1,004.78" ; VALUE ERDPV21XF 0 = "0" 1.54 - 46.26 = "$1.54 - $46.26" 46.27 - 169.04 = "$46.27 - $169.04" 169.05 - 414.54 = "$169.05 - $414.54" 414.55 - 8280.04 = "$414.55 - $8,280.04" ; VALUE ERDSF21XF 0 = "0" 0.77 - 28.15 = "$0.77 - $28.15" 28.16 - 99.25 = "$28.16 - $99.25" 99.26 - 192.8 = "$99.26 - $192.80" 192.81 - 6532 = "$192.81 - $6,532.00" ; VALUE ERDSL21XF 0 = "0" 68.18 - 258.1 = "$68.18 - $258.10" ; VALUE ERDTC21XF 0 = "0" 7.29 - 423 = "$7.29 - $423.00" 423.01 - 990 = "$423.01 - $990.00" 990.01 - 1755.78 = "$990.01 - $1,755.78" 1755.79 - 39048.07 = "$1,755.79 - $39,048.07" ; VALUE ERDTR21XF 0 = "0" 1.55 - 5.57 = "$1.55 - $5.57" 5.58 - 37.66 = "$5.58 - $37.66" 37.67 - 82.85 = "$37.67 - $82.85" 82.86 - 761.36 = "$82.86 - $761.36" ; VALUE ERDVA21XF 0 = "0" 1.78 - 39.77 = "$1.78 - $39.77" 39.78 - 120.39 = "$39.78 - $120.39" 120.4 - 366.48 = "$120.40 - $366.48" 366.49 - 1777.86 = "$366.49 - $1,777.86" ; VALUE ERDWC21XF 0 = "0" 9.82 - 97.61 = "$9.82 - $97.61" 97.62 - 195.72 = "$97.62 - $195.72" 195.73 - 372.72 = "$195.73 - $372.72" 372.73 - 4445.1 = "$372.73 - $4,445.10" ; VALUE ERDXP21XF 0 = "0" 3.85 - 83.01 = "$3.85 - $83.01" 83.02 - 189.46 = "$83.02 - $189.46" 189.47 - 360.58 = "$189.47 - $360.58" 360.59 - 60418.18 = "$360.59 - $60,418.18" ; VALUE ERFMD21XF 0 = "0" 0.19 - 101.52 = "$0.19 - $101.52" 101.53 - 204.5 = "$101.53 - $204.50" 204.51 - 486.35 = "$204.51 - $486.35" 486.36 - 47220.22 = "$486.36 - $47,220.22" ; VALUE ERFMR21XF 0 = "0" 1.25 - 177.58 = "$1.25 - $177.58" 177.59 - 438.21 = "$177.59 - $438.21" 438.22 - 761.26 = "$438.22 - $761.26" 761.27 - 20988.01 = "$761.27 - $20,988.01" ; VALUE ERFOF21XF 0 = "0" 10.74 - 137.09 = "$10.74 - $137.09" 137.1 - 420.81 = "$137.10 - $420.81" 420.82 - 1033.5 = "$420.82 - $1,033.50" 1033.51 - 6686.25 = "$1,033.51 - $6,686.25" ; VALUE ERFOT21XF 0 = "0" 10.66 - 242.08 = "$10.66 - $242.08" 242.09 - 958.7 = "$242.09 - $958.70" 958.71 - 2167.52 = "$958.71 - $2,167.52" 2167.53 - 45339.52 = "$2,167.53 - $45,339.52" ; VALUE ERFPV21XF 0 = "0" 1.78 - 157.18 = "$1.78 - $157.18" 157.19 - 601.96 = "$157.19 - $601.96" 601.97 - 1807.33 = "$601.97 - $1,807.33" 1807.34 - 24941.26 = "$1,807.34 - $24,941.26" ; VALUE ERFSF21XF 0 = "0" 0.18 - 62.09 = "$0.18 - $62.09" 62.1 - 120 = "$62.10 - $120.00" 120.01 - 350 = "$120.01 - $350.00" 350.01 - 8174 = "$350.01 - $8,174.00" ; VALUE ERFSL21XF 0 = "0" 16.43 - 427.7 = "$16.43 - $427.70" 427.71 - 768.32 = "$427.71 - $768.32" 768.33 - 1373.6 = "$768.33 - $1,373.60" 1373.61 - 12663.2 = "$1,373.61 - $12,663.20" ; VALUE ERFTC21XF 0 = "0" 12.37 - 1049.53 = "$12.37 - $1,049.53" 1049.54 - 2649.5 = "$1,049.54 - $2,649.50" 2649.51 - 5678.4 = "$2,649.51 - $5,678.40" 5678.41 - 150087.05 = "$5,678.41 - $150,087.05" ; VALUE ERFTR21XF 0 = "0" 0.56 - 62.08 = "$0.56 - $62.08" 62.09 - 201.01 = "$62.09 - $201.01" 201.02 - 446.94 = "$201.02 - $446.94" 446.95 - 7001.22 = "$446.95 - $7,001.22" ; VALUE ERFVA21XF 0 = "0" 3.17 - 362.75 = "$3.17 - $362.75" 362.76 - 948.96 = "$362.76 - $948.96" 948.97 - 1404.43 = "$948.97 - $1,404.43" 1404.44 - 4652.1 = "$1,404.44 - $4,652.10" ; VALUE ERFWC21XF 0 = "0" 139.08 - 389.58 = "$139.08 - $389.58" 389.59 - 1321.57 = "$389.59 - $1,321.57" 1321.58 - 2117.88 = "$1,321.58 - $2,117.88" 2117.89 - 10707.07 = "$2,117.89 - $10,707.07" ; VALUE ERFXP21XF 0 = "0" 2.25 - 211.67 = "$2.25 - $211.67" 211.68 - 547.76 = "$211.68 - $547.76" 547.77 - 1157.03 = "$547.77 - $1,157.03" 1157.04 - 63364.31 = "$1,157.04 - $63,364.31" ; VALUE $ERHEVIDXF '-1' = "-1 INAPPLICABLE" '2320005102201901' - '2689415101003301' = "VALID ID" ; VALUE ERTC21XF 0 = "0" 12.37 - 1194 = "$12.37 - $1,194.00" 1194.01 - 2847 = "$1,194.01 - $2,847.00" 2847.01 - 6209.51 = "$2,847.01 - $6,209.51" 6209.52 - 158927.05 = "$6,209.52 - $158,927.05" ; VALUE ERXP21XF 0 = "0" 2.25 - 231.02 = "$2.25 - $231.02" 231.03 - 581.67 = "$231.03 - $581.67" 581.68 - 1235.17 = "$581.68 - $1,235.17" 1235.18 - 63605.34 = "$1,235.18 - $63,605.34" ; 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 '2320005102202001' - '2689497101003201' = "VALID ID" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10013' - '20259' = "VALID ID" ; VALUE FFERTYPEF -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 LABTEST_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MAMMOG_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MEDPRESCF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE MPCDATAF 1 = "1 HAS MPC DATA" 2 = "2 NO MPC DATA" ; VALUE MRI_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE PANELF 23 = "23 PANEL 23" 24 = "24 PANEL 24" 25 = "25 PANEL 25" 26 = "26 PANEL 26" ; VALUE PERWT21FF 0 = "0.000000" 293.568801 - 74395.629772 = "293.568801 - 74395.629772" ; VALUE PIDF 101 - 501 = "VALID ID" ; VALUE RCVVAC_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SONOGRAM_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SURGPROCF -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" ; VALUE VSTCTGRYF -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 DIAGNOSIS OR TREATMENT" 2 = "2 EMERGENCY (E.G., ACCIDENT OR INJURY)" 3 = "3 PSYCHOTHERAPY/MENTAL HEALTH COUNSELING" 4 = "4 FOLLOW-UP OR POST-OPERATIVE VISIT" 5 = "5 IMMUNIZATIONS OR SHOTS" 6 = "6 PREGNANCY-RELATED (INC PRENATAL/ DELV)" 91 = "91 OTHER" ; VALUE VSTRELCNF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE XRAYS_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ;