How would you go about automatically populating a table’s blank cells with the values above them? For example:
Name
Value
A
15
7
4
B
3
6
C
12
6
B
2
4
would turn into:
Name
Value
A
15
A
7
A
4
B
3
B
6
C
12
C
6
B
2
B
4
I have tried with both buttons and formulas and I’m unable to find a stable solution.
The use-case will be eventually creating a new table that filters rows with values less than 10. In this case, I would like the names in the relevant name columns to be visible when the filtering occurs.