Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 114
Default Return nothing if criteria is not met

I want to avoid "No Match Found" to return if there is no value in "C"

=IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS
additions'!B:B,0)),"No Match Found",C362),C362)

Thank you if you can help with this.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Return nothing if criteria is not met

Just leave that string empty, then, like this:

=IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH
(C362,'RHS additions'!B:B,0)),"",C362),C362)

Hope this helps.

Pete

On Dec 9, 1:54*pm, Gotroots
wrote:
I want to avoid "No Match Found" to return if there is no value in "C"

=IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS
additions'!B:B,0)),"No Match Found",C362),C362)

Thank you if you can help with this.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,276
Default Return nothing if criteria is not met


Hi,
just replace "No Match Found" with ""


=IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHSadditions'!B:B ,0)),"",C362),C362)


"Gotroots" wrote:

I want to avoid "No Match Found" to return if there is no value in "C"

=IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS
additions'!B:B,0)),"No Match Found",C362),C362)

Thank you if you can help with this.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 114
Default Return nothing if criteria is not met

There are records in "C" where "No Match Found" will be applicable.

It is only when there is no value in "C" that "No Match Found" should not be
displayed.



"Eduardo" wrote:


Hi,
just replace "No Match Found" with ""


=IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHSadditions'!B:B ,0)),"",C362),C362)


"Gotroots" wrote:

I want to avoid "No Match Found" to return if there is no value in "C"

=IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS
additions'!B:B,0)),"No Match Found",C362),C362)

Thank you if you can help with this.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Return nothing if criteria is not met

Try this:

=IF(C362="","",IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF
(ISNA(MATCH(C362,'RHS additions'!B:B,0)),"No Match Found",C362),C362))

although I suspect that you can't see my reply.

Hope this helps.

Pete

On Dec 9, 2:56*pm, Gotroots
wrote:
There are records in "C" where "No Match Found" will be applicable.

It is only when there is no value in "C" that "No Match Found" should not be
displayed.



"Eduardo" wrote:

Hi,
just replace "No Match Found" with ""


=IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHSadditions'!B:B ,0)),"",C362),C362)


"Gotroots" wrote:


I want to avoid "No Match Found" to return if there is no value in "C"


=IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS
additions'!B:B,0)),"No Match Found",C362),C362)


Thank you if you can help with this.- Hide quoted text -


- Show quoted text -




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 34
Default Return nothing if criteria is not met

This answer seems a bit simple, but couldn't you just do:

=IF(C362="","",IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS additions'!B:B,0)),"No Match
Found",C362),C362)

"Gotroots" wrote:

There are records in "C" where "No Match Found" will be applicable.

It is only when there is no value in "C" that "No Match Found" should not be
displayed.



"Eduardo" wrote:


Hi,
just replace "No Match Found" with ""


=IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHSadditions'!B:B ,0)),"",C362),C362)


"Gotroots" wrote:

I want to avoid "No Match Found" to return if there is no value in "C"

=IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS
additions'!B:B,0)),"No Match Found",C362),C362)

Thank you if you can help with this.

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Return nothing if criteria is not met

I suspect that you can't see my reply.

Yep, it's broke..........again! Since early yesterday afternoon.

--
Biff
Microsoft Excel MVP


"Pete_UK" wrote in message
...
Try this:

=IF(C362="","",IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF
(ISNA(MATCH(C362,'RHS additions'!B:B,0)),"No Match Found",C362),C362))

although I suspect that you can't see my reply.

Hope this helps.

Pete

On Dec 9, 2:56 pm, Gotroots
wrote:
There are records in "C" where "No Match Found" will be applicable.

It is only when there is no value in "C" that "No Match Found" should not
be
displayed.



"Eduardo" wrote:

Hi,
just replace "No Match Found" with ""


=IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHSadditions'!B:B ,0)),"",C362),C362)


"Gotroots" wrote:


I want to avoid "No Match Found" to return if there is no value in "C"


=IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS
additions'!B:B,0)),"No Match Found",C362),C362)


Thank you if you can help with this.- Hide quoted text -


- Show quoted text -



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 114
Default Return nothing if criteria is not met

Simple when you know how Brad :)

Your solution worked!

Thank you

"Brad Autry" wrote:

This answer seems a bit simple, but couldn't you just do:

=IF(C362="","",IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS additions'!B:B,0)),"No Match
Found",C362),C362)

"Gotroots" wrote:

There are records in "C" where "No Match Found" will be applicable.

It is only when there is no value in "C" that "No Match Found" should not be
displayed.



"Eduardo" wrote:


Hi,
just replace "No Match Found" with ""


=IF(ISNA(MATCH(C362,'Uses and Features
A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHSadditions'!B:B ,0)),"",C362),C362)


"Gotroots" wrote:

I want to avoid "No Match Found" to return if there is no value in "C"

=IF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH(C362,'RHS
additions'!B:B,0)),"No Match Found",C362),C362)

Thank you if you can help with this.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Return value based on criteria andiam24 Excel Discussion (Misc queries) 0 April 21st 09 01:48 PM
Return Totals from Certain Criteria JT Excel Worksheet Functions 4 February 21st 06 11:15 PM
return value based on two criteria blopreste3180 Excel Worksheet Functions 3 January 16th 06 02:15 PM
How to return min, mean, max using criteria? stevenva Excel Worksheet Functions 1 November 6th 04 12:47 AM
How to return min, mean, max using criteria? stevenva Excel Worksheet Functions 1 November 5th 04 01:34 AM


All times are GMT +1. The time now is 11:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"