I have a report that shows each line item on open orders as it's own row.
So let's say there are 3 orders with 3 items each. The report would have 9 rows and might look something like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Order #[/TD]
[TD]Order taker[/TD]
[TD]Item[/TD]
[TD]Qty[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]222[/TD]
[TD]Jane[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]222[/TD]
[TD]Jane[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]222[/TD]
[TD]Jane[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]333[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]333[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]333[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]
What I ultimately want to see is a table that shows me how many unique orders each order taker has. In this case, it might look something like:
Bob: 2
Jane: 1
I can do a pivot using Order Taker and Order Number as the rows, and see:
Bob
123
333
Jane
222
But I can't figure out how to see how many individual orders each person has. Is there a way to do this?
So let's say there are 3 orders with 3 items each. The report would have 9 rows and might look something like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Order #[/TD]
[TD]Order taker[/TD]
[TD]Item[/TD]
[TD]Qty[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]222[/TD]
[TD]Jane[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]222[/TD]
[TD]Jane[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]222[/TD]
[TD]Jane[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]333[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]333[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]333[/TD]
[TD]Bob[/TD]
[TD]stuff[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]
What I ultimately want to see is a table that shows me how many unique orders each order taker has. In this case, it might look something like:
Bob: 2
Jane: 1
I can do a pivot using Order Taker and Order Number as the rows, and see:
Bob
123
333
Jane
222
But I can't figure out how to see how many individual orders each person has. Is there a way to do this?