I have a data set that contains player scores for various games that are played. I've created a sample data set below. I have a line chart that I'd like to show pieces of this data, but am having a problem with filtering based on the "Game Type" to only show stats from a specific game.
| GameType | Player | 10-Point | 20-Point | 30-Point | Date |
| PP180 | Bob@something.com | 10 | 8 | 5 | 2022/08/15 |
| PP180 | Mark@something.com | 9 | 8 | 8 | 2022/08/14 |
| PP180 | Bob@something.com | 10 | 7 | 6 | 2022/08/13 |
| ActivPlay | Bob@something.com | 0 | 0 | 0 | 2022/08/12 |
Based on the data above, I'm able to show the 10-point values over time by setting the chat's "item" to: 'Player Scoress'.'10-Point'
What I need to be able to do is only show the 10-point values for 'GameType = PP180' and 'Player = User().Email'
What would I use as my "items" value for the line chart?