SOLVED

Copy down formula issue

Copper Contributor

Hello this is the formula i would like to copy down 80 cells.

 

=IF(IFERROR('1'!$B$42,0),('1'!$B$42),0)

 

The only thing I want changing is the "1". For example, the next one would be 2 then 3 then 4 all the way to 80. 

 

I've tried grabbing the mini black box around and dragging down, but the formula doesn't go to the next number. 

3 Replies
best response confirmed by NJ1000 (Copper Contributor)
Solution

@NJ1000 

=IF(IFERROR(INDIRECT(ROW(A1)&"!$B$42"),0),(INDIRECT(ROW(A1)&"!$B$42")),0)

A big thank you sir, @Patrick2788 . Your solution to the problem is most appreciated.

@NJ1000 

You're welcome.

1 best response

Accepted Solutions
best response confirmed by NJ1000 (Copper Contributor)
Solution

@NJ1000 

=IF(IFERROR(INDIRECT(ROW(A1)&"!$B$42"),0),(INDIRECT(ROW(A1)&"!$B$42")),0)

View solution in original post