SAS User File for H239F 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 (H239F.SSP) or the ASCII data file (H239F.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\H239F.SSP'; PROC CIMPORT DATA=PUFLIB.H239F 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.H239F; TITLE 'List of Variables in MEPS H239F SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H239F (OBS=20); TITLE 'First 20 Observations in MEPS H239F 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) H239F 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 H239F.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H239F.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 H239F.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 H239F.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\H239F.DAT'; DATA PUFLIB.H239F; INFILE IN1 LRECL=308; 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 (H239F). In the example, after the successful completion of the DATA step, a PC file named H239F.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 (308 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 H239F.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., 308 for H239F.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (310 for H239F.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 (308 for H239F.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 (H239F.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.H239F; 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 H239F.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=308; INPUT @1 DUID 7.0 @8 PID 3.0 @11 DUPERSID $10.0 @21 EVNTIDX $16.0 @37 EVENTRN 1.0 @38 FFEEIDX $14.0 @52 PANEL 2.0 @54 MPCDATA 1.0 @55 OPDATEYR 4.0 @59 OPDATEMM 2.0 @61 SEEDOC_M18 2.0 @63 DRSPLTY_M18 2.0 @65 MEDPTYPE_M18 2.0 @67 VSTCTGRY 2.0 @69 VSTRELCN_M18 2.0 @71 LABTEST_M18 2.0 @73 SONOGRAM_M18 2.0 @75 XRAYS_M18 2.0 @77 MAMMOG_M18 2.0 @79 MRI_M18 2.0 @81 EKG_M18 2.0 @83 RCVVAC_M18 2.0 @85 SURGPROC 2.0 @87 MEDPRESC 3.0 @90 TELEHEALTHFLAG 1.0 @91 VISITTYPE 2.0 @93 FFOPTYPE 2.0 @95 OPXP22X 8.2 @103 OPTC22X 9.2 @112 OPFSF22X 8.2 @120 OPFMR22X 8.2 @128 OPFMD22X 8.2 @136 OPFPV22X 8.2 @144 OPFVA22X 8.2 @152 OPFTR22X 8.2 @160 OPFOF22X 7.2 @167 OPFSL22X 7.2 @174 OPFWC22X 8.2 @182 OPFOT22X 7.2 @189 OPFXP22X 8.2 @197 OPFTC22X 9.2 @206 OPDSF22X 8.2 @214 OPDMR22X 7.2 @221 OPDMD22X 7.2 @228 OPDPV22X 8.2 @236 OPDVA22X 7.2 @243 OPDTR22X 7.2 @250 OPDOF22X 4.2 @254 OPDSL22X 6.2 @260 OPDWC22X 7.2 @267 OPDOT22X 7.2 @274 OPDXP22X 8.2 @282 OPDTC22X 8.2 @290 IMPFLAG 1.0 @291 PERWT22F 13.6 @304 VARSTR 4.0 @308 VARPSU 1.0 ; * FORMAT STATEMENTS; FORMAT DUID DUIDF. PID PIDF. DUPERSID $DUPERSIDF. EVNTIDX $EVNTIDXF. EVENTRN EVENTRNF. FFEEIDX $FFEEIDXF. PANEL PANELF. MPCDATA MPCDATAF. OPDATEYR OPDATEYRF. OPDATEMM OPDATEMMF. SEEDOC_M18 SEEDOC_M18F. DRSPLTY_M18 DRSPLTY_M18F. MEDPTYPE_M18 MEDPTYPE_M18F. VSTCTGRY VSTCTGRYF. VSTRELCN_M18 VSTRELCN_M18F. 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. TELEHEALTHFLAG TELEHEALTHFLAGF. VISITTYPE VISITTYPEF. FFOPTYPE FFOPTYPEF. OPXP22X OPXP22XF. OPTC22X OPTC22XF. OPFSF22X OPFSF22XF. OPFMR22X OPFMR22XF. OPFMD22X OPFMD22XF. OPFPV22X OPFPV22XF. OPFVA22X OPFVA22XF. OPFTR22X OPFTR22XF. OPFOF22X OPFOF22XF. OPFSL22X OPFSL22XF. OPFWC22X OPFWC22XF. OPFOT22X OPFOT22XF. OPFXP22X OPFXP22XF. OPFTC22X OPFTC22XF. OPDSF22X OPDSF22XF. OPDMR22X OPDMR22XF. OPDMD22X OPDMD22XF. OPDPV22X OPDPV22XF. OPDVA22X OPDVA22XF. OPDTR22X OPDTR22XF. OPDOF22X OPDOF22XF. OPDSL22X OPDSL22XF. OPDWC22X OPDWC22XF. OPDOT22X OPDOT22XF. OPDXP22X OPDXP22XF. OPDTC22X OPDTC22XF. IMPFLAG IMPFLAGF. PERWT22F PERWT22FF. VARSTR VARSTRF. VARPSU VARPSUF. ; * LABEL STATEMENTS; LABEL DUID ="PANEL # + ENCRYPTED DU IDENTIFIER" PID ="PERSON NUMBER" DUPERSID ="PERSON ID (DUID + PID)" EVNTIDX ="EVENT ID" EVENTRN ="EVENT ROUND NUMBER" FFEEIDX ="FLAT FEE ID" PANEL ="PANEL NUMBER" MPCDATA ="MPC DATA FLAG" OPDATEYR ="EVENT DATE - YEAR" OPDATEMM ="EVENT DATE - MONTH" SEEDOC_M18 ="DID P TALK TO MD THIS VISIT" DRSPLTY_M18 ="OPAT DOCTOR S SPECIALTY" MEDPTYPE_M18 ="TYPE OF MED PERSON P TALKED TO ON VISIT DT" VSTCTGRY ="BEST CATEGORY FOR CARE P RECV ON VISIT DT" VSTRELCN_M18 ="THIS VISIT RELATED TO SPEC COND" 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" TELEHEALTHFLAG ="IS THIS A TELEHEALTH EVENT" VISITTYPE ="TYPE OF TELEHEALTH VISIT" FFOPTYPE ="FLAT FEE BUNDLE" OPXP22X ="TOTAL EXP FOR EVENT (OPFXP22X + OPDXP22X)" OPTC22X ="TOTAL CHG FOR EVENT (OPFTC22X + OPDTC22X)" OPFSF22X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" OPFMR22X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" OPFMD22X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" OPFPV22X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" OPFVA22X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" OPFTR22X ="FACILITY AMOUNT PAID, TRICARE (IMPUTED)" OPFOF22X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" OPFSL22X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" OPFWC22X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" OPFOT22X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" OPFXP22X ="FACILITY SUM PAYMENTS OPFSF22X - OPFOT22X" OPFTC22X ="TOTAL FACILITY CHARGE (IMPUTED)" OPDSF22X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" OPDMR22X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" OPDMD22X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" OPDPV22X ="DOCTOR AMOUNT PAID, PRIVATE INSUR (IMPUTED)" OPDVA22X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" OPDTR22X ="DOCTOR AMOUNT PAID, TRICARE (IMPUTED)" OPDOF22X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" OPDSL22X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" OPDWC22X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" OPDOT22X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" OPDXP22X ="DOCTOR SUM PAYMENTS OPDSF22X - OPDOT22X" OPDTC22X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT22F ="EXPENDITURE FILE PERSON WEIGHT, 2022" VARSTR ="VARIANCE ESTIMATION STRATUM, 2022" VARPSU ="VARIANCE ESTIMATION PSU, 2022" ; * VALUE STATEMENTS; VALUE DRSPLTY_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 ALLERGY/IMMUNOLOGY" 2 = "2 ANESTHESIOLOGY" 3 = "3 CARDIOLOGY (HEART)" 4 = "4 DERMATOLOGY (SKIN)" 5 = "5 ENDOCRINOLOGY/METABOLISM" 6 = "6 FAMILY PRACTICE" 7 = "7 GASTROENTEROLOGY" 8 = "8 GENERAL PRACTICE" 9 = "9 GENERAL SURGERY" 10 = "10 GERIATRICS (ELDERLY)" 11 = "11 GYNECOLOGY/OBSTETRICS" 12 = "12 HEMATOLOGY (BLOOD)" 13 = "13 HOSPITAL RESIDENCE" 14 = "14 INTERNAL MEDICINE" 15 = "15 NEPHROLOGY (KIDNEYS)" 16 = "16 NEUROLOGY" 18 = "18 ONCOLOGY" 19 = "19 OPHTHALMOLOGY" 20 = "20 ORTHOPEDICS" 21 = "21 OSTEOPATHY" 22 = "22 OTORHINOLARYNGOLOGY" 23 = "23 PATHOLOGY" 24 = "24 PEDIATRICIAN" 25 = "25 PHYSICAL MEDICINE/REHAB" 26 = "26 PLASTIC SURGERY" 27 = "27 PROCTOLOGY" 28 = "28 PSYCHIATRY" 29 = "29 PULMONARY" 30 = "30 RADIOLOGY" 31 = "31 RHEUMATOLOGY (ARTHRITIS)" 32 = "32 THORACIC SURGERY" 33 = "33 UROLOGY" 91 = "91 OTHER DR SPECIALTY" ; VALUE DUIDF 2460002 - 2799700 = "VALID ID" ; VALUE $DUPERSIDF '2460002101' - '2799700101' = "VALID ID" ; VALUE EKG_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE EVENTRNF 1 = "1 ROUND 1" 2 = "2 ROUND 2" 3 = "3 ROUND 3" 4 = "4 ROUND 4" 5 = "5 ROUND 5" 6 = "6 ROUND 6" 7 = "7 ROUND 7" 8 = "8 ROUND 8" 9 = "9 ROUND 9" ; VALUE $EVNTIDXF '2460002101009101' - '2799700101000501' = "VALID ID" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10003' - '20422' = "VALID ID" ; VALUE FFOPTYPEF -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 FLAT FEE STEM" 2 = "2 FLAT FEE LEAF" ; VALUE IMPFLAGF 0 = "0 NOT ELIGIBLE FOR IMPUTATION" 1 = "1 COMPLETE HC DATA" 2 = "2 COMPLETE MPC DATA" 3 = "3 FULLY IMPUTED" 4 = "4 PARTIALLY IMPUTED" 5 = "5 CAPITATION IMPUTATION" ; VALUE LABTEST_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MAMMOG_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE MEDPRESCF -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE MEDPTYPE_M18F -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 ACUPUNCTURIST" 2 = "2 CHIROPRACTOR" 3 = "3 DENTIST/DENTAL CARE PERSON" 4 = "4 ALTERNATIVE MEDICINE PROVIDER" 5 = "5 MASSAGE THERAPIST" 6 = "6 MENTAL HLTH CNSLR/MARITAL OR FAM THERAPIST" 7 = "7 MIDWIFE" 8 = "8 NURSE/NURSE PRACTITIONER" 9 = "9 OPTOMETRIST" 10 = "10 PHYSICAL/OCCUPATIONAL THERAPIST" 11 = "11 PHYSICIAN'S ASSISTANT" 12 = "12 PODIATRIST" 13 = "13 PSYCHOLOGIST" 14 = "14 SOCIAL WORKER" 15 = "15 TECHNICIAN" 91 = "91 OTHER" ; VALUE MPCDATAF 1 = "1 HAS MPC DATA" 2 = "2 NO MPC DATA" ; VALUE MRI_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE OPDATEMMF -8 = "-8 DK" -7 = "-7 REFUSED" 1 - 12 = "1-12 MONTH" ; VALUE OPDATEYRF -8 = "-8 DK" -7 = "-7 REFUSED" 2022 = "2022" ; VALUE OPDMD22XF 0 = "0" 0.05 - 36.23 = "$0.05 - $36.23" 36.24 - 79.86 = "$36.24 - $79.86" 79.87 - 181.04 = "$79.87 - $181.04" 181.05 - 2592.91 = "$181.05 - $2,592.91" ; VALUE OPDMR22XF 0 = "0" 2.33 - 62.59 = "$2.33 - $62.59" 62.6 - 128.51 = "$62.60 - $128.51" 128.52 - 236.41 = "$128.52 - $236.41" 236.42 - 5175.2 = "$236.42 - $5,175.20" ; VALUE OPDOF22XF 0 = "0.00" ; VALUE OPDOT22XF 0 = "0" 2 - 4.83 = "$2.00 - $4.83" 4.84 - 74.77 = "$4.84 - $74.77" 74.78 - 430.49 = "$74.78 - $430.49" 430.5 - 4971.9 = "$430.50 - $4,971.90" ; VALUE OPDPV22XF 0 = "0" 0.84 - 34.39 = "$0.84 - $34.39" 34.4 - 125.56 = "$34.40 - $125.56" 125.57 - 348.9 = "$125.57 - $348.90" 348.91 - 22009.92 = "$348.91 - $22,009.92" ; VALUE OPDSF22XF 0 = "0" 2.16 - 25 = "$2.16 - $25.00" 25.01 - 87.09 = "$25.01 - $87.09" 87.1 - 281.2 = "$87.10 - $281.20" 281.21 - 13595.82 = "$281.21 - $13,595.82" ; VALUE OPDSL22XF 0 = "0" 443.24 = "$443.24" ; VALUE OPDTC22XF 0 = "0" 7.09 - 275.06 = "$7.09 - $275.06" 275.07 - 703 = "$275.07 - $703.00" 703.01 - 1531 = "$703.01 - $1,531.00" 1531.01 - 67945 = "$1,531.01 - $67,945.00" ; VALUE OPDTR22XF 0 = "0" 2.06 - 21.55 = "$2.06 - $21.55" 21.56 - 55.4 = "$21.56 - $55.40" 55.41 - 130.36 = "$55.41 - $130.36" 130.37 - 2656.28 = "$130.37 - $2,656.28" ; VALUE OPDVA22XF 0 = "0" 8.82 - 86.87 = "$8.82 - $86.87" 86.88 - 242.74 = "$86.88 - $242.74" 242.75 - 477.33 = "$242.75 - $477.33" 477.34 - 2076.24 = "$477.34 - $2,076.24" ; VALUE OPDWC22XF 0 = "0" 2 - 71.42 = "$2.00 - $71.42" 71.43 - 110.96 = "$71.43 - $110.96" 110.97 - 296.94 = "$110.97 - $296.94" 296.95 - 5788.2 = "$296.95 - $5,788.20" ; VALUE OPDXP22XF 0 = "0" 2.08 - 74.16 = "$2.08 - $74.16" 74.17 - 167.42 = "$74.17 - $167.42" 167.43 - 348.25 = "$167.43 - $348.25" 348.26 - 22009.92 = "$348.26 - $22,009.92" ; VALUE OPFMD22XF 0 = "0" 0.01 - 44.46 = "$0.01 - $44.46" 44.47 - 106.87 = "$44.47 - $106.87" 106.88 - 209.12 = "$106.88 - $209.12" 209.13 - 77511.72 = "$209.13 - $77,511.72" ; VALUE OPFMR22XF 0 = "0" 0.15 - 71.56 = "$0.15 - $71.56" 71.57 - 123.24 = "$71.57 - $123.24" 123.25 - 285.18 = "$123.25 - $285.18" 285.19 - 72662.03 = "$285.19 - $72,662.03" ; VALUE OPFOF22XF 0 = "0" 11.09 - 41.14 = "$11.09 - $41.14" 41.15 - 47.74 = "$41.15 - $47.74" 47.75 - 113.24 = "$47.75 - $113.24" 113.25 - 3381.87 = "$113.25 - $3,381.87" ; VALUE OPFOT22XF 0 = "0" 5.28 - 76.42 = "$5.28 - $76.42" 76.43 - 195.17 = "$76.43 - $195.17" 195.18 - 461.31 = "$195.18 - $461.31" 461.32 - 7602.76 = "$461.32 - $7,602.76" ; VALUE OPFPV22XF 0 = "0" 0.14 - 49.88 = "$0.14 - $49.88" 49.89 - 148.79 = "$49.89 - $148.79" 148.8 - 379.1 = "$148.80 - $379.10" 379.11 - 76366.81 = "$379.11 - $76,366.81" ; VALUE OPFSF22XF 0 = "0" 0.25 - 20 = "$0.25 - $20.00" 20.01 - 40 = "$20.01 - $40.00" 40.01 - 127.97 = "$40.01 - $127.97" 127.98 - 29588.99 = "$127.98 - $29,588.99" ; VALUE OPFSL22XF 0 = "0" 8 - 93.55 = "$8.00 - $93.55" 93.56 - 171.19 = "$93.56 - $171.19" 171.2 - 497.57 = "$171.20 - $497.57" 497.58 - 1416.05 = "$497.58 - $1,416.05" ; VALUE OPFTC22XF 0 = "0" 3 - 248 = "$3.00 - $248.00" 248.01 - 484 = "$248.01 - $484.00" 484.01 - 1580.68 = "$484.01 - $1,580.68" 1580.69 - 262137.85 = "$1,580.69 - $262,137.85" ; VALUE OPFTR22XF 0 = "0" 2.85 - 27.06 = "$2.85 - $27.06" 27.07 - 60.02 = "$27.07 - $60.02" 60.03 - 169.93 = "$60.03 - $169.93" 169.94 - 34251.24 = "$169.94 - $34,251.24" ; VALUE OPFVA22XF 0 = "0" 3.26 - 205.5 = "$3.26 - $205.50" 205.51 - 358.85 = "$205.51 - $358.85" 358.86 - 691.76 = "$358.86 - $691.76" 691.77 - 27928.52 = "$691.77 - $27,928.52" ; VALUE OPFWC22XF 0 = "0" 15.73 - 97.92 = "$15.73 - $97.92" 97.93 - 141.21 = "$97.93 - $141.21" 141.22 - 302.63 = "$141.22 - $302.63" 302.64 - 21953.33 = "$302.64 - $21,953.33" ; VALUE OPFXP22XF 0 = "0" 0.5 - 98.63 = "$0.50 - $98.63" 98.64 - 182.19 = "$98.64 - $182.19" 182.2 - 444.35 = "$182.20 - $444.35" 444.36 - 77511.72 = "$444.36 - $77,511.72" ; VALUE OPTC22XF 0 = "0" 3 - 309.94 = "$3.00 - $309.94" 309.95 - 787 = "$309.95 - $787.00" 787.01 - 2441 = "$787.01 - $2,441.00" 2441.01 - 262137.85 = "$2,441.01 - $262,137.85" ; VALUE OPXP22XF 0 = "0" 1.66 - 120.84 = "$1.66 - $120.84" 120.85 - 242.96 = "$120.85 - $242.96" 242.97 - 590.16 = "$242.97 - $590.16" 590.17 - 88726.64 = "$590.17 - $88,726.64" ; VALUE PANELF 24 = "24 PANEL 24" 26 = "26 PANEL 26" 27 = "27 PANEL 27" ; VALUE PERWT22FF 0 = "0.000000" 436.75482 - 106198.676667 = "436.754820 - 106198.676667" ; VALUE PIDF 101 - 303 = "VALID ID" ; VALUE RCVVAC_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SEEDOC_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE SONOGRAM_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ; VALUE SURGPROCF -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" ; VALUE TELEHEALTHFLAGF -15 = "-15 CANNOT BE COMPUTED" 1 = "1 YES" 2 = "2 NO" ; VALUE VARPSUF 1 - 8 = "1 - 8" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117" ; VALUE VISITTYPEF -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 PHONE" 2 = "2 VIDEO" 3 = "3 SOME OTHER WAY" ; VALUE VSTCTGRYF -15 = "-15 CANNOT BE COMPUTED" -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 GENERAL CHECKUP" 2 = "2 DIAGNOSIS OR TREATMENT" 3 = "3 EMERGENCY (E.G., ACCIDENT OR INJURY)" 4 = "4 PSYCHOTHERAPY/MENTAL HEALTH COUNSELING" 5 = "5 FOLLOW-UP OR POST-OPERATIVE VISIT" 6 = "6 IMMUNIZATIONS OR SHOTS" 7 = "7 VISION EXAM" 8 = "8 PREGNANCY-RELATED (INC PRENATAL/ DELV)" 9 = "9 WELL CHILD EXAM" 10 = "10 LASER EYE SURGERY" 91 = "91 OTHER" ; VALUE VSTRELCN_M18F -8 = "-8 DK" -7 = "-7 REFUSED" 1 = "1 YES" 2 = "2 NO" ; VALUE XRAYS_M18F -8 = "-8 DK" -7 = "-7 REFUSED" -1 = "-1 INAPPLICABLE" 1 = "1 YES" 2 = "2 NO" 95 = "95 NO SERVICES RECEIVED" ;