SAS User File for H239E 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 (H239E.SSP) or the ASCII data file (H239E.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\H239E.SSP'; PROC CIMPORT DATA=PUFLIB.H239E 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.H239E; TITLE 'List of Variables in MEPS H239E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H239E (OBS=20); TITLE 'First 20 Observations in MEPS H239E 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) H239E 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 H239E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H239E.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 H239E.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 H239E.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\H239E.DAT'; DATA PUFLIB.H239E; INFILE IN1 LRECL=310; 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 (H239E). In the example, after the successful completion of the DATA step, a PC file named H239E.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 (310 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 H239E.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., 310 for H239E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (312 for H239E.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 (310 for H239E.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 (H239E.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.H239E; 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 H239E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=310; 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 ERXP22X 9.2 @109 ERTC22X 9.2 @118 ERFSF22X 7.2 @125 ERFMR22X 8.2 @133 ERFMD22X 7.2 @140 ERFPV22X 9.2 @149 ERFVA22X 7.2 @156 ERFTR22X 7.2 @163 ERFOF22X 8.2 @171 ERFSL22X 7.2 @178 ERFWC22X 8.2 @186 ERFOT22X 7.2 @193 ERFXP22X 9.2 @202 ERFTC22X 9.2 @211 ERDSF22X 7.2 @218 ERDMR22X 7.2 @225 ERDMD22X 7.2 @232 ERDPV22X 7.2 @239 ERDVA22X 7.2 @246 ERDTR22X 7.2 @253 ERDOF22X 6.2 @259 ERDSL22X 5.2 @264 ERDWC22X 7.2 @271 ERDOT22X 6.2 @277 ERDXP22X 7.2 @284 ERDTC22X 8.2 @292 IMPFLAG 1.0 @293 PERWT22F 13.6 @306 VARSTR 4.0 @310 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. ERXP22X ERXP22XF. ERTC22X ERTC22XF. ERFSF22X ERFSF22XF. ERFMR22X ERFMR22XF. ERFMD22X ERFMD22XF. ERFPV22X ERFPV22XF. ERFVA22X ERFVA22XF. ERFTR22X ERFTR22XF. ERFOF22X ERFOF22XF. ERFSL22X ERFSL22XF. ERFWC22X ERFWC22XF. ERFOT22X ERFOT22XF. ERFXP22X ERFXP22XF. ERFTC22X ERFTC22XF. ERDSF22X ERDSF22XF. ERDMR22X ERDMR22XF. ERDMD22X ERDMD22XF. ERDPV22X ERDPV22XF. ERDVA22X ERDVA22XF. ERDTR22X ERDTR22XF. ERDOF22X ERDOF22XF. ERDSL22X ERDSL22XF. ERDWC22X ERDWC22XF. ERDOT22X ERDOT22XF. ERDXP22X ERDXP22XF. ERDTC22X ERDTC22XF. IMPFLAG IMPFLAGF. PERWT22F PERWT22FF. 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" ERXP22X ="TOTAL EXP FOR EVENT (ERFXP22X + ERDXP22X)" ERTC22X ="TOTAL CHG FOR EVENT (ERFTC22X + ERDTC22X)" ERFSF22X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" ERFMR22X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" ERFMD22X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" ERFPV22X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" ERFVA22X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" ERFTR22X ="FACILITY AMOUNT PAID, TRICARE (IMPUTED)" ERFOF22X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERFSL22X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERFWC22X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" ERFOT22X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" ERFXP22X ="FACILITY SUM PAYMENTS ERFSF22X - ERFOT22X" ERFTC22X ="TOTAL FACILITY CHARGE (IMPUTED)" ERDSF22X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" ERDMR22X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" ERDMD22X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" ERDPV22X ="DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)" ERDVA22X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" ERDTR22X ="DOCTOR AMOUNT PAID, TRICARE (IMPUTED)" ERDOF22X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERDSL22X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERDWC22X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" ERDOT22X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" ERDXP22X ="DOCTOR SUM PAYMENTS ERDSF22X - ERDOT22X" ERDTC22X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT22F ="EXPENDITURE FILE PERSON WEIGHT, 2022" VARSTR ="VARIANCE ESTIMATION STRATUM, 2022" VARPSU ="VARIANCE ESTIMATION PSU, 2022" ; * VALUE STATEMENTS; VALUE DUIDF 2460006 - 2799673 = "VALID ID" ; VALUE $DUPERSIDF '2460006101' - '2799673101' = "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" 2022 = "2022" ; VALUE ERDMD22XF 0 = "0" 0.26 - 41.76 = "$0.26 - $41.76" 41.77 - 98.28 = "$41.77 - $98.28" 98.29 - 189.51 = "$98.29 - $189.51" 189.52 - 5773.17 = "$189.52 - $5,773.17" ; VALUE ERDMR22XF 0 = "0" 1.92 - 78.13 = "$1.92 - $78.13" 78.14 - 167.88 = "$78.14 - $167.88" 167.89 - 283.99 = "$167.89 - $283.99" 284 - 2954.52 = "$284.00 - $2,954.52" ; VALUE ERDOF22XF 0 = "0" 174.2 = "$174.20" ; VALUE ERDOT22XF 0 = "0" 2.1 - 74.78 = "$2.10 - $74.78" 74.79 - 143.5 = "$74.79 - $143.50" 143.51 - 282.81 = "$143.51 - $282.81" 282.82 - 600.06 = "$282.82 - $600.06" ; VALUE ERDPV22XF 0 = "0" 1.64 - 41.94 = "$1.64 - $41.94" 41.95 - 181.72 = "$41.95 - $181.72" 181.73 - 452.32 = "$181.73 - $452.32" 452.33 - 8321.83 = "$452.33 - $8,321.83" ; VALUE ERDSF22XF 0 = "0" 1 - 30.15 = "$1.00 - $30.15" 30.16 - 75 = "$30.16 - $75.00" 75.01 - 191.42 = "$75.01 - $191.42" 191.43 - 2216 = "$191.43 - $2,216.00" ; VALUE ERDSL22XF 0 = "0" 69.81 = "$69.81" ; VALUE ERDTC22XF 0 = "0" 6.33 - 421.75 = "$6.33 - $421.75" 421.76 - 982.5 = "$421.76 - $982.50" 982.51 - 1749.5 = "$982.51 - $1,749.50" 1749.51 - 22723.1 = "$1,749.51 - $22,723.10" ; VALUE ERDTR22XF 0 = "0" 1.8 - 20.56 = "$1.80 - $20.56" 20.57 - 46.03 = "$20.57 - $46.03" 46.04 - 79.1 = "$46.04 - $79.10" 79.11 - 1057.01 = "$79.11 - $1,057.01" ; VALUE ERDVA22XF 0 = "0" 1.79 - 9.64 = "$1.79 - $9.64" 9.65 - 119.95 = "$9.65 - $119.95" 119.96 - 415.71 = "$119.96 - $415.71" 415.72 - 1786.83 = "$415.72 - $1,786.83" ; VALUE ERDWC22XF 0 = "0" 13.63 - 186.04 = "$13.63 - $186.04" 186.05 - 350.97 = "$186.05 - $350.97" 350.98 - 856.99 = "$350.98 - $856.99" 857 - 1414.08 = "$857.00 - $1,414.08" ; VALUE ERDXP22XF 0 = "0" 1 - 84.56 = "$1.00 - $84.56" 84.57 - 184.71 = "$84.57 - $184.71" 184.72 - 359.91 = "$184.72 - $359.91" 359.92 - 8321.83 = "$359.92 - $8,321.83" ; VALUE ERFMD22XF 0 = "0" 0.01 - 106.06 = "$0.01 - $106.06" 106.07 - 236.42 = "$106.07 - $236.42" 236.43 - 531.44 = "$236.43 - $531.44" 531.45 - 9866.25 = "$531.45 - $9,866.25" ; VALUE ERFMR22XF 0 = "0" 3.36 - 180.05 = "$3.36 - $180.05" 180.06 - 434.93 = "$180.06 - $434.93" 434.94 - 791.85 = "$434.94 - $791.85" 791.86 - 33647 = "$791.86 - $33,647.00" ; VALUE ERFOF22XF 0 = "0" 6.93 - 176.19 = "$6.93 - $176.19" 176.2 - 602.08 = "$176.20 - $602.08" 602.09 - 2115.44 = "$602.09 - $2,115.44" 2115.45 - 12991.31 = "$2,115.45 - $12,991.31" ; VALUE ERFOT22XF 0 = "0" 15.35 - 242.57 = "$15.35 - $242.57" 242.58 - 1137.28 = "$242.58 - $1,137.28" 1137.29 - 1600.6 = "$1,137.29 - $1,600.60" 1600.61 - 7587.44 = "$1,600.61 - $7,587.44" ; VALUE ERFPV22XF 0 = "0" 0.01 - 150.22 = "$0.01 - $150.22" 150.23 - 647.4 = "$150.23 - $647.40" 647.41 - 1886.16 = "$647.41 - $1,886.16" 1886.17 - 130000 = "$1,886.17 - $130,000.00" ; VALUE ERFSF22XF 0 = "0" 0.88 - 59.85 = "$0.88 - $59.85" 59.86 - 104.56 = "$59.86 - $104.56" 104.57 - 300 = "$104.57 - $300.00" 300.01 - 6600 = "$300.01 - $6,600.00" ; VALUE ERFSL22XF 0 = "0" 50 - 343.41 = "$50.00 - $343.41" 343.42 - 931.62 = "$343.42 - $931.62" 931.63 - 2245.92 = "$931.63 - $2,245.92" 2245.93 - 6781.01 = "$2,245.93 - $6,781.01" ; VALUE ERFTC22XF 0 = "0" 15 - 1126.79 = "$15.00 - $1,126.79" 1126.8 - 2614.39 = "$1,126.80 - $2,614.39" 2614.4 - 5640.01 = "$2,614.40 - $5,640.01" 5640.02 - 198046.19 = "$5,640.02 - $198,046.19" ; VALUE ERFTR22XF 0 = "0" 11.06 - 90.72 = "$11.06 - $90.72" 90.73 - 209.68 = "$90.73 - $209.68" 209.69 - 459.66 = "$209.69 - $459.66" 459.67 - 2364.51 = "$459.67 - $2,364.51" ; VALUE ERFVA22XF 0 = "0" 30.61 - 305.12 = "$30.61 - $305.12" 305.13 - 934.68 = "$305.13 - $934.68" 934.69 - 1515.58 = "$934.69 - $1,515.58" 1515.59 - 7368.52 = "$1,515.59 - $7,368.52" ; VALUE ERFWC22XF 0 = "0" 77.9 - 294.23 = "$77.90 - $294.23" 294.24 - 1063.5 = "$294.24 - $1,063.50" 1063.51 - 2301.01 = "$1,063.51 - $2,301.01" 2301.02 - 16719.92 = "$2,301.02 - $16,719.92" ; VALUE ERFXP22XF 0 = "0" 0.01 - 232.76 = "$0.01 - $232.76" 232.77 - 569.03 = "$232.77 - $569.03" 569.04 - 1231.61 = "$569.04 - $1,231.61" 1231.62 - 131000 = "$1,231.62 - $131,000.00" ; VALUE $ERHEVIDXF '-1' = "-1 INAPPLICABLE" '2460099101004601' - '2799645101001101' = "VALID ID" ; VALUE ERTC22XF 0 = "0" 15 - 1272.59 = "$15.00 - $1,272.59" 1272.6 - 2949.08 = "$1,272.60 - $2,949.08" 2949.09 - 6127.5 = "$2,949.09 - $6,127.50" 6127.51 - 198046.19 = "$6,127.51 - $198,046.19" ; VALUE ERXP22XF 0 = "0" 0.01 - 249.31 = "$0.01 - $249.31" 249.32 - 622.91 = "$249.32 - $622.91" 622.92 - 1358.97 = "$622.92 - $1,358.97" 1358.98 - 131000 = "$1,358.98 - $131,000.00" ; 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 '2460006101010301' - '2799673101002501' = "VALID ID" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10005' - '20424' = "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 24 = "24 PANEL 24" 26 = "26 PANEL 26" 27 = "27 PANEL 27" ; VALUE PERWT22FF 0 = "0.000000" 372.34091 - 104224.992951 = "372.340910 - 104224.992951" ; 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" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117" ; 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" ;