I'm starting with the following formula:
=INDEX(Raw!P:P,ROUNDUP((ROWS(D$2:D24))/9,0)-1+2)
Is it possible to nest or add something to this so that it returns a blank instead of a zero?
Thanks for your help
The Noob-Jonathan
=IF(=INDEX(Raw!P:P,ROUNDUP((ROWS(D$2:D24))/9,0)-1+2)=0,"",INDEX(Raw!P:P,ROUNDUP((ROWS(D$2:D24))/9,0)-1+2)
Ya probably want to take that 2nd equal sign out of there.tc88 said:Not the prettiest way, but:
Code:=IF(=INDEX(Raw!P:P,ROUNDUP((ROWS(D$2:D24))/9,0)-1+2)=0,"",INDEX(Raw!P:P,ROUNDUP((ROWS(D$2:D24))/9,0)-1+2)
Worked like a charm, despite its utter lack of sex appeal. Thanks!!
A possibility...Thanks for the feedback. If someone has a more economical approach feel free to post it, I'm always interested in new ways to attack problems.