sportdlockport
Technical User
How can I add a grand total sum at the end of a detailed query without using a report. Is this possible in Access?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
(Select SomeField, TheNumber From tbl)
UNION ALL
(Select 'Total', SUM(TheNumber) From tbl)
DSum("[FieldToSum]","Domain", "[Invoice Date] < " & Now())