Place the textbox in report body at the end; so it appears at the end of the report.
Or place it in the footer and add an expression on property "Hidden" like
=IIF(Globals!PageNumber = Globals!TotalPages, False, True)
It compares the current page number with the count of total pages and set "Hidden" to false only on the last page.