I need a report that will show the total of all sales which contain a certain item. For example last month what was the value of our sales that included Labor?
Many thanks
*This post is locked for comments
I need a report that will show the total of all sales which contain a certain item. For example last month what was the value of our sales that included Labor?
Many thanks
*This post is locked for comments
Thanks Ed! I'm able to run the query in Admin to get the info I need. Not the ideal situation but at least I'm heading in the right direction.
That makes sense.
Unfortunately none of the reports act that way. You would have to create a custom report with something like the following query.
select * from [transaction] where TransactionNumber IN (select transactionnumber from [TransactionEntry] where ItemID = 43 )
Replace 43 with the ID for the item from the [Item] table.
To get the id from the item table, run the following in Admin: Select * from [Item]
Thanks Ed. Unfortunately that just gives me the total for Labor. I need to see the total for all transactions that included Labor not just the amount of Labor. Does that make sense?
Run the Detailed Sales report and include a filter for that item.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156