I have a table of number entries. Say, for each Product (rows) a number of purchases on each Date (columns).
| Date | Date | |
|---|---|---|
| Product | 150 | 200 |
| Product | 350 | 400 |
I'd like to turn this into one entry for each number on the 2D table. Example:
| Product | Date | 200 |
| Product | Date | 200 |
| Product | Date | 350 |
| Product | Date | 400 |
Is there a way to do this with formulas, without having to dive into a script to run each time I update the data?