Hello,

I am trying to read in fixed width data from a .txt file. I am following the documentation from help infix. Here is my code:

Code:
infix dictionary using Status.txt {
    id 1-9
    name 10-32
    filedate 33-40
    agency 41-44
    station 45-53
    age 54-59
    years since degree 60-65
    education level 66-67
    pay plan 68-69
}

infix using Status.txt, clear
This returns the error "using invalid varname." The infix documentation indicates that it is necessary to include "using" after "dictionary," so I do not understand why it is interpreting using as a variable name. Alternatively, I get the error message "Status.txt invalid name when I delete "using" from the first line of code.

Thank you.