SAS User File for H220F 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 (H220F.SSP) or the ASCII data file (H220F.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\H220F.SSP'; PROC CIMPORT DATA=PUFLIB.H220F 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.H220F; TITLE 'List of Variables in MEPS H220F SAS Dataset'; RUN; PROC PRINT DATA=PUFLIB.H220F (OBS=20); TITLE 'First 20 Observations in MEPS H220F 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) H220F 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 H220F.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when PROC CIMPORT runs successfully. 4) The SAS transport file H220F.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 H220F.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 H220F.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\H220F.DAT'; DATA PUFLIB.H220F; INFILE IN1 LRECL=313; 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 (H220F). In the example, after the successful completion of the DATA step, a PC file named H220F.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 (313 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 H220F.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., 313 for H220F.DAT). If RECFM=F is used, then the LRECL value must be specified as the logical record length plus 2 (315 for H220F.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 (313 for H220F.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 (H220F.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.H220F; 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 H220F.DAT file into a SAS dataset, and for creating SAS formats. * INPUT STATEMENTS; INFILE IN LRECL=313; 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 VISITTYPE 2.0 @92 TELEHEALTHFLAG 3.0 @95 FFOPTYPE 2.0 @97 OPXP20X 9.2 @106 OPTC20X 9.2 @115 OPFSF20X 8.2 @123 OPFMR20X 8.2 @131 OPFMD20X 8.2 @139 OPFPV20X 9.2 @148 OPFVA20X 8.2 @156 OPFTR20X 8.2 @164 OPFOF20X 8.2 @172 OPFSL20X 7.2 @179 OPFWC20X 8.2 @187 OPFOT20X 8.2 @195 OPFXP20X 9.2 @204 OPFTC20X 9.2 @213 OPDSF20X 7.2 @220 OPDMR20X 7.2 @227 OPDMD20X 7.2 @234 OPDPV20X 8.2 @242 OPDVA20X 7.2 @249 OPDTR20X 7.2 @256 OPDOF20X 4.2 @260 OPDSL20X 6.2 @266 OPDWC20X 7.2 @273 OPDOT20X 7.2 @280 OPDXP20X 8.2 @288 OPDTC20X 8.2 @296 IMPFLAG 1.0 @297 PERWT20F 12.6 @309 VARSTR 4.0 @313 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. VISITTYPE VISITTYPEF. TELEHEALTHFLAG TELEHEALTHFLAGF. FFOPTYPE FFOPTYPEF. OPXP20X OPXP20XF. OPTC20X OPTC20XF. OPFSF20X OPFSF20XF. OPFMR20X OPFMR20XF. OPFMD20X OPFMD20XF. OPFPV20X OPFPV20XF. OPFVA20X OPFVA20XF. OPFTR20X OPFTR20XF. OPFOF20X OPFOF20XF. OPFSL20X OPFSL20XF. OPFWC20X OPFWC20XF. OPFOT20X OPFOT20XF. OPFXP20X OPFXP20XF. OPFTC20X OPFTC20XF. OPDSF20X OPDSF20XF. OPDMR20X OPDMR20XF. OPDMD20X OPDMD20XF. OPDPV20X OPDPV20XF. OPDVA20X OPDVA20XF. OPDTR20X OPDTR20XF. OPDOF20X OPDOF20XF. OPDSL20X OPDSL20XF. OPDWC20X OPDWC20XF. OPDOT20X OPDOT20XF. OPDXP20X OPDXP20XF. OPDTC20X OPDTC20XF. IMPFLAG IMPFLAGF. PERWT20F PERWT20FF. 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" VISITTYPE ="TYPE OF TELEHEALTH VISIT" TELEHEALTHFLAG ="IS THIS A TELEHEALTH EVENT" FFOPTYPE ="FLAT FEE BUNDLE" OPXP20X ="TOTAL EXP FOR EVENT (OPFXP20X + OPDXP20X)" OPTC20X ="TOTAL CHG FOR EVENT (OPFTC20X + OPDTC20X)" OPFSF20X ="FACILITY AMOUNT PAID, FAMILY (IMPUTED)" OPFMR20X ="FACILITY AMOUNT PAID, MEDICARE (IMPUTED)" OPFMD20X ="FACILITY AMOUNT PAID, MEDICAID (IMPUTED)" OPFPV20X ="FACILITY AMOUNT PAID, PRIV INSUR (IMPUTED)" OPFVA20X ="FACILITY AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" OPFTR20X ="FACILITY AMOUNT PAID, TRICARE (IMPUTED)" OPFOF20X ="FACILITY AMOUNT PAID, OTH FEDERAL (IMPUTED)" OPFSL20X ="FACILITY AMOUNT PAID, STATE/LOC GOV (IMPUTED)" OPFWC20X ="FACILITY AMOUNT PAID, WORKERS COMP (IMPUTED)" OPFOT20X ="FACILITY AMOUNT PAID, OTH INSUR (IMPUTED)" OPFXP20X ="FACILITY SUM PAYMENTS OPFSF20X - OPFOT20X" OPFTC20X ="TOTAL FACILITY CHARGE (IMPUTED)" OPDSF20X ="DOCTOR AMOUNT PAID, FAMILY (IMPUTED)" OPDMR20X ="DOCTOR AMOUNT PAID, MEDICARE (IMPUTED)" OPDMD20X ="DOCTOR AMOUNT PAID, MEDICAID (IMPUTED)" OPDPV20X ="DOCTOR AMOUNT PAID, PRIVATE INSUR (IMPUTED)" OPDVA20X ="DOCTOR AMOUNT PAID, VETERANS/CHAMPVA (IMPUTED)" OPDTR20X ="DOCTOR AMOUNT PAID, TRICARE (IMPUTED)" OPDOF20X ="DOCTOR AMOUNT PAID, OTH FEDERAL (IMPUTED)" OPDSL20X ="DOCTOR AMOUNT PAID, STATE/LOC GOV (IMPUTED)" OPDWC20X ="DOCTOR AMOUNT PAID, WORKERS COMP (IMPUTED)" OPDOT20X ="DOCTOR AMOUNT PAID, OTH INSUR (IMPUTED)" OPDXP20X ="DOCTOR SUM PAYMENTS OPDSF20X - OPDOT20X" OPDTC20X ="TOTAL DOCTOR CHARGE (IMPUTED)" IMPFLAG ="IMPUTATION STATUS" PERWT20F ="EXPENDITURE FILE PERSON WEIGHT, 2020" VARSTR ="VARIANCE ESTIMATION STRATUM, 2020" VARPSU ="VARIANCE ESTIMATION PSU, 2020" ; * 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 2320018 - 2579834 = "VALID ID" ; VALUE $DUPERSIDF '2320018102' - '2579834102' = "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" ; VALUE $EVNTIDXF '2320018102209501' - '2579834102000201' = "VALID ID" ; VALUE $FFEEIDXF '-1' = "-1 INAPPLICABLE" '10003' - 'OP257907910202' = "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" 2020 = "2020" ; VALUE OPDMD20XF 0 = "0" 0.01 - 30.67 = "$0.01 - $30.67" 30.68 - 73.4 = "$30.68 - $73.40" 73.41 - 171.55 = "$73.41 - $171.55" 171.56 - 3587.93 = "$171.56 - $3,587.93" ; VALUE OPDMR20XF 0 = "0" 1.68 - 60.89 = "$1.68 - $60.89" 60.9 - 138.96 = "$60.90 - $138.96" 138.97 - 277.84 = "$138.97 - $277.84" 277.85 - 6385.53 = "$277.85 - $6,385.53" ; VALUE OPDOF20XF 0 = "0.00" ; VALUE OPDOT20XF 0 = "0" 16.96 - 71.48 = "$16.96 - $71.48" 71.49 - 100 = "$71.49 - $100.00" 100.01 - 206 = "$100.01 - $206.00" 206.01 - 1042.75 = "$206.01 - $1,042.75" ; VALUE OPDPV20XF 0 = "0" 0.5 - 39.93 = "$0.50 - $39.93" 39.94 - 133.84 = "$39.94 - $133.84" 133.85 - 367.96 = "$133.85 - $367.96" 367.97 - 27771.44 = "$367.97 - $27,771.44" ; VALUE OPDSF20XF 0 = "0" 0.2 - 20 = "$0.20 - $20.00" 20.01 - 50.6 = "$20.01 - $50.60" 50.61 - 177.96 = "$50.61 - $177.96" 177.97 - 3064.07 = "$177.97 - $3,064.07" ; VALUE OPDSL20XF 0 = "0" 352.4 = "$352.40" ; VALUE OPDTC20XF 0 = "0" 0.01 - 226.8 = "$0.01 - $226.80" 226.81 - 597 = "$226.81 - $597.00" 597.01 - 1490 = "$597.01 - $1,490.00" 1490.01 - 54169 = "$1,490.01 - $54,169.00" ; VALUE OPDTR20XF 0 = "0" 1.82 - 18.47 = "$1.82 - $18.47" 18.48 - 45.38 = "$18.48 - $45.38" 45.39 - 102.72 = "$45.39 - $102.72" 102.73 - 1519.07 = "$102.73 - $1,519.07" ; VALUE OPDVA20XF 0 = "0" 6.13 - 10.58 = "$6.13 - $10.58" 10.59 - 38.96 = "$10.59 - $38.96" 38.97 - 178.13 = "$38.97 - $178.13" 178.14 - 1861.8 = "$178.14 - $1,861.80" ; VALUE OPDWC20XF 0 = "0" 9.59 - 89.41 = "$9.59 - $89.41" 89.42 - 196.89 = "$89.42 - $196.89" 196.9 - 1017.47 = "$196.90 - $1,017.47" 1017.48 - 3292.28 = "$1,017.48 - $3,292.28" ; VALUE OPDXP20XF 0 = "0" 2.1 - 73.25 = "$2.10 - $73.25" 73.26 - 168.79 = "$73.26 - $168.79" 168.8 - 364.51 = "$168.80 - $364.51" 364.52 - 27771.44 = "$364.52 - $27,771.44" ; VALUE OPFMD20XF 0 = "0" 0.06 - 40.3 = "$0.06 - $40.30" 40.31 - 79.61 = "$40.31 - $79.61" 79.62 - 178.22 = "$79.62 - $178.22" 178.23 - 19108.08 = "$178.23 - $19,108.08" ; VALUE OPFMR20XF 0 = "0" 0.01 - 65.06 = "$0.01 - $65.06" 65.07 - 114.64 = "$65.07 - $114.64" 114.65 - 263.07 = "$114.65 - $263.07" 263.08 - 82000 = "$263.08 - $82,000.00" ; VALUE OPFOF20XF 0 = "0" 3.31 - 87.55 = "$3.31 - $87.55" 87.56 - 165.13 = "$87.56 - $165.13" 165.14 - 249.5 = "$165.14 - $249.50" 249.51 - 11752.71 = "$249.51 - $11,752.71" ; VALUE OPFOT20XF 0 = "0" 0.19 - 165 = "$0.19 - $165.00" 165.01 - 363.67 = "$165.01 - $363.67" 363.68 - 1006.59 = "$363.68 - $1,006.59" 1006.6 - 19698.26 = "$1,006.60 - $19,698.26" ; VALUE OPFPV20XF 0 = "0" 0.12 - 48.45 = "$0.12 - $48.45" 48.46 - 141.24 = "$48.46 - $141.24" 141.25 - 358.3 = "$141.25 - $358.30" 358.31 - 118163.04 = "$358.31 - $118,163.04" ; VALUE OPFSF20XF 0 = "0" 0.01 - 20 = "$0.01 - $20.00" 20.01 - 40 = "$20.01 - $40.00" 40.01 - 132.52 = "$40.01 - $132.52" 132.53 - 16800 = "$132.53 - $16,800.00" ; VALUE OPFSL20XF 0 = "0" 4.08 - 72.78 = "$4.08 - $72.78" 72.79 - 114.73 = "$72.79 - $114.73" 114.74 - 267.15 = "$114.74 - $267.15" 267.16 - 3032.54 = "$267.16 - $3,032.54" ; VALUE OPFTC20XF 0 = "0" 0.68 - 221 = "$0.68 - $221.00" 221.01 - 441 = "$221.01 - $441.00" 441.01 - 1367 = "$441.01 - $1,367.00" 1367.01 - 622232.56 = "$1,367.01 - $622,232.56" ; VALUE OPFTR20XF 0 = "0" 2.29 - 21.4 = "$2.29 - $21.40" 21.41 - 54.79 = "$21.41 - $54.79" 54.8 - 197.44 = "$54.80 - $197.44" 197.45 - 33768.49 = "$197.45 - $33,768.49" ; VALUE OPFVA20XF 0 = "0" 0.06 - 131.99 = "$0.06 - $131.99" 132 - 319.84 = "$132.00 - $319.84" 319.85 - 628 = "$319.85 - $628.00" 628.01 - 14647.57 = "$628.01 - $14,647.57" ; VALUE OPFWC20XF 0 = "0" 22.67 - 133.18 = "$22.67 - $133.18" 133.19 - 198.91 = "$133.19 - $198.91" 198.92 - 1182.68 = "$198.92 - $1,182.68" 1182.69 - 13308.99 = "$1,182.69 - $13,308.99" ; VALUE OPFXP20XF 0 = "0" 0.06 - 82.8 = "$0.06 - $82.80" 82.81 - 162.82 = "$82.81 - $162.82" 162.83 - 390.63 = "$162.83 - $390.63" 390.64 - 118163.04 = "$390.64 - $118,163.04" ; VALUE OPTC20XF 0 = "0" 0.68 - 271.5 = "$0.68 - $271.50" 271.51 - 692.02 = "$271.51 - $692.02" 692.03 - 2188 = "$692.03 - $2,188.00" 2188.01 - 622232.56 = "$2,188.01 - $622,232.56" ; VALUE OPXP20XF 0 = "0" 0.06 - 105 = "$0.06 - $105.00" 105.01 - 225.63 = "$105.01 - $225.63" 225.64 - 575.16 = "$225.64 - $575.16" 575.17 - 118343.48 = "$575.17 - $118,343.48" ; VALUE PANELF 23 = "23 PANEL 23" 24 = "24 PANEL 24" 25 = "25 PANEL 25" ; VALUE PERWT20FF 0 = "0.000000" 330.927387 - 75587.643058 = "330.927387 - 75587.643058" ; VALUE PIDF 101 - 501 = "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 - 6 = "1 - 6 VARPSU" ; VALUE VARSTRF 2001 - 2117 = "2001 - 2117 VARSTR" ; 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" ;