Create a separate Tickers table, and list all of your unique tickers in a single column, one per row.
Add a Query column, similar to the ones you have now, except use “This row->Ticker” as one of the filter conditions
Add a Rollup column, and you are done.
And because your rollups are all in a single column - instead of multiple columns - it’s easy to display them in any type of collection component.
Now you can keep adding tickers until the cows come home and you’ll be all good. Each time you get a new Ticker, you just need to add a single row to your Tickers table (you could automate that as well, but probably not worth the effort in this case)
Why are they all giving the same result?
That looks off to me - is that what you expected?
If not, show me how you configured each of those two columns.
That shouldn’t be necessary. You should already have the rollup for each ticker in your Tickers table. But as I said, it doesn’t look right.
A screen shot would have been better. That gif is too small to make anything of.
Anyway, your Query should be targeting the data table, and should have the following filters applied:
Ticker is This row → Ticker
P&L is not empty.
Essentially the same as you were trying to do in your helper table, except that instead of manually entering the ticker name in the query, you take it dynamically from each row.
And then you do your rollup through that query. You should get a different result on each row, that corresponds to the ticker value.