Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel - IF(ISNA

Status
Not open for further replies.

dhamDIT

Technical User
Apr 4, 2006
20
CA
Hi, I have tried several different options of trying to fit the IF(ISNA into my formula without success. I think I am getting the brackets wrong. Here is my formula. Any help is appreciated.
Thanks D

=INDEX(Sheet1!$AE$1:$AE$31,MATCH($B3,Sheet1!AF$1:AF$32))
 
Test the MATCH like this:

=IF(ISNA(MATCH($B3,Sheet1!AF$1:AF$32,0),"",INDEX(Sheet1!$AE$1:$AE$31,MATCH($B3,Sheet1!AF$1:AF$32,0)))

BTW, I have added the 3rd argument of 0 in MATCH ... to look for exact match.

Cheers, Glenn.

Did you hear about the literalist show-jumper? He broke his nose jumping against the clock.
 
Missing right bracket

=IF(ISNA(MATCH($B3,Sheet1!AF$1:AF$32,0)),"",INDEX(Sheet1!$AE$1:$AE$31,MATCH($B3,Sheet1!AF$1:AF$32,0)))



Cheers, Glenn.

Did you hear about the literalist show-jumper? He broke his nose jumping against the clock.
 
General syntax

=IF(ISNA(Your_Formula),"",Your_Formula)

Regards
Ken............

----------------------------------------------------------------------------
[peace]It's easier to beg forgiveness than ask permission[2thumbsup]
----------------------------------------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top