SAS User File for H248H 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 (H248H.SSP) or the ASCII data file (H248H.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\H248H.SSP';                                                
                                                                                                    
     PROC CIMPORT DATA=PUFLIB.H248H 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.H248H;                                                          
     TITLE 'List of Variables in MEPS H248H SAS Dataset';                                      
     RUN;                                                                                           
                                                                                                    
     PROC PRINT DATA=PUFLIB.H248H (OBS=20);                                                    
     TITLE 'First 20 Observations in MEPS H248H 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)  H248H 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                        
     H248H.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when                   
     PROC CIMPORT runs successfully.                                                                
                                                                                                    
     4)  The SAS transport file H248H.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 H248H.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 H248H.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\H248H.DAT';                                                
                                                                                                    
     DATA PUFLIB.H248H;                                                                        
     INFILE IN1 LRECL=201;                                                                     
     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 (H248H).  In the example, after the successful                    
completion of the DATA step, a PC file named H248H.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 (201                        
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 H248H.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., 201 for H248H.DAT).  If RECFM=F is used, then the                    
LRECL value must  be specified as the logical record length plus 2 (203 for            
H248H.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 (201 for H248H.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 (H248H.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.H248H;                                                              
     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 H248H.DAT file into a SAS dataset, and for creating                       
SAS formats.                                                                                        
                                                                                                    
* INPUT STATEMENTS;
INFILE IN LRECL=201;

INPUT @1      DUID                              7.0
      @8      PID                               3.0
      @11     DUPERSID                         $10.0
      @21     EVNTIDX                          $16.0
      @37     EVENTRN                           1.0
      @38     PANEL                             2.0
      @40     HHDATEYR                          4.0
      @44     HHDATEMM                          2.0
      @46     MPCELIG                           1.0
      @47     SELFAGEN                          2.0
      @49     HHTYPE                            1.0
      @50     CNA_M18                           2.0
      @52     DIETICN_M18                       2.0
      @54     IVTHP_M18                         2.0
      @56     MEDLDOC_M18                       2.0
      @58     NURPRACT_M18                      2.0
      @60     OCCUPTHP_M18                      2.0
      @62     PHYSLTHP_M18                      2.0
      @64     RESPTHP_M18                       2.0
      @66     SOCIALW_M18                       2.0
      @68     SPEECTHP_M18                      2.0
      @70     HCarWrkrProfNone_M18              2.0
      @72     COMPANN_M18                       2.0
      @74     HMEMAKER_M18                      2.0
      @76     HHAIDE_M18                        2.0
      @78     HOSPICE_M18                       2.0
      @80     NURAIDE_M18                       2.0
      @82     PERSONAL_M18                      2.0
      @84     HCarWrkrNonProfNone_M18           2.0
      @86     VSTRELCN                          2.0
      @88     FREQCY                            2.0
      @90     DAYSPWK                           2.0
      @92     DAYSPMO                           2.0
      @94     SAMESVCE_M18                      2.0
      @96     HHDAYS                            3.0
      @99     HHSF23X                           8.2
      @107    HHMR23X                           8.2
      @115    HHMD23X                           8.2
      @123    HHPV23X                           8.2
      @131    HHVA23X                           7.2
      @138    HHTR23X                           5.2
      @143    HHOF23X                           5.2
      @148    HHSL23X                           7.2
      @155    HHWC23X                           6.2
      @161    HHOT23X                           7.2
      @168    HHXP23X                           8.2
      @176    HHTC23X                           8.2
      @184    IMPFLAG                           1.0
      @185    PERWT23F                          12.6
      @197    VARSTR                            4.0
      @201    VARPSU                            1.0
;


* FORMAT STATEMENTS;
FORMAT DUID                              DUIDF.
       PID                               PIDF.
       DUPERSID                          $DUPERSIDF.
       EVNTIDX                           $EVNTIDXF.
       EVENTRN                           EVENTRNF.
       PANEL                             PANELF.
       HHDATEYR                          HHDATEYRF.
       HHDATEMM                          HHDATEMMF.
       MPCELIG                           MPCELIGF.
       SELFAGEN                          SELFAGENF.
       HHTYPE                            HHTYPEF.
       CNA_M18                           CNA_M18F.
       DIETICN_M18                       DIETICN_M18F.
       IVTHP_M18                         IVTHP_M18F.
       MEDLDOC_M18                       MEDLDOC_M18F.
       NURPRACT_M18                      NURPRACT_M18F.
       OCCUPTHP_M18                      OCCUPTHP_M18F.
       PHYSLTHP_M18                      PHYSLTHP_M18F.
       RESPTHP_M18                       RESPTHP_M18F.
       SOCIALW_M18                       SOCIALW_M18F.
       SPEECTHP_M18                      SPEECTHP_M18F.
       HCarWrkrProfNone_M18              HCARWRKRPROFNONE_M18F.
       COMPANN_M18                       COMPANN_M18F.
       HMEMAKER_M18                      HMEMAKER_M18F.
       HHAIDE_M18                        HHAIDE_M18F.
       HOSPICE_M18                       HOSPICE_M18F.
       NURAIDE_M18                       NURAIDE_M18F.
       PERSONAL_M18                      PERSONAL_M18F.
       HCarWrkrNonProfNone_M18           HCARWRKRNONPROFNONE_M18F.
       VSTRELCN                          VSTRELCNF.
       FREQCY                            FREQCYF.
       DAYSPWK                           DAYSPWKF.
       DAYSPMO                           DAYSPMOF.
       SAMESVCE_M18                      SAMESVCE_M18F.
       HHDAYS                            HHDAYSF.
       HHSF23X                           HHSF23XF.
       HHMR23X                           HHMR23XF.
       HHMD23X                           HHMD23XF.
       HHPV23X                           HHPV23XF.
       HHVA23X                           HHVA23XF.
       HHTR23X                           HHTR23XF.
       HHOF23X                           HHOF23XF.
       HHSL23X                           HHSL23XF.
       HHWC23X                           HHWC23XF.
       HHOT23X                           HHOT23XF.
       HHXP23X                           HHXP23XF.
       HHTC23X                           HHTC23XF.
       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"
      PANEL                            ="PANEL NUMBER"
      HHDATEYR                         ="EVENT DATE - YEAR"
      HHDATEMM                         ="EVENT DATE - MONTH"
      MPCELIG                          ="MPC ELIGIBILITY FLAG"
      SELFAGEN                         ="DOES PROVIDER WORK FOR AGENCY OR SELF"
      HHTYPE                           ="HOME HEALTH EVENT TYPE"
      CNA_M18                          ="TYPE OF PROF HLTH CARE WRKR - CERT NURSE ASST"
      DIETICN_M18                      ="TYPE OF PROF HLTH CARE WRKR - DIETITIAN/NUTRT"
      IVTHP_M18                        ="TYPE OF PROF HLTH CARE WRKR - IV OR INFUSION THERAPIST"
      MEDLDOC_M18                      ="TYPE OF PROF HLTH CARE WRKR - MEDICAL DOCTOR"
      NURPRACT_M18                     ="TYPE OF PROF HLTH CARE WRKR - NURSE/PRACTR"
      OCCUPTHP_M18                     ="TYPE OF PROF HLTH CARE WRKR - OCCUPATIONAL THERAP"
      PHYSLTHP_M18                     ="TYPE OF PROF HLTH CARE WRKR - PHYSICAL THERAPY"
      RESPTHP_M18                      ="TYPE OF PROF HLTH CARE WRKR - RESPIRA THERAPY"
      SOCIALW_M18                      ="TYPE OF PROF HLTH CARE WRKR - SOCIAL WORKER"
      SPEECTHP_M18                     ="TYPE OF PROF HLTH CARE WRKR - SPEECH THERAPY"
      HCarWrkrProfNone_M18             ="NONE OF THE LISTED PROFESSIONAL HOME HEALTH PROVIDERS"
      COMPANN_M18                      ="TYPE OF NON PROF HLTH CARE WRKR - COMPANION"
      HMEMAKER_M18                     ="TYPE OF NON PROF HLTH CARE WRKR - HOMEMAKER/HOUSE CLEANER"
      HHAIDE_M18                       ="TYPE OF NON PROF HLTH CARE WRKR - HOME HEALTH/CARE AIDE"
      HOSPICE_M18                      ="TYPE OF NON PROF HLTH CARE WRKR - HOSPICE WORKER"
      NURAIDE_M18                      ="TYPE OF NON PROF HLTH CARE WRKR - NURSE S AIDE"
      PERSONAL_M18                     ="TYPE OF NON PROF HLTH CARE WRKR - PERS CARE ATTDT"
      HCarWrkrNonProfNone_M18          ="NONE OF THE LISTED NON PROFESSIONAL HOME HEALTH PROVIDERS"
      VSTRELCN                         ="ANY HH CARE SVCE RELATED TO HLTH COND"
      FREQCY                           ="PROVIDER HELPED EVERY WEEK/SOME WEEKS"
      DAYSPWK                          ="# DAYS/WEEK PROVIDER CAME"
      DAYSPMO                          ="# DAYS/MONTH PROVIDER CAME"
      SAMESVCE_M18                     ="ANY OTH MONS PER RECEIVED SAME SERVICES"
      HHDAYS                           ="DAYS PER MONTH IN HOME HEALTH, 2023"
      HHSF23X                          ="AMOUNT PAID, FAMILY (IMPUTED)"
      HHMR23X                          ="AMOUNT PAID, MEDICARE (IMPUTED)"
      HHMD23X                          ="AMOUNT PAID, MEDICAID (IMPUTED)"
      HHPV23X                          ="AMOUNT PAID, PRIVATE INSURANCE (IMPUTED)"
      HHVA23X                          ="AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)"
      HHTR23X                          ="AMOUNT PAID, TRICARE (IMPUTED)"
      HHOF23X                          ="AMOUNT PAID, OTHER FEDERAL (IMPUTED)"
      HHSL23X                          ="AMOUNT PAID, STATE & LOCAL GOV (IMPUTED)"
      HHWC23X                          ="AMOUNT PAID, WORKERS COMP (IMPUTED)"
      HHOT23X                          ="AMOUNT PAID, OTHER INSURANCE (IMPUTED)"
      HHXP23X                          ="SUM OF HHSF23X - HHOT23X (IMPUTED)"
      HHTC23X                          ="HHLD REPORTED TOTAL CHARGE (IMPUTED)"
      IMPFLAG                          ="IMPUTATION STATUS"
      PERWT23F                         ="EXPENDITURE FILE PERSON WEIGHT, 2023"
      VARSTR                           ="VARIANCE ESTIMATION STRATUM, 2023"
      VARPSU                           ="VARIANCE ESTIMATION PSU, 2023"
;


* VALUE STATEMENTS;
VALUE CNA_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE COMPANN_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE DAYSPMOF  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  1 - 31 = "1-31"
  ;
VALUE DAYSPWKF  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 - 7 = "1-7"
  ;
VALUE DIETICN_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE DUIDF  
  2790006 - 2819708 = "VALID ID"
  ;
VALUE $DUPERSIDF  
  '2790006101' - '2819708102' = "VALID ID"
  ;
VALUE EVENTRNF  
  1 = "1 ROUND 1"
  2 = "2 ROUND 2"
  3 = "3 ROUND 3"
  4 = "4 ROUND 4"
  5 = "5 ROUND 5"
  ;
VALUE $EVNTIDXF  
  '2790006101001101' - '2819708102002201' = "VALID ID"
  ;
VALUE FREQCYF  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 EVERY WEEK"
  2 = "2 SOME WEEKS"
  3 = "3 ONLY CAME ONCE"
  ;
VALUE HCARWRKRNONPROFNONE_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE HCARWRKRPROFNONE_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE HHAIDE_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE HHDATEMMF  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 - 12 = "1-12 MONTH"
  ;
VALUE HHDATEYRF  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  2023 = "2023"
  ;
VALUE HHDAYSF  
  -15 = "-15 CANNOT BE COMPUTED"
  0 = "0"
  1 - 31 = "1-31"
  ;
VALUE HHMD23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  2.09 - 613.5 = "$2.09 - $613.50"
  613.51 - 1224.5 = "$613.51 - $1,224.50"
  1224.51 - 1838 = "$1,224.51 - $1,838.00"
  1838.01 - 28071.71 = "$1,838.01 - $28,071.71"
  ;
VALUE HHMR23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  6.92 - 605.4 = "$6.92 - $605.40"
  605.41 - 1335 = "$605.41 - $1,335.00"
  1335.01 - 2170.04 = "$1,335.01 - $2,170.04"
  2170.05 - 10736.43 = "$2,170.05 - $10,736.43"
  ;
VALUE HHOF23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0.00"
  ;
VALUE HHOT23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  105 - 252 = "$105.00 - $252.00"
  252.01 - 472.27 = "$252.01 - $472.27"
  472.28 - 7397 = "$472.28 - $7,397.00"
  7397.01 - 7644 = "$7,397.01 - $7,644.00"
  ;
VALUE HHPV23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  9 - 141 = "$9.00 - $141.00"
  141.01 - 580 = "$141.01 - $580.00"
  580.01 - 1911.67 = "$580.01 - $1,911.67"
  1911.68 - 75532.25 = "$1,911.68 - $75,532.25"
  ;
VALUE HHSF23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  1 - 100 = "$1.00 - $100.00"
  100.01 - 180 = "$100.01 - $180.00"
  180.01 - 423 = "$180.01 - $423.00"
  423.01 - 10174 = "$423.01 - $10,174.00"
  ;
VALUE HHSL23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  5 - 446.74 = "$5.00 - $446.74"
  446.75 - 722 = "$446.75 - $722.00"
  722.01 - 1225.41 = "$722.01 - $1,225.41"
  1225.42 - 3315 = "$1,225.42 - $3,315.00"
  ;
VALUE HHTC23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  5 - 521.9 = "$5.00 - $521.90"
  521.91 - 1253 = "$521.91 - $1,253.00"
  1253.01 - 2356 = "$1,253.01 - $2,356.00"
  2356.01 - 75532.25 = "$2,356.01 - $75,532.25"
  ;
VALUE HHTR23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0.00"
  ;
VALUE HHTYPEF  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 FRIEND/NEIGHBOR"
  2 = "2 RELATIVE"
  3 = "3 VOLUNTEER"
  4 = "4 OTHER - PAID"
  5 = "5 VOLUNTEERED: MEAL SERVICE DELIVERY"
  ;
VALUE HHVA23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  9 - 1287 = "$9.00 - $1,287.00"
  1287.01 - 1577 = "$1,287.01 - $1,577.00"
  1577.01 - 1982.85 = "$1,577.01 - $1,982.85"
  1982.86 - 4180 = "$1,982.86 - $4,180.00"
  ;
VALUE HHWC23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  2 - 831 = "$2.00 - $831.00"
  ;
VALUE HHXP23XF  
  -1 = "-1 INAPPLICABLE"
  0 = "0"
  5 - 439 = "$5.00 - $439.00"
  439.01 - 1169 = "$439.01 - $1,169.00"
  1169.01 - 2021 = "$1,169.01 - $2,021.00"
  2021.01 - 75532.25 = "$2,021.01 - $75,532.25"
  ;
VALUE HMEMAKER_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE HOSPICE_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
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 IVTHP_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE MEDLDOC_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE MPCELIGF  
  1 = "1 MPC ELIGIBLE - AGENCY"
  2 = "2 NOT MPC ELIGIBLE - PAID INDEP"
  3 = "3 NOT MPC ELIG - INFORMAL CARE"
  ;
VALUE NURAIDE_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE NURPRACT_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE OCCUPTHP_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE PANELF  
  27 = "27 PANEL 27"
  28 = "28 PANEL 28"
  ;
VALUE PERSONAL_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE PERWT23FF  
  0 = "0.000000"
  501.804727 - 79231.930789 = "501.804727 - 79231.930789"
  ;
VALUE PHYSLTHP_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE PIDF  
  101 - 204 = "VALID ID"
  ;
VALUE RESPTHP_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE SAMESVCE_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE SELFAGENF  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 WORK FOR AGENCY, HOSP, NURS HOME"
  2 = "2 WORK FOR SELF"
  ;
VALUE SOCIALW_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE SPEECTHP_M18F  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;
VALUE VARPSUF  
  1 - 6 = "1 - 6"
  ;
VALUE VARSTRF  
  2001 - 2117 = "2001 - 2117"
  ;
VALUE VSTRELCNF  
  -8 = "-8 DON'T KNOW"
  -7 = "-7 REFUSED"
  -1 = "-1 INAPPLICABLE"
  1 = "1 YES"
  2 = "2 NO"
  ;