wajidpharmacist007
Member
- Local time
- Today, 03:39
- Joined
- Nov 23, 2018
- Messages
- 31
I want to do running sum in Query for this i am using DSum function. I have Inventory Transactions table with Created Date, Transaction Item, quantity and description fields.
I have made query with all fields of this table and want to do running sum with Created Date wise and Transaction Item wise, for this I am running dsum in this way
But this does not work.
I do't know access pretty well, can work just graphically little bit and can not handle queries and functions more efficiently.
I just want to view total running transaction quantity of each item on daily basis for which I am doing so.
Is there any other way to do this please guide.
Thanks Alot.
I have made query with all fields of this table and want to do running sum with Created Date wise and Transaction Item wise, for this I am running dsum in this way
Code:
=DSum("[Quantity]","[Inventory Transactions]","[Inventory Transactions].[Created Date]=#" & [Inventory Transactions].[Created Date] & "# AND [Inventory Transactions].[Transaction Item] = " & [Inventory Transactions].[Transaction Item])
I do't know access pretty well, can work just graphically little bit and can not handle queries and functions more efficiently.
I just want to view total running transaction quantity of each item on daily basis for which I am doing so.
Is there any other way to do this please guide.
Thanks Alot.