I have these sheets on Google Sheets
Sheet "Alpha"
A B C D
1 Date 03/11 03/12 03/13
2 Status DONE DONE In Risk
Sheet "Beta"
A B C D
1 Date 03/11 03/12 03/13
2 Status DONE DONE DONE
Sheet "Gamma"
A B C D
1 Date 03/11 03/12 03/13
2 Status DONE In Risk BLOCKED
I want to make a summary sheet with result on daily based as below:
Let's suppose today is 03/13
Sheet "Summary"
A B
1 Name Status
2 Alpha In Risk
3 Beta DONE
4 Gamma BLOCKED
I want to populate the column A using script or function. So, the step on my mind would be:
- Populate column A with script/function
- On column B using formula for:
- Finding the Today date on other sheet
- Get value of the row on the column from today date from other sheer
Is it possible to do? How to do it?