Is there a way to create a report of the number of...
# beginners
b
Is there a way to create a report of the number of orders fulfilled by each location organized by Date of fulfillment
m
How many locations do you have
If you don’t have a lot you can make a fun little pseudo-pivot table in a saved search
b
Just two
m
Ok
Try this A transaction search with this criteria Type = Item Fulfillment Status = Shipped Main Line = True
In the results do Date - summary type Group Formula (numeric) - CASE WHEN {location} = ‘Location A’ THEN {internalid} END summary type Count Formula (numeric) - CASE WHEN {location} = ‘Location B’ THEN {internalid} END summary type Count
Then you can sort by date descending
Or add a date filer of last week, last month, whatever works
(I guess this is assuming you ship 1 IF per sales order
But also sometimes it’s nice to capture partial shipments
b
1 IF per order is preferred but not always 100% but this with partials is a good start
m
You could also do CASE WHEN {location} = ‘Location A’ THEN {created from.id} END This will count the SO related to the IF instead of the IF itself
b
THis worked for me thanks all
m
👍