I have old Excel table that I need to manually fill and I made new Excel table where I used CTRL+T to fill in data automatically when typing formula in first row under the header/title cell.
My data is vertical in old:
Numbers Average (for last 10 Numbers from Left Row)
5,780.00
5,730.00
6,600.00
7,300.00
6,120.00
5,250.00
5,210.00
5,100.00
5,770.00
6,370.00 5923.00
6,000.00 5945.00
5,480.00 5920.00
5,120.00 5772.00
4,990.00 5541.00
This is how it should look, this is how I made it manually. Formula is:
=IF(L11<>"",AVERAGE(L2:L11),"")
Where forumula is in M row (Average) and checking and calculating for L row (Numbers). But for Table to auto-fill till last row, formula has to be made in first row, then Excel auto-fills.
Average:
5923.00
is from this numbers:
Numbers
5,780.00
5,730.00
6,600.00
7,300.00
6,120.00
5,250.00
5,210.00
5,100.00
5,770.00
6,370.00
How can Average formula for 10 vertical numbers from L row be inserted into any cell above 5923.00 in Average - M Row.
I do know how to fill row, I could copy formula, press CTRL + SHIFT + DOWN to find end of my table and paste formula, but when new data comes (imported CSV that updates), new data would not be filled, I need Excel to auto-fill it.