I have defined a function that in a sports scoring program converts data in a single cell to a form needed for the results.
In effect RESULT = bsecs(G6) + bsecs(G7)
I now find I want to do the same addition over a range of 20 cells.
Because of the function bsecs() I can’t work with a range in the conventional way
SUM(G6:G26)
If I try SUM(bsecs(G6):bsecs(G26)) #VALUE! is shown
For it to work I have to use
RESULT = SUM(bsecs(G6),bsecs(G7),bsecs(G8) and so on for 20 cells)
Have I missed something simple here?
Do I really have to have 20 entries for a range of 20 contiguous cells?
Or is it my fault for defining functions?
Tony
Rutland, UK