https://docs.google.com/spreadsheets/d/1GLwRcQ47M-NvIuxZY-VUPyE1qXtprqcmtFaKVXUIzvs/edit?usp=sharing
I have a problem in above google sheets. Basically I want to transpose data horizontal to vertical database. Example like below
Before
Name Type 2018 2019 2020 2021
Apple Fix 2000 3000 4000 5000
After
Name Type Year Value
Apple Fix 2018 2000
Apple Fix 2019 3000
Apple Fix 2020 4000
Apple Fix 2021 5000
Right now I do it manually copy and paste. But the data will grow every day. Right now I had almost 1000 rows so doing it manually will not fruitful. I am guessing that I need to make google apps script to solve this problem. May be someone can give suggestion how to solve this problem.
Thanks before