I am using a simple lookup function to find the last value in a column. This works fine if values are numbers [1,2,3] but does not work if values are from a sum [A2+B2].
Ex Column A is numbers: this works.
=Lookup(9e+107,a1:a5)
If Column B is numbers and Column C is the sum of A+B[/B] then:
=Lookup(9e+107,c1:c5) It does not return the last value, it returns “0”
How can I get it to return the last value or “Sum”?