Ok, I've searched around the forum and I can't find what I'm looking for. If anyone can help me with the Count query pulling up multiple readouts. Imagine I have a table describing the quantity of items, where each item has a unique number, a descriptive number and a boolean value explaining it's visibility, example:
TableQuantity
Unique(auto) | Item | Visible
1 | 0 | Yes
2 | 0 | Yes
3 | 1 | Yes
4 | 0 | No
Any ideas on how to effectively 'Count' the unique ID with relation to both the visible flag and the item number to return a result similar to
Item | Quantity(visible)
0 | 2
1 | 1
Ady 'Kamrock' Durn
TableQuantity
Unique(auto) | Item | Visible
1 | 0 | Yes
2 | 0 | Yes
3 | 1 | Yes
4 | 0 | No
Any ideas on how to effectively 'Count' the unique ID with relation to both the visible flag and the item number to return a result similar to
Item | Quantity(visible)
0 | 2
1 | 1
Ady 'Kamrock' Durn