From: Gregory Brown Date: 2007-02-26T04:37:37+09:00 Subject: Re: Ruport, Table append, access to record On 2/25/07, donn@cmscms.com wrote: > I want r. to the last record appended. I was hoping r = @tbl_PAS << > would be it. But r points to the table, not the last record appended. try: r = @tbl_PAS[-1] This should do the trick. For further questions, please come catch up with us on the Ruport list. http://list.rubyreports.org -greg