On May 14, 8:46 am, Preci <
precilla.j...@gmail.com> wrote:
> I am able to access the first worksheet using "oo.sheets.first". Can
> anyone help me in accessing the rest of the worsheet in ods file.
"oo.sheets.first" is the same as "oo.sheets[0]", which is the first
element of the "sheets"-array.
The second sheet is "oo.sheets[1]".
'.first' and '.last' are methods from the class Array, but there is no
such thing as 'second', 'third', ...
-Thomas