Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am searching 12 columns to find the occurance of a particular letter. If
the letter is not in any of the columns, MATCH returns #N/A. How do I set up the formula to return zero instead of #N/A? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=if(isnumber(match(...)), match(...),0)
or =if(isna(match(...)),0,match(...)) if you're using xl2007, you may want to look at =iferror(). Bill wrote: I am searching 12 columns to find the occurance of a particular letter. If the letter is not in any of the columns, MATCH returns #N/A. How do I set up the formula to return zero instead of #N/A? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(ISNA(MATCH(lookup,Range,0)),0,MATCH(lookup,Ran ge,0))
-- Regards, Peo Sjoblom "Bill" wrote in message ... I am searching 12 columns to find the occurance of a particular letter. If the letter is not in any of the columns, MATCH returns #N/A. How do I set up the formula to return zero instead of #N/A? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One Way:
=IF(ISNA(MATCH(E1,A1:A10,"ValueToSearch")),0,MATCH (E1,A1:A10,"ValueToSearch")) HTH, Paul -- "Bill" wrote in message ... I am searching 12 columns to find the occurance of a particular letter. If the letter is not in any of the columns, MATCH returns #N/A. How do I set up the formula to return zero instead of #N/A? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(ISNA(MATCH(...)),0,MATCH(...))
-- David Biddulph "Bill" wrote in message ... I am searching 12 columns to find the occurance of a particular letter. If the letter is not in any of the columns, MATCH returns #N/A. How do I set up the formula to return zero instead of #N/A? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
MATCH Multiple Criteria & Return Previous / Penultimate Match | Excel Worksheet Functions | |||
index match array function-returning only first match, need last. | Excel Worksheet Functions | |||
Lookup? Match? pulling rows from one spreadsheet to match a text f | Excel Worksheet Functions | |||
index,match,match on un-sorted data | Excel Worksheet Functions | |||
When MATCH and v/hLOOKUP functions *FAIL* to match (but they should)... | Excel Worksheet Functions |