Hi,
I am trying to skip the first row for each grouping in my data. How can I do this?
Example data:
| Name | Data 1 | Data 2 |
| John | 1 | 2 |
| John | A | B |
| Mike | 3 | 2 |
| Mike | F | G |
I want the formula to return A B for John and FG for Mike. It won't always be letters and numbers so a regex wont work.
Thank you