Hi all
With the data below :-
how can I sum the last 10 cells in the row from 2-11 (row 1=32) and (row 2=25)
Data is added to columns 12 to ? at a later time.
Derek
Try
=SUM(2:2)-IF(COUNT(2:2)>10,SUM(A2:INDEX(2:2,COUNT(2:2)-10)),0)
Regards
Bob
Thanks Bob that works a treat.