Hi all
I am facing a problem while using REXX.
I have a double dimension array "Record.x.y".
x can take values from 1 to 5 as per need
y can take any positive value based on the type of records (type x--> 1,2,3,..)
I need to know the no. of entries in an double dimension array. I can get the no. of records in single dimension array using REC.0 but i am not able to do the same for double dimension array Record.x.y.
If I do " Say Record.x.0" it simply prints it as it is and not the no. of records.
I tried:
Temporary. = Record.x.
Say Temporary.0
But the attempt proved to be futile.
Please help me with this problem.