I have a report that contains 3 tables. I want to create a 4th table that contains data from the 3 other tables. Is there a way to reference the value from one of the other tables' textbox in my new table. All of these tables are contained in the same report. The 4th table is basically a summary of the other three tables.
Thanks in advance.

Report Table Question
Hansjoerg
Melchior91598
i dont think so, because all the textboxes in the table will be created dynamically and you can't refer those textboxes.
you better go for a stored procedure which fetch data from those tables and create a dataset based on this SP and refer this dataset in your fourth table.
Thanks.