SAS User File for H248E 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 (H248E.SSP) or the ASCII data file (H248E.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\H248E.SSP'; PROC CIMPORT DATA=PUFLIB.H248E 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.H248E; TITLE 'List of Variables in MEPS H248E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H248E (OBS=20); TITLE 'First 20 Observations in MEPS H248E 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) H248E 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 H248E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H248E.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 H248E.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 H248E.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\H248E.DAT'; DATA PUFLIB.H248E; INFILE IN1 LRECL=309; 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 (H248E). In the example, after the successful completion of the DATA step, a PC file named H248E.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 (309 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 H248E.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., 309 for H248E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (311 for H248E.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 (309 for H248E.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 (H248E.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.H248E; 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 H248E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=309; 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 ERXP23X 9.2 @109 ERTC23X 9.2 @118 ERFSF23X 8.2 @126 ERFMR23X 8.2 @134 ERFMD23X 7.2 @141 ERFPV23X 9.2 @150 ERFVA23X 8.2 @158 ERFTR23X 7.2 @165 ERFOF23X 7.2 @172 ERFSL23X 6.2 @178 ERFWC23X 7.2 @185 ERFOT23X 8.2 @193 ERFXP23X 9.2 @202 ERFTC23X 9.2 @211 ERDSF23X 7.2 @218 ERDMR23X 7.2 @225 ERDMD23X 7.2 @232 ERDPV23X 7.2 @239 ERDVA23X 7.2 @246 ERDTR23X 7.2 @253 ERDOF23X 4.2 @257 ERDSL23X 6.2 @263 ERDWC23X 6.2 @269 ERDOT23X 7.2 @276 ERDXP23X 7.2 @283 ERDTC23X 8.2 @291 IMPFLAG 1.0 @292 PERWT23F 13.6 @305 VARSTR 4.0 @309 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. ERXP23X ERXP23XF. ERTC23X ERTC23XF. ERFSF23X ERFSF23XF. ERFMR23X ERFMR23XF. ERFMD23X ERFMD23XF. ERFPV23X ERFPV23XF. ERFVA23X ERFVA23XF. ERFTR23X ERFTR23XF. ERFOF23X ERFOF23XF. ERFSL23X ERFSL23XF. ERFWC23X ERFWC23XF. ERFOT23X ERFOT23XF. ERFXP23X ERFXP23XF. ERFTC23X ERFTC23XF. ERDSF23X ERDSF23XF. ERDMR23X ERDMR23XF. ERDMD23X ERDMD23XF. ERDPV23X ERDPV23XF. ERDVA23X ERDVA23XF. ERDTR23X ERDTR23XF. ERDOF23X ERDOF23XF. ERDSL23X ERDSL23XF. ERDWC23X ERDWC23XF. ERDOT23X ERDOT23XF. ERDXP23X ERDXP23XF. ERDTC23X ERDTC23XF. IMPFLAG IMPFLAGF. PERWT23F PERWT23FF. 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" ERXP23X ="TOTAL EXP FOR EVENT (ERFXP23X + ERDXP23X)" ERTC23X ="TOTAL CHG FOR EVENT (ERFTC23X + ERDTC23X)" ERFSF23X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" ERFMR23X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" ERFMD23X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" ERFPV23X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" ERFVA23X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" ERFTR23X ="FACILITY AMOUNT PAID, TRICARE (IMPUTED)" ERFOF23X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERFSL23X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERFWC23X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" ERFOT23X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" ERFXP23X ="FACILITY SUM PAYMENTS ERFSF23X - ERFOT23X" ERFTC23X ="TOTAL FACILITY CHARGE (IMPUTED)" ERDSF23X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" ERDMR23X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" ERDMD23X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" ERDPV23X ="DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)" ERDVA23X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" ERDTR23X ="DOCTOR AMOUNT PAID, TRICARE (IMPUTED)" ERDOF23X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERDSL23X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERDWC23X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" ERDOT23X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" ERDXP23X ="DOCTOR SUM PAYMENTS ERDSF23X - ERDOT23X" ERDTC23X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT23F ="EXPENDITURE FILE PERSON WEIGHT, 2023" VARSTR ="VARIANCE ESTIMATION STRATUM, 2023" VARPSU ="VARIANCE ESTIMATION PSU, 2023" ; * VALUE STATEMENTS; VALUE DUIDF 2790032 - 2819792 = "VALID ID" ; VALUE $DUPERSIDF '2790032106' - '2819792101' = "VALID ID" ; VALUE EKG_M18F -8 = "-8 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE ERDATEMMF -8 = "-8 DON'T KNOW" -7 = "-7 REFUSED" 1 - 12 = "1 - 12 MONTH" ; VALUE ERDATEYRF -8 = "-8 DON'T KNOW" -7 = "-7 REFUSED" 2023 = "2023" ; VALUE ERDMD23XF 0 = "0" 0.28 - 60.92 = "$0.28 - $60.92" 60.93 - 161.24 = "$60.93 - $161.24" 161.25 - 324.76 = "$161.25 - $324.76" 324.77 - 3145 = "$324.77 - $3,145.00" ; VALUE ERDMR23XF 0 = "0" 1.53 - 69.91 = "$1.53 - $69.91" 69.92 - 168.75 = "$69.92 - $168.75" 168.76 - 324.98 = "$168.76 - $324.98" 324.99 - 3510 = "$324.99 - $3,510.00" ; VALUE ERDOF23XF 0 = "0.00" ; VALUE ERDOT23XF 0 = "0" 18.92 - 242.26 = "$18.92 - $242.26" 242.27 - 359 = "$242.27 - $359.00" 359.01 - 600.12 = "$359.01 - $600.12" 600.13 - 1015.71 = "$600.13 - $1,015.71" ; VALUE ERDPV23XF 0 = "0" 1.26 - 33.35 = "$1.26 - $33.35" 33.36 - 180.73 = "$33.36 - $180.73" 180.74 - 487.25 = "$180.74 - $487.25" 487.26 - 4384.44 = "$487.26 - $4,384.44" ; VALUE ERDSF23XF 0 = "0" 1.58 - 33 = "$1.58 - $33.00" 33.01 - 80 = "$33.01 - $80.00" 80.01 - 212.84 = "$80.01 - $212.84" 212.85 - 6500 = "$212.85 - $6,500.00" ; VALUE ERDSL23XF 0 = "0" 38.2 - 108.08 = "$38.20 - $108.08" 108.09 - 205.17 = "$108.09 - $205.17" 205.18 - 322.85 = "$205.18 - $322.85" 322.86 - 499.08 = "$322.86 - $499.08" ; VALUE ERDTC23XF 0 = "0" 15 - 438.27 = "$15.00 - $438.27" 438.28 - 1040 = "$438.28 - $1,040.00" 1040.01 - 1873 = "$1,040.01 - $1,873.00" 1873.01 - 19664 = "$1,873.01 - $19,664.00" ; VALUE ERDTR23XF 0 = "0" 2.48 - 34.72 = "$2.48 - $34.72" 34.73 - 73.15 = "$34.73 - $73.15" 73.16 - 218.68 = "$73.16 - $218.68" 218.69 - 1062.51 = "$218.69 - $1,062.51" ; VALUE ERDVA23XF 0 = "0" 7.9 - 92.77 = "$7.90 - $92.77" 92.78 - 211.09 = "$92.78 - $211.09" 211.1 - 417.87 = "$211.10 - $417.87" 417.88 - 2253.47 = "$417.88 - $2,253.47" ; VALUE ERDWC23XF 0 = "0" 21.06 - 128.43 = "$21.06 - $128.43" 128.44 - 219.49 = "$128.44 - $219.49" 219.5 - 400.66 = "$219.50 - $400.66" 400.67 - 432.44 = "$400.67 - $432.44" ; VALUE ERDXP23XF 0 = "0" 2.29 - 94.9 = "$2.29 - $94.90" 94.91 - 216.01 = "$94.91 - $216.01" 216.02 - 429.4 = "$216.02 - $429.40" 429.41 - 7123.2 = "$429.41 - $7,123.20" ; VALUE ERFMD23XF 0 = "0" 0.14 - 119.8 = "$0.14 - $119.80" 119.81 - 259.59 = "$119.81 - $259.59" 259.6 - 543.17 = "$259.60 - $543.17" 543.18 - 8821.75 = "$543.18 - $8,821.75" ; VALUE ERFMR23XF 0 = "0" 2.62 - 204.74 = "$2.62 - $204.74" 204.75 - 467.17 = "$204.75 - $467.17" 467.18 - 844.67 = "$467.18 - $844.67" 844.68 - 11358.84 = "$844.68 - $11,358.84" ; VALUE ERFOF23XF 0 = "0" 57.55 - 78.57 = "$57.55 - $78.57" 78.58 - 301.75 = "$78.58 - $301.75" 301.76 - 987.72 = "$301.76 - $987.72" 987.73 - 1500 = "$987.73 - $1,500.00" ; VALUE ERFOT23XF 0 = "0" 101.84 - 530.09 = "$101.84 - $530.09" 530.1 - 1361.19 = "$530.10 - $1,361.19" 1361.2 - 6778.7 = "$1,361.20 - $6,778.70" 6778.71 - 17164.83 = "$6,778.71 - $17,164.83" ; VALUE ERFPV23XF 0 = "0" 1.59 - 160.47 = "$1.59 - $160.47" 160.48 - 586.56 = "$160.48 - $586.56" 586.57 - 1780.06 = "$586.57 - $1,780.06" 1780.07 - 190000 = "$1,780.07 - $190,000.00" ; VALUE ERFSF23XF 0 = "0" 0.48 - 75 = "$0.48 - $75.00" 75.01 - 120 = "$75.01 - $120.00" 120.01 - 374.19 = "$120.01 - $374.19" 374.2 - 38235.28 = "$374.20 - $38,235.28" ; VALUE ERFSL23XF 0 = "0" 37.16 - 54.8 = "$37.16 - $54.80" 54.81 - 297.86 = "$54.81 - $297.86" 297.87 - 478.47 = "$297.87 - $478.47" 478.48 - 744.44 = "$478.48 - $744.44" ; VALUE ERFTC23XF 0 = "0" 16 - 1349.6 = "$16.00 - $1,349.60" 1349.61 - 3096.25 = "$1,349.61 - $3,096.25" 3096.26 - 6369.62 = "$3,096.26 - $6,369.62" 6369.63 - 423427.67 = "$6,369.63 - $423,427.67" ; VALUE ERFTR23XF 0 = "0" 0.83 - 124.96 = "$0.83 - $124.96" 124.97 - 266.45 = "$124.97 - $266.45" 266.46 - 581.4 = "$266.46 - $581.40" 581.41 - 3154.5 = "$581.41 - $3,154.50" ; VALUE ERFVA23XF 0 = "0" 3.56 - 372.63 = "$3.56 - $372.63" 372.64 - 780.57 = "$372.64 - $780.57" 780.58 - 1328.22 = "$780.58 - $1,328.22" 1328.23 - 23542.07 = "$1,328.23 - $23,542.07" ; VALUE ERFWC23XF 0 = "0" 369.83 - 530.09 = "$369.83 - $530.09" 530.1 - 1014.82 = "$530.10 - $1,014.82" 1014.83 - 2961.49 = "$1,014.83 - $2,961.49" 2961.5 - 8998.56 = "$2,961.50 - $8,998.56" ; VALUE ERFXP23XF 0 = "0" 1.5 - 258.23 = "$1.50 - $258.23" 258.24 - 587.61 = "$258.24 - $587.61" 587.62 - 1239.73 = "$587.62 - $1,239.73" 1239.74 - 190850 = "$1,239.74 - $190,850.00" ; VALUE $ERHEVIDXF '-1' = "-1 INAPPLICABLE" '2790046103004701' - '2819765101000101' = "VALID ID" ; VALUE ERTC23XF 0 = "0" 15 - 1440.5 = "$15.00 - $1,440.50" 1440.51 - 3280 = "$1,440.51 - $3,280.00" 3280.01 - 6762 = "$3,280.01 - $6,762.00" 6762.01 - 425391.67 = "$6,762.01 - $425,391.67" ; VALUE ERXP23XF 0 = "0" 1.5 - 294.65 = "$1.50 - $294.65" 294.66 - 655.47 = "$294.66 - $655.47" 655.48 - 1357.73 = "$655.48 - $1,357.73" 1357.74 - 195314.46 = "$1,357.74 - $195,314.46" ; VALUE EVENTRNF 1 = "1 ROUND 1" 2 = "2 ROUND 2" 3 = "3 ROUND 3" 4 = "4 ROUND 4" 5 = "5 ROUND 5" ; VALUE $EVNTIDXF '2790032106001001' - '2819792101000101' = "VALID ID" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10017' - '10107' = "VALID ID" ; VALUE FFERTYPEF -8 = "-8 DON'T KNOW" -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 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MAMMOG_M18F -8 = "-8 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MEDPRESCF -8 = "-8 DON'T KNOW" -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 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE PANELF 27 = "27 PANEL 27" 28 = "28 PANEL 28" ; VALUE PERWT23FF 0 = "0.000000" 790.152192 - 125181.984602 = "790.152192 - 125181.984602" ; VALUE PIDF 101 - 401 = "VALID ID" ; VALUE RCVVAC_M18F -8 = "-8 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SONOGRAM_M18F -8 = "-8 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SURGPROCF -8 = "-8 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE VARPSUF 1 - 6 = "1 - 6" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117" ; VALUE VSTCTGRYF -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DON'T KNOW" -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 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE XRAYS_M18F -8 = "-8 DON'T KNOW" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ;