I have the following formula in a cell on one work sheet:
When I delete a row of data on the sheet that this formula looks at, the formula errors out because it loses it's reference to $N$2 even though I am utilizing the "$" to make it an absolute reference.
Any idea on a work around or how to solve this issue?
Code:
{=IF(ROWS($B$4:$B$4)>COUNTIF('Lab Submissions Ad 1'!$N:$N,"upper"),"",INDEX('Lab Submissions Ad 1'!$A:$A,SMALL(IF('Lab Submissions Ad 1'!$N:$N="upper",ROW('Lab Submissions Ad 1'!$N:$N)-ROW('Lab Submissions Ad 1'!$N$2)+2),ROWS($B$4:$B$4))))}
When I delete a row of data on the sheet that this formula looks at, the formula errors out because it loses it's reference to $N$2 even though I am utilizing the "$" to make it an absolute reference.
Any idea on a work around or how to solve this issue?