Is there a way to show items with no invoices as of any specific period of time per location?
s
Sitaram upadhya
05/29/2023, 7:25 AM
Create a saved search on item record - On criteria put - Transaction fields..-> Type-> None of Invoice, Under column put Name, Location
l
Luis
05/29/2023, 9:02 AM
But I need it for a specific period of time only and per location
r
raghav
05/29/2023, 7:17 PM
You can do a nested query.
Below is the psuedo logic you can apply.
Select item details (all columns you require).
From items
Not In the below query.
Select item.id
From invoice
Where date created between your date range.
Group by item.id