If the date you want is in the subreport, then in the sub, create a formula like:
whileprintingrecords;
shared datevar subdate := {table.date};
Then in the main report, in a section below the one in which the subreport is executing, you can reference the date in a formula like:
whileprintingrecords;
shared datevar subdate;
-LB