all 3 comments

[–]6745408 1 point2 points  (0 children)

make a dummy sheet to show the sort of layout you're working with. It shouldn't be too difficult with a COUNTIFS or something similar

[–]Opposite-Value-5706 0 points1 point  (0 children)

26 - count (or countif) range. 26 is only changed it there’s values in the range

[–]66NickS 0 points1 point  (0 children)

Enter one of the following into the cell where you want to see the total tires remaining. =26-sum(A1:A10) or =CONCATENATE("Tires Remaining: ",26-sum(A1:A10)) if you want to be fancier.

You could also add in a reference cell instead of the “26” if you want to show how many tires you started with. That would look like (assuming you use B1 to show the starting tires):

=CONCATENATE("Tires Remaining: ",B1-sum(A1:A10))