in reply to Re: Creating the right type of array...
in thread Creating the right type of array...
You just say $data{OTI}->[0][3].
The first index number will indicate which line it is (i.e. 0 for the first OTI line, the 1 for second OTI line, etc.) while the second number indicates the element in that line.
So just write:
$data{type}->[line][element]
to access the element you want.