In excel, I am looking to calculate the sum of reciprocals for each number in the column, starting from that number.
Below works fine:
Ex: Below formula for each of the cell in second column
=SUM(1/A1:A6)
=SUM(1/A2:A6)
.
.
But if I have a column with no value then it wont as the it treats nulls as zero and gets a divide by zero error.
If I use =SUMIF(1/J2:J6, ">0") then it's not working.
Any help to achieve this please?

