SAS User File for H220E 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 (H220E.SSP) or the ASCII data file (H220E.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\H220E.SSP'; PROC CIMPORT DATA=PUFLIB.H220E 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.H220E; TITLE 'List of Variables in MEPS H220E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H220E (OBS=20); TITLE 'First 20 Observations in MEPS H220E 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) H220E 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 H220E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H220E.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 H220E.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 H220E.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\H220E.DAT'; DATA PUFLIB.H220E; INFILE IN1 LRECL=307; 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 (H220E). In the example, after the successful completion of the DATA step, a PC file named H220E.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 (307 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 H220E.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., 307 for H220E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (309 for H220E.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 (307 for H220E.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 (H220E.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.H220E; 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 H220E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=307; 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 ERXP20X 8.2 @108 ERTC20X 9.2 @117 ERFSF20X 8.2 @125 ERFMR20X 8.2 @133 ERFMD20X 8.2 @141 ERFPV20X 8.2 @149 ERFVA20X 8.2 @157 ERFTR20X 7.2 @164 ERFOF20X 7.2 @171 ERFSL20X 8.2 @179 ERFWC20X 7.2 @186 ERFOT20X 8.2 @194 ERFXP20X 8.2 @202 ERFTC20X 9.2 @211 ERDSF20X 7.2 @218 ERDMR20X 7.2 @225 ERDMD20X 7.2 @232 ERDPV20X 7.2 @239 ERDVA20X 6.2 @245 ERDTR20X 6.2 @251 ERDOF20X 4.2 @255 ERDSL20X 6.2 @261 ERDWC20X 7.2 @268 ERDOT20X 7.2 @275 ERDXP20X 7.2 @282 ERDTC20X 8.2 @290 IMPFLAG 1.0 @291 PERWT20F 12.6 @303 VARSTR 4.0 @307 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. ERXP20X ERXP20XF. ERTC20X ERTC20XF. ERFSF20X ERFSF20XF. ERFMR20X ERFMR20XF. ERFMD20X ERFMD20XF. ERFPV20X ERFPV20XF. ERFVA20X ERFVA20XF. ERFTR20X ERFTR20XF. ERFOF20X ERFOF20XF. ERFSL20X ERFSL20XF. ERFWC20X ERFWC20XF. ERFOT20X ERFOT20XF. ERFXP20X ERFXP20XF. ERFTC20X ERFTC20XF. ERDSF20X ERDSF20XF. ERDMR20X ERDMR20XF. ERDMD20X ERDMD20XF. ERDPV20X ERDPV20XF. ERDVA20X ERDVA20XF. ERDTR20X ERDTR20XF. ERDOF20X ERDOF20XF. ERDSL20X ERDSL20XF. ERDWC20X ERDWC20XF. ERDOT20X ERDOT20XF. ERDXP20X ERDXP20XF. ERDTC20X ERDTC20XF. IMPFLAG IMPFLAGF. PERWT20F PERWT20FF. 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" ERXP20X ="TOTAL EXP FOR EVENT (ERFXP20X + ERDXP20X)" ERTC20X ="TOTAL CHG FOR EVENT (ERFTC20X + ERDTC20X)" ERFSF20X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" ERFMR20X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" ERFMD20X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" ERFPV20X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" ERFVA20X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" ERFTR20X ="FACILITY AMOUNT PAID, TRICARE (IMPUTED)" ERFOF20X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERFSL20X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERFWC20X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" ERFOT20X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" ERFXP20X ="FACILITY SUM PAYMENTS ERFSF20X - ERFOT20X" ERFTC20X ="TOTAL FACILITY CHARGE (IMPUTED)" ERDSF20X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" ERDMR20X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" ERDMD20X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" ERDPV20X ="DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)" ERDVA20X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" ERDTR20X ="DOCTOR AMOUNT PAID, TRICARE (IMPUTED)" ERDOF20X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERDSL20X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERDWC20X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" ERDOT20X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" ERDXP20X ="DOCTOR SUM PAYMENTS ERDSF20X - ERDOT20X" ERDTC20X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT20F ="EXPENDITURE FILE PERSON WEIGHT, 2020" VARSTR ="VARIANCE ESTIMATION STRATUM, 2020" VARPSU ="VARIANCE ESTIMATION PSU, 2020" ; * VALUE STATEMENTS; VALUE DUIDF 2320006 - 2579835 = "VALID ID" ; VALUE $DUPERSIDF '2320006102' - '2579835101' = "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" 2020 = "2020" ; VALUE ERDMD20XF 0 = "0" 0.06 - 42.88 = "$0.06 - $42.88" 42.89 - 94.46 = "$42.89 - $94.46" 94.47 - 178.91 = "$94.47 - $178.91" 178.92 - 6384.13 = "$178.92 - $6,384.13" ; VALUE ERDMR20XF 0 = "0" 2.9 - 81.54 = "$2.90 - $81.54" 81.55 - 164.89 = "$81.55 - $164.89" 164.9 - 289.51 = "$164.90 - $289.51" 289.52 - 6023.22 = "$289.52 - $6,023.22" ; VALUE ERDOF20XF 0 = "0.00" ; VALUE ERDOT20XF 0 = "0" 9.26 - 61.68 = "$9.26 - $61.68" 61.69 - 127.4 = "$61.69 - $127.40" 127.41 - 406.05 = "$127.41 - $406.05" 406.06 - 1832.8 = "$406.06 - $1,832.80" ; VALUE ERDPV20XF 0 = "0" 1.39 - 45.27 = "$1.39 - $45.27" 45.28 - 153.6 = "$45.28 - $153.60" 153.61 - 433.55 = "$153.61 - $433.55" 433.56 - 9236.29 = "$433.56 - $9,236.29" ; VALUE ERDSF20XF 0 = "0" 1.93 - 25 = "$1.93 - $25.00" 25.01 - 74.16 = "$25.01 - $74.16" 74.17 - 184.33 = "$74.17 - $184.33" 184.34 - 1450 = "$184.34 - $1,450.00" ; VALUE ERDSL20XF 0 = "0" 61.99 - 133.63 = "$61.99 - $133.63" 133.64 - 316.18 = "$133.64 - $316.18" 316.19 - 652.68 = "$316.19 - $652.68" 652.69 - 878.27 = "$652.69 - $878.27" ; VALUE ERDTC20XF 0 = "0" 14.53 - 399 = "$14.53 - $399.00" 399.01 - 925.19 = "$399.01 - $925.19" 925.2 - 1735 = "$925.20 - $1,735.00" 1735.01 - 31952 = "$1,735.01 - $31,952.00" ; VALUE ERDTR20XF 0 = "0" 1.49 - 35.87 = "$1.49 - $35.87" 35.88 - 87.03 = "$35.88 - $87.03" 87.04 - 147.88 = "$87.04 - $147.88" 147.89 - 776.62 = "$147.89 - $776.62" ; VALUE ERDVA20XF 0 = "0" 2.29 - 54.71 = "$2.29 - $54.71" 54.72 - 191.56 = "$54.72 - $191.56" 191.57 - 262.66 = "$191.57 - $262.66" 262.67 - 644.71 = "$262.67 - $644.71" ; VALUE ERDWC20XF 0 = "0" 18.18 - 174.63 = "$18.18 - $174.63" 174.64 - 258.96 = "$174.64 - $258.96" 258.97 - 547.78 = "$258.97 - $547.78" 547.79 - 5403.32 = "$547.79 - $5,403.32" ; VALUE ERDXP20XF 0 = "0" 3.6 - 80.5 = "$3.60 - $80.50" 80.51 - 183.66 = "$80.51 - $183.66" 183.67 - 369.02 = "$183.67 - $369.02" 369.03 - 9236.29 = "$369.03 - $9,236.29" ; VALUE ERFMD20XF 0 = "0" 0.11 - 111.37 = "$0.11 - $111.37" 111.38 - 222.34 = "$111.38 - $222.34" 222.35 - 493.31 = "$222.35 - $493.31" 493.32 - 37271 = "$493.32 - $37,271.00" ; VALUE ERFMR20XF 0 = "0" 3.16 - 170.12 = "$3.16 - $170.12" 170.13 - 409.69 = "$170.13 - $409.69" 409.7 - 765.35 = "$409.70 - $765.35" 765.36 - 10588.21 = "$765.36 - $10,588.21" ; VALUE ERFOF20XF 0 = "0" 18.25 - 55.16 = "$18.25 - $55.16" 55.17 - 418.46 = "$55.17 - $418.46" 418.47 - 1044.57 = "$418.47 - $1,044.57" 1044.58 - 2022.13 = "$1,044.58 - $2,022.13" ; VALUE ERFOT20XF 0 = "0" 27.26 - 890.56 = "$27.26 - $890.56" 890.57 - 1623.15 = "$890.57 - $1,623.15" 1623.16 - 5000 = "$1,623.16 - $5,000.00" 5000.01 - 11000 = "$5,000.01 - $11,000.00" ; VALUE ERFPV20XF 0 = "0" 0.01 - 150.8 = "$0.01 - $150.80" 150.81 - 533.08 = "$150.81 - $533.08" 533.09 - 1456 = "$533.09 - $1,456.00" 1456.01 - 49999.94 = "$1,456.01 - $49,999.94" ; VALUE ERFSF20XF 0 = "0" 3 - 60.93 = "$3.00 - $60.93" 60.94 - 120 = "$60.94 - $120.00" 120.01 - 356 = "$120.01 - $356.00" 356.01 - 16000 = "$356.01 - $16,000.00" ; VALUE ERFSL20XF 0 = "0" 34.16 - 408.15 = "$34.16 - $408.15" 408.16 - 887.27 = "$408.16 - $887.27" 887.28 - 1523.66 = "$887.28 - $1,523.66" 1523.67 - 11048.38 = "$1,523.67 - $11,048.38" ; VALUE ERFTC20XF 0 = "0" 12 - 1050.43 = "$12.00 - $1,050.43" 1050.44 - 2579.57 = "$1,050.44 - $2,579.57" 2579.58 - 5243.76 = "$2,579.58 - $5,243.76" 5243.77 - 209362.63 = "$5,243.77 - $209,362.63" ; VALUE ERFTR20XF 0 = "0" 5 - 120.02 = "$5.00 - $120.02" 120.03 - 291.26 = "$120.03 - $291.26" 291.27 - 824.3 = "$291.27 - $824.30" 824.31 - 7226 = "$824.31 - $7,226.00" ; VALUE ERFVA20XF 0 = "0" 5.44 - 362.33 = "$5.44 - $362.33" 362.34 - 975.21 = "$362.34 - $975.21" 975.22 - 1419.78 = "$975.22 - $1,419.78" 1419.79 - 13676.63 = "$1,419.79 - $13,676.63" ; VALUE ERFWC20XF 0 = "0" 83.37 - 343.75 = "$83.37 - $343.75" 343.76 - 713.75 = "$343.76 - $713.75" 713.76 - 2182.27 = "$713.76 - $2,182.27" 2182.28 - 7686.81 = "$2,182.28 - $7,686.81" ; VALUE ERFXP20XF 0 = "0" 3.16 - 220.81 = "$3.16 - $220.81" 220.82 - 539.1 = "$220.82 - $539.10" 539.11 - 1146.24 = "$539.11 - $1,146.24" 1146.25 - 49999.94 = "$1,146.25 - $49,999.94" ; VALUE $ERHEVIDXF '-1' = "-1 INAPPLICABLE" '2320091101201201' - '2579725101000401' = "VALID ID" ; VALUE ERTC20XF 0 = "0" 12 - 1188 = "$12.00 - $1,188.00" 1188.01 - 2870 = "$1,188.01 - $2,870.00" 2870.01 - 5917 = "$2,870.01 - $5,917.00" 5917.01 - 209362.63 = "$5,917.01 - $209,362.63" ; VALUE ERXP20XF 0 = "0" 3.21 - 240.67 = "$3.21 - $240.67" 240.68 - 593.12 = "$240.68 - $593.12" 593.13 - 1253.84 = "$593.13 - $1,253.84" 1253.85 - 50581.05 = "$1,253.85 - $50,581.05" ; 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" ; VALUE $EVNTIDXF '2320006102202401' - '2579835101000201' = "VALID ID" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10062' - '246342110101' = "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" ; VALUE PERWT20FF 0 = "0.000000" 605.0395 - 80931.517052 = "605.039500 - 80931.517052" ; 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 - 6 = "1 - 6 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" ;