Forum Discussion
dreiness
Mar 05, 2020Copper Contributor
Help rewriting formula to increase by 10 cells
Hello,
I'd like help rewriting this formula so it will increase the reference cells by ten rather than one when I drag down.
=IFERROR(LOOKUP(2,1/(ISNUMBER('PATIENT TRACKING'!I4:I13)),'PATIENT TRACKING'!I4:I13),"NO SCORE")
I'd like to drag down and have the next cell read
=IFERROR(LOOKUP(2,1/(ISNUMBER('PATIENT TRACKING'!I14:I23)),'PATIENT TRACKING'!I14:I23),"NO SCORE")
and so on. I'm a relative excel novice so please use variations on this formula as much as possible rather than generics.
Thank you,
-D
5 Replies
- SergeiBaklanDiamond Contributor
As variant
=IFERROR( LOOKUP( 2, 1/ISNUMBER( INDEX('PATIENT TRACKING'!$I:$I,4+10*(ROW()-ROW($A$1))): INDEX('PATIENT TRACKING'!$I:$I,13+10*(ROW()-ROW($A$1))) ), INDEX('PATIENT TRACKING'!$I:$I,4+10*(ROW()-ROW($A$1))): INDEX('PATIENT TRACKING'!$I:$I,13+10*(ROW()-ROW($A$1))) ), "NO SCORE")if start from row #1
- dreinessCopper ContributorUnfortunately this did not work, but it seemed close. It referenced the wrong data.
- SergeiBaklanDiamond Contributor
As in the sample attached it works. Or I misunderstood your logic.
- dreinessCopper ContributorUnfortunately this did not work, but thank you.