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

how to use iserror function

delta

Member
my formula is below i need to use iserror function because result will be 0 (zero) will not be show.
where put the iserror formula

=INDEX(Baze!$A$1:$D$1000, MATCH(B3,PSC_2016.xlsm!Sales_Party_Name,), MATCH(Formula!A2,Baze!$A$1:$D$1,))
 
Hi:

IF(ISERROR(INDEX(Baze!$A$1:$D$1000, MATCH(B3,PSC_2016.xlsm!Sales_Party_Name,), MATCH(Formula!A2,Baze!$A$1:$D$1,))),0,INDEX(Baze!$A$1:$D$1000, MATCH(B3,PSC_2016.xlsm!Sales_Party_Name,), MATCH(Formula!A2,Baze!$A$1:$D$1,)))


You can also use if you have latest version of excel.

IFERROR(INDEX(Baze!$A$1:$D$1000, MATCH(B3,PSC_2016.xlsm!Sales_Party_Name,), MATCH(Formula!A2,Baze!$A$1:$D$1,)),0)


Thanks
 
Hi:

Your index formula may be wrong, "Iserror" is nothing but an error wrapping formula.

Thanks
 
i upload file now i put vlookup formula and also show 0 (zero).
sheet 1 create vlookup formula
sheet 2 contain data
 

Attachments

  • IsBlank.xlsx
    10 KB · Views: 3
i upload file now i put vlookup formula and also show 0 (zero).
sheet 1 create vlookup formula
sheet 2 contain data

Try,

B2 :

=IFERROR(1/(1/VLOOKUP($A2,Sheet2!$A$2:$C$50,2,0)),"")

C2 :

=IFERROR(1/(1/VLOOKUP($A2,Sheet2!$A$2:$C$50,3,0)),"")

Regards
 

Attachments

  • IsBlank(1).xlsx
    11.5 KB · Views: 4
Back
Top