• 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.

Is it possible to make " #REF!" show up as blank?

BigD

Member
I have a dashboard linked to multiple tabs. In my instructions, I have the user delete any uncessary tabs to clean the dashboard up. However, when they do this, I have a bunch of "#REF!" in the cells.

I tried using a if statement: IF(Cell="#REF!","",'Tab1!'C4) but was unsucuessful.

Are they other other statements that may work?
 
It will mask all errors, so can be bad if overused, but could do:
=IFERROR('Tab1!'C4,"")
 
Hi Big D,

If you want something a bit more sophisticated (ie it will only trap / ignore #Ref! errors and will flag other errors) then you could try:

Code:
=IFERROR(IF(ERROR.TYPE(A1)=4,"",A1),"Error type: "&ERROR.TYPE(A1))

Regards,

Peter
 
Back
Top