I have a sheet with info in column A (dates), then info in column B (football teams), then info in column C (other football teams). I want to sort by column A (showing date oldest to newest), then show all the times Team X appears in column B, but then under that show all the times Team X appears in column C.
i.e. my raw data is:
A1 A2 A3
1/2 X Y
2/2 Z Y
3/2 Y X
4/2 Y Z
5/2 X Z
i want it to show:
A1 A2 A3
1/2 X Y
5/2 X Z
3/2 Y X
4/2 Y Z
2/2 Z Y
Solved by C. J. in 30 mins