Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to count the number of transactions where an item was sold from one category AND another category in the same transaction.
Store # Transaction # Category A Category B Category A & B
1000 1A 1 0 0
1000 2A 1 1 1
1000 3A 0 1 0
1000 4A 1 5 1
1000 6A 3 1 1
Total of Transactions with items sold in Cat A & B = 3
If i go line by line I can get the result. If i only want to see the total transactions where items in Cat A & B were sold on the same transaction I can't get to (3) in the example above.
Any thoughts were be appreciated.
Try this:
Count({<[Category A]={">0"},[Category B]={">0"}>}Transaction)