SAS User File for H213E 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 (H213E.SSP) or the ASCII data file (H213E.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\H213E.SSP'; PROC CIMPORT DATA=PUFLIB.H213E 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.H213E; TITLE 'List of Variables in MEPS H213E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H213E (OBS=20); TITLE 'First 20 Observations in MEPS H213E 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) H213E 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 H213E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H213E.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 H213E.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 H213E.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\H213E.DAT'; DATA PUFLIB.H213E; 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 (H213E). In the example, after the successful completion of the DATA step, a PC file named H213E.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 H213E.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 H213E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (309 for H213E.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 H213E.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 (H213E.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.H213E; 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 H213E.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 2.0 @77 VSTRELCN 2.0 @79 LABTEST_M18 2.0 @81 SONOGRAM_M18 2.0 @83 XRAYS_M18 2.0 @85 MAMMOG_M18 2.0 @87 MRI_M18 2.0 @89 EKG_M18 2.0 @91 RCVVAC_M18 2.0 @93 SURGPROC 2.0 @95 MEDPRESC 2.0 @97 FFERTYPE 2.0 @99 ERXP19X 8.2 @107 ERTC19X 9.2 @116 ERFSF19X 7.2 @123 ERFMR19X 8.2 @131 ERFMD19X 8.2 @139 ERFPV19X 8.2 @147 ERFVA19X 8.2 @155 ERFTR19X 8.2 @163 ERFOF19X 7.2 @170 ERFSL19X 8.2 @178 ERFWC19X 7.2 @185 ERFOT19X 8.2 @193 ERFXP19X 8.2 @201 ERFTC19X 9.2 @210 ERDSF19X 7.2 @217 ERDMR19X 7.2 @224 ERDMD19X 7.2 @231 ERDPV19X 7.2 @238 ERDVA19X 7.2 @245 ERDTR19X 6.2 @251 ERDOF19X 4.2 @255 ERDSL19X 6.2 @261 ERDWC19X 7.2 @268 ERDOT19X 7.2 @275 ERDXP19X 7.2 @282 ERDTC19X 8.2 @290 IMPFLAG 1.0 @291 PERWT19F 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 ERDTEYRF. ERDATEMM ERDTEMMF. VSTCTGRY VSTCTGRF. VSTRELCN VSTRELCF. LABTEST_M18 LABTESTF. SONOGRAM_M18 SONOGRMF. XRAYS_M18 XRAYSF. MAMMOG_M18 MAMMOGF. MRI_M18 MRIF. EKG_M18 EKGF. RCVVAC_M18 RCVVACF. SURGPROC SURGPROF. MEDPRESC MEDPRESF. FFERTYPE FFERTYPF. ERXP19X ERXP19XF. ERTC19X ERTC19XF. ERFSF19X ERFSF19F. ERFMR19X ERFMR19F. ERFMD19X ERFMD19F. ERFPV19X ERFPV19F. ERFVA19X ERFVA19F. ERFTR19X ERFTR19F. ERFOF19X ERFOF19F. ERFSL19X ERFSL19F. ERFWC19X ERFWC19F. ERFOT19X ERFOT19F. ERFXP19X ERFXP19F. ERFTC19X ERFTC19F. ERDSF19X ERDSF19F. ERDMR19X ERDMR19F. ERDMD19X ERDMD19F. ERDPV19X ERDPV19F. ERDVA19X ERDVA19F. ERDTR19X ERDTR19F. ERDOF19X ERDOF19F. ERDSL19X ERDSL19F. ERDWC19X ERDWC19F. ERDOT19X ERDOT19F. ERDXP19X ERDXP19F. ERDTC19X ERDTC19F. IMPFLAG IMPFLAGF. PERWT19F PERWT19F. 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" ERXP19X ="TOTAL EXP FOR EVENT (ERFXP19X + ERDXP19X)" ERTC19X ="TOTAL CHG FOR EVENT (ERFTC19X + ERDTC19X)" ERFSF19X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" ERFMR19X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" ERFMD19X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" ERFPV19X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" ERFVA19X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)" ERFTR19X ="FACILITY AMOUNT PAID, TRICARE(IMPUTED)" ERFOF19X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERFSL19X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERFWC19X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" ERFOT19X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" ERFXP19X ="FACILITY SUM PAYMENTS ERFSF19X - ERFOT19X" ERFTC19X ="TOTAL FACILITY CHARGE (IMPUTED)" ERDSF19X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" ERDMR19X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" ERDMD19X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" ERDPV19X ="DOCTOR AMOUNT PAID, PRIV INSUR (IMPUTED)" ERDVA19X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA(IMPUTED)" ERDTR19X ="DOCTOR AMOUNT PAID, TRICARE(IMPUTED)" ERDOF19X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" ERDSL19X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" ERDWC19X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" ERDOT19X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" ERDXP19X ="DOCTOR SUM PAYMENTS ERDSF19X - ERDOT19X" ERDTC19X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT19F ="EXPENDITURE FILE PERSON WEIGHT, 2019" VARSTR ="VARIANCE ESTIMATION STRATUM, 2019" VARPSU ="VARIANCE ESTIMATION PSU, 2019" ; * VALUE STATEMENTS; VALUE DUIDF 2320002 - 2469687 = "2320002 - 2469687 DUID" ; VALUE $DUPERSIDF '2320002103' - '2469687102' = "2320002103 - 2469687102 DUPERSID" ; VALUE EKGF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE ERDMD19F 0 = "0" 0.07 - 40.8 = "$0.07 - $40.80" 40.81 - 87.11 = "$40.81 - $87.11" 87.12 - 178.74 = "$87.12 - $178.74" 178.75 - 6309.79 = "$178.75 - $6,309.79" ; VALUE ERDMR19F 0 = "0" 2.43 - 70.56 = "$2.43 - $70.56" 70.57 - 143.06 = "$70.57 - $143.06" 143.07 - 256.38 = "$143.07 - $256.38" 256.39 - 4513.85 = "$256.39 - $4,513.85" ; VALUE ERDOF19F 0 = "0" ; VALUE ERDOT19F 0 = "0" 8.14 - 34.89 = "$8.14 - $34.89" 34.9 - 72.08 = "$34.90 - $72.08" 72.09 - 146.7 = "$72.09 - $146.70" 146.71 - 1919.73 = "$146.71 - $1,919.73" ; VALUE ERDPV19F 0 = "0" 1.07 - 41.64 = "$1.07 - $41.64" 41.65 - 152.14 = "$41.65 - $152.14" 152.15 - 399.5 = "$152.15 - $399.50" 399.51 - 7459 = "$399.51 - $7,459.00" ; VALUE ERDSF19F 0 = "0" 0.47 - 28 = "$0.47 - $28.00" 28.01 - 66.28 = "$28.01 - $66.28" 66.29 - 166.2 = "$66.29 - $166.20" 166.21 - 2213 = "$166.21 - $2,213.00" ; VALUE ERDSL19F 0 = "0" 1 - 206.37 = "$1.00 - $206.37" ; VALUE ERDTC19F 0 = "0" 4.59 - 303.93 = "$4.59 - $303.93" 303.94 - 714 = "$303.94 - $714.00" 714.01 - 1471 = "$714.01 - $1,471.00" 1471.01 - 17492.91 = "$1,471.01 - $17,492.91" ; VALUE ERDTEMMF -8 = "-8 DK" -7 = "-7 REFUSED" 1 - 12 = "1 - 12 MONTH" ; VALUE ERDTEYRF -8 = "-8 DK" -7 = "-7 REFUSED" 2019 = "2019" ; VALUE ERDTR19F 0 = "0" 1.8 - 35.73 = "$1.80 - $35.73" 35.74 - 65.87 = "$35.74 - $65.87" 65.88 - 164.23 = "$65.88 - $164.23" 164.24 - 740.92 = "$164.24 - $740.92" ; VALUE ERDVA19F 0 = "0" 7.46 - 34.55 = "$7.46 - $34.55" 34.56 - 108.41 = "$34.56 - $108.41" 108.42 - 204.97 = "$108.42 - $204.97" 204.98 - 1038.1 = "$204.98 - $1,038.10" ; VALUE ERDWC19F 0 = "0" 51.66 - 126.35 = "$51.66 - $126.35" 126.36 - 293.64 = "$126.36 - $293.64" 293.65 - 408.4 = "$293.65 - $408.40" 408.41 - 1919.73 = "$408.41 - $1,919.73" ; VALUE ERDXP19F 0 = "0" 2.81 - 73.73 = "$2.81 - $73.73" 73.74 - 161.46 = "$73.74 - $161.46" 161.47 - 336.36 = "$161.47 - $336.36" 336.37 - 7459 = "$336.37 - $7,459.00" ; VALUE ERFMD19F 0 = "0" 0.11 - 98.86 = "$0.11 - $98.86" 98.87 - 218.72 = "$98.87 - $218.72" 218.73 - 435.36 = "$218.73 - $435.36" 435.37 - 10845.29 = "$435.37 - $10,845.29" ; VALUE ERFMR19F 0 = "0" 0.65 - 154.32 = "$0.65 - $154.32" 154.33 - 363.94 = "$154.33 - $363.94" 363.95 - 702.54 = "$363.95 - $702.54" 702.55 - 18639.18 = "$702.55 - $18,639.18" ; VALUE ERFOF19F 0 = "0" 17.52 - 76.61 = "$17.52 - $76.61" 76.62 - 317.42 = "$76.62 - $317.42" 317.43 - 1833.4 = "$317.43 - $1,833.40" 1833.41 - 5609.1 = "$1,833.41 - $5,609.10" ; VALUE ERFOT19F 0 = "0" 61.2 - 530.4 = "$61.20 - $530.40" 530.41 - 1325.06 = "$530.41 - $1,325.06" 1325.07 - 3011.31 = "$1,325.07 - $3,011.31" 3011.32 - 12790.71 = "$3,011.32 - $12,790.71" ; VALUE ERFPV19F 0 = "0" 1 - 159.2 = "$1.00 - $159.20" 159.21 - 602.81 = "$159.21 - $602.81" 602.82 - 1530.37 = "$602.82 - $1,530.37" 1530.38 - 34533.28 = "$1,530.38 - $34,533.28" ; VALUE ERFSF19F 0 = "0" 1 - 65 = "$1.00 - $65.00" 65.01 - 113.27 = "$65.01 - $113.27" 113.28 - 312.37 = "$113.28 - $312.37" 312.38 - 8200 = "$312.38 - $8,200.00" ; VALUE ERFSL19F 0 = "0" 44.03 - 673.82 = "$44.03 - $673.82" 673.83 - 974.56 = "$673.83 - $974.56" 974.57 - 2247.49 = "$974.57 - $2,247.49" 2247.5 - 19404.17 = "$2,247.50 - $19,404.17" ; VALUE ERFTC19F 0 = "0" 5.05 - 983.75 = "$5.05 - $983.75" 983.76 - 2257.9 = "$983.76 - $2,257.90" 2257.91 - 4733.25 = "$2,257.91 - $4,733.25" 4733.26 - 128613.69 = "$4,733.26 - $128,613.69" ; VALUE ERFTR19F 0 = "0" 2.65 - 87.53 = "$2.65 - $87.53" 87.54 - 208.22 = "$87.54 - $208.22" 208.23 - 419.68 = "$208.23 - $419.68" 419.69 - 16827.29 = "$419.69 - $16,827.29" ; VALUE ERFVA19F 0 = "0" 8.2 - 173.31 = "$8.20 - $173.31" 173.32 - 706.71 = "$173.32 - $706.71" 706.72 - 1629.39 = "$706.72 - $1,629.39" 1629.4 - 28031.64 = "$1,629.40 - $28,031.64" ; VALUE ERFWC19F 0 = "0" 35.96 - 347.61 = "$35.96 - $347.61" 347.62 - 564.47 = "$347.62 - $564.47" 564.48 - 2076.53 = "$564.48 - $2,076.53" 2076.54 - 7445.57 = "$2,076.54 - $7,445.57" ; VALUE ERFXP19F 0 = "0" 0.65 - 196.38 = "$0.65 - $196.38" 196.39 - 478.08 = "$196.39 - $478.08" 478.09 - 1085.81 = "$478.09 - $1,085.81" 1085.82 - 34533.28 = "$1,085.82 - $34,533.28" ; VALUE $ERHEVIDXF '-1' = "-1 INAPPLICABLE" '2320044101211901' - '2469687102000901' = "2320044101211901 - 2469687102000901 ERHEVIDX" ; VALUE ERTC19XF 0 = "0" 5.05 - 1117.34 = "$5.05 - $1,117.34" 1117.35 - 2503.46 = "$1,117.35 - $2,503.46" 2503.47 - 5239.65 = "$2,503.47 - $5,239.65" 5239.66 - 128613.69 = "$5,239.66 - $128,613.69" ; VALUE ERXP19XF 0 = "0" 0.65 - 212.32 = "$0.65 - $212.32" 212.33 - 530.78 = "$212.33 - $530.78" 530.79 - 1191.56 = "$530.79 - $1,191.56" 1191.57 - 34533.28 = "$1,191.57 - $34,533.28" ; VALUE EVENTRNF 1 = "ROUND 1" 2 = "ROUND 2" 3 = "ROUND 3" 4 = "ROUND 4" 5 = "ROUND 5" ; VALUE $EVNTIDXF '2320002103200101' - '2469687102001701' = "2320002103200101 - 2469687102001701 EVNTIDX" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10106' - '246764510201' = "10106 - 246764510201 FFEEIDX" ; VALUE FFERTYPF -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 LABTESTF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MAMMOGF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MEDPRESF -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 MRIF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE PANELF 23 = "PANEL 23" 24 = "PANEL 24" ; VALUE PERWT19F 0 = "0.000000 WEIGHT" 774.68445 - 79672.786209 = "774.684450 - 79672.786209 WEIGHT" ; VALUE PIDF 101 - 501 = "101 - 501 PID" ; VALUE RCVVACF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SONOGRMF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SURGPROF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE VARPSUF 1 - 6 = "1 - 6" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117" ; VALUE VSTCTGRF -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 VSTRELCF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE XRAYSF -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ;