SAS User File for H118E 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 (H118E.SSP) or the ASCII data file (H118E.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: XCOPY. 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. INCLUDED BELOW ARE NOTES APPLICABLE TO USERS OF SAS VERSION 8 OR HIGHER. ****************************************************************************** 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 XCOPY 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, with SAS V8 or higher). LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H118E.SSP'; PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT; RUN; SAS transport files, SAS data files, and SAS program files each should be stored in separate locations (directory names). Storing different types of SAS files in one location can cause errors with converting or retrieving data. Below are SAS statements to print a list of variables and a few sample records from the permanent SAS dataset: PROC CONTENTS DATA=PUFLIB.H118E; TITLE 'List of Variables in MEPS H118E SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H118E (OBS=20); TITLE 'First 20 Observations in MEPS H118E SAS Dataset'; RUN; The LIBNAME statement tells SAS the location (directory name) to store the permanent SAS dataset which is output by PROC XCOPY. The FILENAME statement tells SAS the location (complete directory and file name) of the input SAS transport data file. NOTES: 1) If you have an error reading a SAS data file you created, the problem may be a result of where you are storing and/or how you are retrieving the data. First check the data library for multiple releases of SAS files (e.g., V8 or higher with file extensions of '.SAS7BDAT' and V6 with file extensions of '.SD2') stored in the same location. a) You can avoid errors when reading these files by including the SAS release within the LIBNAME statement - e.g., LIBNAME PUFLIB V8 'C:\MEPS\SASDATA'; or b) Store SAS data files with different file extensions such as .SD2 and .SAS7BDAT, in separate folders (do not co-mingle V8 and V6 files in the same folder); or c) When importing transport files, output the SAS dataset to a different library than the one which contains the downloaded SAS transport file - e.g., LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\Hxxx.SSP'; PROC XCOPY IN=IN1 OUT=PUBLIB IMPORT; RUN; 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 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, MAC/OS, VMS, or OS/2. 4) H118E 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 XCOPY, the output SAS dataset assumes the same dataset name (or file name). Hence, in the example above, a file named H118E.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC XCOPY runs successfully. 5) The SAS transport file H118E.SSP was created from a SAS V9 data file, using PROC COPY. This file has been tested for use with SAS V8 or higher. This file may 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 H118E.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 H118E.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, OS2, etc.), use the editor provided as part of the SAS software. Following is a sample SAS program that will convert the ASCII data file to SAS format: LIBNAME PUFLIB 'C:\MEPS\SASDATA'; FILENAME IN1 'C:\MEPS\DOWNLOAD\H118E.DAT'; DATA PUFLIB.H118E; INFILE IN1 LRECL=355; 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 (H118E). In the example, after the successful completion of the DATA step, a PC file named H118E.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 (355 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 H118E.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., 355 for H118E.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (357 for H118E.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 (355 for H118E.DAT). INPUT statement: This specifies the input record layout, giving names and the beginning and ending column positions for data items (which become SAS variables) in the ASCII data file (H118E.DAT). Variable type (numeric or character) is also defined via the INPUT statement. LABEL statement: This associates descriptive names with the SAS variables. RUN statement: This tells SAS to execute all commands up to this point. See Section A.1 above for tips on retrieving and storing the permanent SAS data files. C. Optional Format-related SAS Statements If a user wants to use formats for the SAS variables, a SAS format library 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.H118E; 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' for SAS V8 or higher and 'SD2' for SAS V6) and format libraries (file name extension is 'SAS7BCAT' for SAS V8 or higher and 'SC2' for SAS V6) 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) You only create the permanent SAS dataset once. Additional analyses can be run using this permanent dataset. 4) 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, MAC/OS, VMS, or OS/2. D. SAS Statements This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in converting the ASCII H118E.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=355; INPUT @1 DUID 5.0 @6 PID 3.0 @9 DUPERSID $8.0 @17 EVNTIDX $12.0 @29 EVENTRN 1.0 @30 ERHEVIDX $12.0 @42 FFEEIDX $12.0 @54 PANEL 2.0 @56 MPCDATA 1.0 @57 ERDATEYR 4.0 @61 ERDATEMM 2.0 @63 ERDATEDD 2.0 @65 SEEDOC 2.0 @67 VSTCTGRY 2.0 @69 VSTRELCN 2.0 @71 LABTEST 2.0 @73 SONOGRAM 2.0 @75 XRAYS 2.0 @77 MAMMOG 2.0 @79 MRI 2.0 @81 EKG 2.0 @83 EEG 2.0 @85 RCVVAC 2.0 @87 ANESTH 2.0 @89 THRTSWAB 2.0 @91 OTHSVCE 2.0 @93 SURGPROC 2.0 @95 MEDPRESC 2.0 @97 ERICD1X $3.0 @100 ERICD2X $3.0 @103 ERICD3X $3.0 @106 ERPRO1X $2.0 @108 ERPRO2X $2.0 @110 ERCCC1X $3.0 @113 ERCCC2X $3.0 @116 ERCCC3X $3.0 @119 FFERTYPE 2.0 @121 ERXP08X 9.2 @130 ERTC08X 9.2 @139 ERFSF08X 8.2 @147 ERFMR08X 9.2 @156 ERFMD08X 7.2 @163 ERFPV08X 8.2 @171 ERFVA08X 7.2 @178 ERFTR08X 7.2 @185 ERFOF08X 7.2 @192 ERFSL08X 7.2 @199 ERFWC08X 7.2 @206 ERFOR08X 8.2 @214 ERFOU08X 7.2 @221 ERFOT08X 7.2 @228 ERFXP08X 9.2 @237 ERFTC08X 8.2 @245 ERDSF08X 7.2 @252 ERDMR08X 7.2 @259 ERDMD08X 7.2 @266 ERDPV08X 7.2 @273 ERDVA08X 6.2 @279 ERDTR08X 6.2 @285 ERDOF08X 5.2 @290 ERDSL08X 6.2 @296 ERDWC08X 7.2 @303 ERDOR08X 7.2 @310 ERDOU08X 6.2 @316 ERDOT08X 7.2 @323 ERDXP08X 7.2 @330 ERDTC08X 8.2 @338 IMPFLAG 1.0 @339 PERWT08F 12.6 @351 VARSTR 4.0 @355 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUID. PID PID. DUPERSID $DUPERS. EVNTIDX $EVNTIDX. EVENTRN EVENTRNF. ERHEVIDX $ERHEIDF. FFEEIDX $FFEEIDX. PANEL PANELF. MPCDATA MPCDATAF. ERDATEYR ERDTEYRF. ERDATEMM ERDTEMMF. ERDATEDD ERDTEDDF. SEEDOC SEEDOCF. VSTCTGRY VSTCTGRF. VSTRELCN VSTRELCF. LABTEST LABTESTF. SONOGRAM SONOGRMF. XRAYS XRAYSF. MAMMOG MAMMOGF. MRI MRIF. EKG EKGF. EEG EEGF. RCVVAC RCVVACF. ANESTH ANESTHF. THRTSWAB THRSWABF. OTHSVCE OTHSVCEF. SURGPROC SURGPROF. MEDPRESC MEDPRESF. ERICD1X $ERICD1X. ERICD2X $ERICD2X. ERICD3X $ERICD3X. ERPRO1X $ERPRO1X. ERPRO2X $ERPRO2X. ERCCC1X $ERCCC1X. ERCCC2X $ERCCC2X. ERCCC3X $ERCCC3X. FFERTYPE FFERTYPF. ERXP08X ERXP08XF. ERTC08X ERTC08XF. ERFSF08X ERFSF08F. ERFMR08X ERFMR08F. ERFMD08X ERFMD08F. ERFPV08X ERFPV08F. ERFVA08X ERFVA08F. ERFTR08X ERFTR08F. ERFOF08X ERFOF08F. ERFSL08X ERFSL08F. ERFWC08X ERFWC08F. ERFOR08X ERFOR08F. ERFOU08X ERFOU08F. ERFOT08X ERFOT08F. ERFXP08X ERFXP08F. ERFTC08X ERFTC08F. ERDSF08X ERDSF08F. ERDMR08X ERDMR08F. ERDMD08X ERDMD08F. ERDPV08X ERDPV08F. ERDVA08X ERDVA08F. ERDTR08X ERDTR08F. ERDOF08X ERDOF08F. ERDSL08X ERDSL08F. ERDWC08X ERDWC08F. ERDOR08X ERDOR08F. ERDOU08X ERDOU08F. ERDOT08X ERDOT08F. ERDXP08X ERDXP08F. ERDTC08X ERDTC08F. IMPFLAG IMPFLAGF. PERWT08F PERWT08F. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ='DWELLING UNIT ID' 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' ERDATEDD='EVENT DATE - DAY' SEEDOC ='DID P TALK TO MD THIS VISIT' VSTCTGRY='BEST CATEGORY FOR CARE P RECV ON VST DT' VSTRELCN='THIS VST RELATED TO SPEC CONDITION' LABTEST ='THIS VISIT DID P HAVE LAB TESTS' SONOGRAM='THIS VISIT DID P HAVE SONOGRAM OR ULTRSD' XRAYS ='THIS VISIT DID P HAVE X-RAYS' MAMMOG ='THIS VISIT DID P HAVE A MAMMOGRAM' MRI ='THIS VISIT DID P HAVE AN MRI/CATSCAN' EKG ='THIS VISIT DID P HAVE AN EKG OR ECG' EEG ='THIS VISIT DID P HAVE AN EEG' RCVVAC ='THIS VISIT DID P RECEIVE A VACCINATION' ANESTH ='THIS VISIT DID P RECEIVE ANESTHESIA' THRTSWAB='THIS VISIT DID P HAVE A THROAT SWAB' OTHSVCE ='THIS VISIT DID P HAVE OTH DIAG TEST/EXAM' SURGPROC='WAS SURG PROC PERFORMED ON P THIS VISIT' MEDPRESC='ANY MEDICINE PRESCRIBED FOR P THIS VISIT' ERICD1X ='3-DIGIT ICD-9-CM CONDITION CODE' ERICD2X ='3-DIGIT ICD-9-CM CONDITION CODE' ERICD3X ='3-DIGIT ICD-9-CM CONDITION CODE' ERPRO1X ='2-DIGIT ICD-9-CM PROCEDURE CODE' ERPRO2X ='2-DIGIT ICD-9-CM PROCEDURE CODE' ERCCC1X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC2X ='MODIFIED CLINICAL CLASSIFICATION CODE' ERCCC3X ='MODIFIED CLINICAL CLASSIFICATION CODE' FFERTYPE='FLAT FEE BUNDLE' ERXP08X ='TOT EXP FOR EVENT (ERFXP08X + ERDXP08X)' ERTC08X ='TOTAL CHG FOR EVENT (ERFTC08X+ERDTC08X)' ERFSF08X='FACILITY AMT PD, FAMILY (IMPUTED)' ERFMR08X='FACILITY AMT PD, MEDICARE (IMPUTED)' ERFMD08X='FACILITY AMT PD, MEDICAID (IMPUTED)' ERFPV08X='FACILITY AMT PD, PRIV INSUR (IMPUTED)' ERFVA08X='FAC AMT PD,VETERANS/CHAMPVA(IMPUTED)' ERFTR08X='FACILITY AMT PD,TRICARE(IMPUTED)' ERFOF08X='FACILITY AMT PD, OTH FEDERAL (IMPUTED)' ERFSL08X='FACILITY AMT PD, STATE/LOC GOV (IMPUTED)' ERFWC08X='FACILITY AMT PD, WORKERS COMP (IMPUTED)' ERFOR08X='FACILITY AMT PD, OTH PRIV (IMPUTED)' ERFOU08X='FACILITY AMT PD, OTH PUB (IMPUTED)' ERFOT08X='FACILITY AMT PD, OTH INSUR (IMPUTED)' ERFXP08X='FACILITY SUM PAYMENTS ERFSF08X-ERFOT08X' ERFTC08X='TOTAL FACILITY CHARGE (IMPUTED)' ERDSF08X='DOCTOR AMOUNT PAID, FAMILY (IMPUTED)' ERDMR08X='DOCTOR AMOUNT PD, MEDICARE (IMPUTED)' ERDMD08X='DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)' ERDPV08X='DOCTOR AMT PD, PRIV INSUR (IMPUTED)' ERDVA08X='DR AMT PD,VETERANS/CHAMPVA(IMPUTED)' ERDTR08X='DOCTOR AMT PD,TRICARE(IMPUTED)' ERDOF08X='DOCTOR AMT PAID, OTH FEDERAL (IMPUTED)' ERDSL08X='DOCTOR AMT PD, STATE/LOC GOV (IMPUTED)' ERDWC08X='DOCTOR AMOUNT PD, WORKERS COMP (IMPUTED)' ERDOR08X='DOCTOR AMT PD, OTH PRIVATE (IMPUTED)' ERDOU08X='DOCTOR AMT PD, OTH PUB (IMPUTED)' ERDOT08X='DOCTOR AMT PD, OTH INSUR (IMPUTED)' ERDXP08X='DOCTOR SUM PAYMENTS ERDSF08X - ERDOT08X' ERDTC08X='TOTAL DOCTOR CHARGE (IMPUTED)' IMPFLAG ='IMPUTATION STATUS' PERWT08F='EXPENDITURE FILE PERSON WEIGHT, 2008' VARSTR ='VARIANCE ESTIMATION STRATUM, 2008' VARPSU ='VARIANCE ESTIMATION PSU, 2008' ; * VALUE STATEMENTS; VALUE ANESTHF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE DUID OTHER = 'VALID ID' ; VALUE $DUPERS OTHER = 'VALID ID' ; VALUE EEGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE EKGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE $ERCCC1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $ERCCC2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE $ERCCC3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '064' = '001-064' '076' - '260' = '076-260' '650' - '670' = '650-670' ; VALUE ERDMD08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 36.28 = '$0.01 - $36.28' 36.29 - 58.95 = '$36.29 - $58.95' 58.96 - 99.09 = '$58.96 - $99.09' 99.1 - 1432.46 = '$99.10 - $1,432.46' ; VALUE ERDMR08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.07 - 44.9 = '$3.07 - $44.90' 44.91 - 96.27 = '$44.91 - $96.27' 96.28 - 157.81 = '$96.28 - $157.81' 157.82 - 1951.31 = '$157.82 - $1,951.31' ; VALUE ERDOF08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 16.52 = '$1.00 - $16.52' ; VALUE ERDOR08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.57 - 20.62 = '$1.57 - $20.62' 20.63 - 53.49 = '$20.63 - $53.49' 53.5 - 163.15 = '$53.50 - $163.15' 163.16 - 2453.57 = '$163.16 - $2,453.57' ; VALUE ERDOT08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.04 - 104.8 = '$14.04 - $104.80' 104.81 - 173.08 = '$104.81 - $173.08' 173.09 - 306.68 = '$173.09 - $306.68' 306.69 - 1000 = '$306.69 - $1,000.00' ; VALUE ERDOU08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.97 - 30.48 = '$1.97 - $30.48' 30.49 - 54.26 = '$30.49 - $54.26' 54.27 - 101.11 = '$54.27 - $101.11' 101.12 - 474 = '$101.12 - $474.00' ; VALUE ERDPV08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.06 - 63.37 = '$0.06 - $63.37' 63.38 - 146.52 = '$63.38 - $146.52' 146.53 - 276.99 = '$146.53 - $276.99' 277 - 3480.24 = '$277.00 - $3,480.24' ; VALUE ERDSF08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.83 - 16.3 = '$0.83 - $16.30' 16.31 - 39.5 = '$16.31 - $39.50' 39.51 - 120.18 = '$39.51 - $120.18' 120.19 - 4364.52 = '$120.19 - $4,364.52' ; VALUE ERDSL08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.22 - 30.03 = '$0.22 - $30.03' 30.04 - 71.65 = '$30.04 - $71.65' 71.66 - 137.63 = '$71.66 - $137.63' 137.64 - 385.87 = '$137.64 - $385.87' ; VALUE ERDTC08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 11.33 - 195 = '$11.33 - $195.00' 195.01 - 350 = '$195.01 - $350.00' 350.01 - 592 = '$350.01 - $592.00' 592.01 - 16148.5 = '$592.01 - $16,148.50' ; VALUE ERDTEDDF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 31 = '1 - 31 DAY' ; VALUE ERDTEMMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 - 12 = '1 - 12 MONTH' ; VALUE ERDTEYRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 2008 = '2008' ; VALUE ERDTR08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.04 - 226.83 = '$2.04 - $226.83' ; VALUE ERDVA08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.85 - 486 = '$1.85 - $486.00' ; VALUE ERDWC08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 14.04 - 73 = '$14.04 - $73.00' 73.01 - 130.12 = '$73.01 - $130.12' 130.13 - 237 = '$130.13 - $237.00' 237.01 - 2566.41 = '$237.01 - $2,566.41' ; VALUE ERDXP08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.03 - 52.64 = '$3.03 - $52.64' 52.65 - 112.39 = '$52.65 - $112.39' 112.4 - 216.16 = '$112.40 - $216.16' 216.17 - 4364.52 = '$216.17 - $4,364.52' ; VALUE ERFMD08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 1.19 - 71.38 = '$1.19 - $71.38' 71.39 - 148 = '$71.39 - $148.00' 148.01 - 326.38 = '$148.01 - $326.38' 326.39 - 9898.2 = '$326.39 - $9,898.20' ; VALUE ERFMR08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.91 - 135.15 = '$3.91 - $135.15' 135.16 - 282.17 = '$135.16 - $282.17' 282.18 - 520 = '$282.18 - $520.00' 520.01 - 142985.85 = '$520.01 - $142,985.85' ; VALUE ERFOF08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 16.38 - 241.29 = '$16.38 - $241.29' 241.3 - 720.56 = '$241.30 - $720.56' 720.57 - 3114.37 = '$720.57 - $3,114.37' 3114.38 - 7137.39 = '$3,114.38 - $7,137.39' ; VALUE ERFOR08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 63.38 = '$0.01 - $63.38' 63.39 - 162.11 = '$63.39 - $162.11' 162.12 - 518.4 = '$162.12 - $518.40' 518.41 - 16325.43 = '$518.41 - $16,325.43' ; VALUE ERFOT08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 12.12 - 144.87 = '$12.12 - $144.87' 144.88 - 376.49 = '$144.88 - $376.49' 376.5 - 906.26 = '$376.50 - $906.26' 906.27 - 6278.11 = '$906.27 - $6,278.11' ; VALUE ERFOU08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 5 - 118.19 = '$5.00 - $118.19' 118.2 - 334.02 = '$118.20 - $334.02' 334.03 - 567.88 = '$334.03 - $567.88' 567.89 - 1058.26 = '$567.89 - $1,058.26' ; VALUE ERFPV08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.01 - 177.51 = '$0.01 - $177.51' 177.52 - 456.81 = '$177.52 - $456.81' 456.82 - 981.2 = '$456.82 - $981.20' 981.21 - 57395.99 = '$981.21 - $57,395.99' ; VALUE ERFSF08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 0.34 - 47.5 = '$0.34 - $47.50' 47.51 - 75 = '$47.51 - $75.00' 75.01 - 175.96 = '$75.01 - $175.96' 175.97 - 16500 = '$175.97 - $16,500.00' ; VALUE ERFSL08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 50 - 188.3 = '$50.00 - $188.30' 188.31 - 334.66 = '$188.31 - $334.66' 334.67 - 741.5 = '$334.67 - $741.50' 741.51 - 2772.96 = '$741.51 - $2,772.96' ; VALUE ERFTC08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.5 - 413 = '$3.50 - $413.00' 413.01 - 943.21 = '$413.01 - $943.21' 943.22 - 2057 = '$943.22 - $2,057.00' 2057.01 - 96858.64 = '$2,057.01 - $96,858.64' ; VALUE ERFTR08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 2.24 - 35.27 = '$2.24 - $35.27' 35.28 - 178.99 = '$35.28 - $178.99' 179 - 626.48 = '$179.00 - $626.48' 626.49 - 3042.25 = '$626.49 - $3,042.25' ; VALUE ERFVA08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 16.77 - 162.26 = '$16.77 - $162.26' 162.27 - 420.85 = '$162.27 - $420.85' 420.86 - 993.24 = '$420.86 - $993.24' 993.25 - 9252.15 = '$993.25 - $9,252.15' ; VALUE ERFWC08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 32.37 - 174.16 = '$32.37 - $174.16' 174.17 - 386.94 = '$174.17 - $386.94' 386.95 - 816.12 = '$386.95 - $816.12' 816.13 - 6908.44 = '$816.13 - $6,908.44' ; VALUE ERFXP08F (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.46 - 137 = '$4.46 - $137.00' 137.01 - 333.35 = '$137.01 - $333.35' 333.36 - 759.97 = '$333.36 - $759.97' 759.98 - 142985.85 = '$759.98 - $142,985.85' ; VALUE $ERHEIDF '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE $ERICD1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $ERICD2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $ERICD3X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '001' - '139' = '001 - 139' '140' - '239' = '140 - 239' '240' - '279' = '240 - 279' '280' - '289' = '280 - 289' '290' - '319' = '290 - 319' '320' - '389' = '320 - 389' '390' - '459' = '390 - 459' '460' - '519' = '460 - 519' '520' - '579' = '520 - 579' '580' - '629' = '580 - 629' '630' - '677' = '630 - 677' '680' - '709' = '680 - 709' '710' - '739' = '710 - 739' '740' - '759' = '740 - 759' '760' - '779' = '760 - 779' '780' - '799' = '780 - 799' '800' - '999' = '800 - 999' 'V01' - 'V83' = 'V01 - V83' ; VALUE $ERPRO1X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '00' - '05' = '00 - 05' '06' - '07' = '06 - 07' '08' - '16' = '08 - 16' '18' - '20' = '18 - 20' '21' - '29' = '21 - 29' '30' - '34' = '30 - 34' '35' - '39' = '35 - 39' '40' - '41' = '40 - 41' '42' - '54' = '42 - 54' '55' - '59' = '55 - 59' '60' - '64' = '60 - 64' '65' - '71' = '65 - 71' '72' - '75' = '72 - 75' '76' - '84' = '76 - 84' '85' - '86' = '85 - 86' '87' - '99' = '87 - 99' ; VALUE $ERPRO2X '-1' = '-1 INAPPLICABLE' '-7' = '-7 REFUSED' '-8' = '-8 DK' '-9' = '-9 NOT ASCERTAINED' '00' - '05' = '00 - 05' '06' - '07' = '06 - 07' '08' - '16' = '08 - 16' '18' - '20' = '18 - 20' '21' - '29' = '21 - 29' '30' - '34' = '30 - 34' '35' - '39' = '35 - 39' '40' - '41' = '40 - 41' '42' - '54' = '42 - 54' '55' - '59' = '55 - 59' '60' - '64' = '60 - 64' '65' - '71' = '65 - 71' '72' - '75' = '72 - 75' '76' - '84' = '76 - 84' '85' - '86' = '85 - 86' '87' - '99' = '87 - 99' ; VALUE ERTC08XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 3.5 - 534.55 = '$3.50 - $534.55' 534.56 - 1125 = '$534.56 - $1,125.00' 1125.01 - 2365.26 = '$1,125.01 - $2,365.26' 2365.27 - 103306.51 = '$2,365.27 - $103,306.51' ; VALUE ERXP08XF (DEFAULT=40) -9 = '-9 NOT ASCERTAINED' -1 = '-1 INAPPLICABLE' 0 = '0' 4.46 - 155.37 = '$4.46 - $155.37' 155.38 - 370 = '$155.38 - $370.00' 370.01 - 829.12 = '$370.01 - $829.12' 829.13 - 142985.85 = '$829.13 - $142,985.85' ; VALUE EVENTRNF 1 = 'ROUND 1' 2 = 'ROUND 2' 3 = 'ROUND 3' 4 = 'ROUND 4' 5 = 'ROUND 5' ; VALUE $EVNTIDX OTHER = 'VALID ID' ; VALUE $FFEEIDX '-1' = '-1 INAPPLICABLE' OTHER = 'VALID ID' ; VALUE FFERTYPF -9 = '-9 NOT ASCERTAINED' -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 -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MAMMOGF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE MEDPRESF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE MPCDATAF 1 = '1 HAS MPC DATA' 2 = '2 NO MPC DATA' ; VALUE MRIF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE OTHSVCEF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE PANELF 12 = 'PANEL 12' 13 = 'PANEL 13' ; VALUE PERWT08F (DEFAULT=40 FUZZ=1E-6) 0 = '0.000000 WEIGHT' 716.577152 - 58851.767549 = '716.577152 - 58851.767549 WEIGHT' ; VALUE PID OTHER = 'VALID ID' ; VALUE RCVVACF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SEEDOCF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE SONOGRMF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE SURGPROF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE THRSWABF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ; VALUE VARPSUF (DEFAULT=40) 1 - 3 = '1 - 3' ; VALUE VARSTRF (DEFAULT=40) 1001 - 1165 = '1,001 - 1,165' ; VALUE VSTCTGRF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 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 MATERNITY CARE (PRE/POSTNATAL)' 91 = '91 OTHER' ; VALUE VSTRELCF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' ; VALUE XRAYSF -9 = '-9 NOT ASCERTAINED' -8 = '-8 DK' -7 = '-7 REFUSED' -1 = '-1 INAPPLICABLE' 1 = '1 YES' 2 = '2 NO' 95 = '95 NO SERVICES RECEIVED' ;