So I have a table called Table1, with two columns, Product, and indicator.
Table1
Product Indicator
Product 1 Y
Product 1 Y
Product 1 Y
Product 1 N
Product 1 N
Product 2 Y
Product 2 Y
Product 2 Y
Product 2 Y
Product 2 Y
and I want to be able to run a query to show results like this
Indicator = Y Indicator = N
Product 1 Y Y
Product 2 Y N
Thanks in advance! :)