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...
PReagan
Mar 05, 2020Bronze Contributor
Hello dreiness,
Starting in the first cell, that could be like:
=IFERROR(LOOKUP(2,1/(ISNUMBER(INDIRECT("'PATIENT TRACKING'!I4:I"&10*ROW(A1)+3))),INDIRECT("'PATIENT TRACKING'!I4:I"&10*ROW(A1)+3)),"NO SCORE")
dreiness
Mar 06, 2020Copper Contributor
Unfortunately this did not work, but thank you.