Thanks Mike,

That does not appear to add multiple dictionaries, which is fine - except, how do I know the class of an item if I do not know which dictionary it cam from?
My thought was
  • Grab element from array avItem(j,i)
    Search dic(1) if found then item is in Class Country
    Assign to avCountry()
    Else search dic(2)
    If found then item is in class Customer
    Assign to avCustomer()
    Else search dic(3)
    If found then item is in class Part
    Assign to avPart()
    Else search dic(4)
    If found then item is in class Date
    Assign to avDate()
    Else
    Not found print avItem(j,i) #FileNum

Is that doable?
Is there a better way?
thx
w