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...
SergeiBaklan
Mar 05, 2020Diamond 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
- dreinessMar 06, 2020Copper ContributorUnfortunately this did not work, but it seemed close. It referenced the wrong data.
- SergeiBaklanMar 08, 2020Diamond Contributor
As in the sample attached it works. Or I misunderstood your logic.