I would like to use a query in a report, which is something like:
select (select max(fld) from tbl) as maxFld, * from tbl
however I need to get rid of the subquery because this is used in the recordsource of a report with multiple level groupings.
Any ideas, on achieving the same thing without having to use that subquery?
Thanks
--------------------
Procrastinate Now!
select (select max(fld) from tbl) as maxFld, * from tbl
however I need to get rid of the subquery because this is used in the recordsource of a report with multiple level groupings.
Any ideas, on achieving the same thing without having to use that subquery?
Thanks
--------------------
Procrastinate Now!