Hi, I am trying to do something simple but finding it very hard.
I have a table like this:
I want to add one SPILL/Dynamic formula in a third column to give me the product of all Ticket values for each name. I don't mind if it is duplicated or not.
The result can look like one of these:
I can only succeed with this task if I apply a formula in every row rather than dynamically.
Many thanks and HNY.
I have a table like this:
Name | Ticket |
Bill | 7 |
Bill | 5 |
Bill | 8 |
Tom | 6 |
Tom | 7 |
Tom | 4 |
James | 2 |
James | 3 |
I want to add one SPILL/Dynamic formula in a third column to give me the product of all Ticket values for each name. I don't mind if it is duplicated or not.
The result can look like one of these:
Name | Ticket | Product | Name | Ticket | Name | Product |
Bill | 7 | 280 | Bill | 7 | Bill | 280 |
Bill | 5 | 280 | Bill | 5 | Tom | 168 |
Bill | 8 | 280 | Bill | 8 | James | 6 |
Tom | 6 | 168 | Tom | 6 | ||
Tom | 7 | 168 | Tom | 7 | ||
Tom | 4 | 168 | Tom | 4 | ||
James | 2 | 6 | James | 2 | ||
James | 3 | 6 | James | 3 |
I can only succeed with this task if I apply a formula in every row rather than dynamically.
Many thanks and HNY.