• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

formula help

uul

Member
Hi all,

Got this formula

=IF(INDEX([source]Feeder!$E$2:$E$5003,ROWS($A$1:A49))=0,"",INDEX([source]Feeder!$E$2:$E$5003,ROWS($A$1:A49)))

Basically it is looking at a table of data that is returning N/A - how do i adapt this formula to ignore N/A and return a blank cell, until a value is returned.

Thanks
 
use below function :

=iferror(IF(INDEX([source]Feeder!$E$2:$E$5003,ROWS($A$1:A49))=0,"",INDEX([source]Feeder!$E$2:$E$5003,ROWS($A$1:A49))),"")

hope it will fulfill your requirement
 
  • Like
Reactions: uul
Back
Top