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.
|
|
0
|
|
|
|
Reply
|
Utf
|
12/9/2009 1:54:06 PM |
|
Just leave that string empty, then, like this:
=3DIF(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=A0pm, Gotroots <Gotro...@discussions.microsoft.com>
wrote:
> I want to avoid "No Match Found" to return if there is no value in "C"
>
> =3DIF(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.
|
|
0
|
|
|
|
Reply
|
Pete_UK
|
12/9/2009 2:00:39 PM
|
|
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.
|
|
0
|
|
|
|
Reply
|
Utf
|
12/9/2009 2:17:02 PM
|
|
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.
|
|
0
|
|
|
|
Reply
|
Utf
|
12/9/2009 2:56:01 PM
|
|
Try this:
=3DIF(C362=3D"","",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=A0pm, Gotroots <Gotro...@discussions.microsoft.com>
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 ""
>
> > =3DIF(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=
"
>
> > > =3DIF(ISNA(MATCH(C362,'Uses and Features A'!$B:$B,0)),IF(ISNA(MATCH(C=
362,'RHS
> > > additions'!B:B,0)),"No Match Found",C362),C362)
>
> > > Thank you if you can help with this.- Hide quoted text -
>
> - Show quoted text -
|
|
0
|
|
|
|
Reply
|
Pete_UK
|
12/9/2009 3:28:49 PM
|
|
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.
|
|
0
|
|
|
|
Reply
|
Utf
|
12/9/2009 4:28:01 PM
|
|
>I suspect that you can't see my reply.
Yep, it's broke..........again! Since early yesterday afternoon.
--
Biff
Microsoft Excel MVP
"Pete_UK" <pashurst@auditel.net> wrote in message
news:ea9db0c9-a5d5-4f89-b8b8-9c366b16e5b4@j19g2000yqk.googlegroups.com...
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 <Gotro...@discussions.microsoft.com>
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 -
|
|
0
|
|
|
|
Reply
|
T
|
12/9/2009 4:53:56 PM
|
|
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.
|
|
0
|
|
|
|
Reply
|
Utf
|
12/9/2009 8:51:40 PM
|
|
|
7 Replies
314 Views
(page loaded in 0.32 seconds)
Similiar Articles: Re: Copy is criteria met - microsoft.public.excel.worksheet ...... MatchCase:=True) r = 2 If Not c Is Nothing Then ... to Create >> Cover Sheet in Sheet 2 with return ... and one doesn't at the moment as the criteria are not met. Tab Pages Visible only when certain criteria met - microsoft ...... means that you'd > want radio button 2 to return 1, not ... "Douglas J. Steele" wrote: > There's nothing in ... that you reported and it does not meet the criteria ... Criteria to return all records if selection from form is null ...> > What I'm trying to do is to return all records when there is nothing > chosen in ... Using parameter in query to specify null/not null records ... Criteria to return all ... IIf statement, wildcard to return all records - microsoft.public ...... value],"*") It works fine when the user chooses an option, but returns nothing ... Criteria to return all records if selection from form is null ... IIf statement ... Returning a value if multiple conditions are met - microsoft ...... If All 3 Conditions Met I have 3 cells, A1 = " a name ... Multiple If Statement: Value Returned In Cell C3 If Two Conditions Are Met; Return Value When Criteria Met From ... Dsum in report header problem - microsoft.public.access.reports ...... format), if the first record in the table matches the criteria, it returns the sum of all records. If the first record doesn't match the criteria, it returns nothing. If statement not displaying text if conditions not met - microsoft ...... Margin £],"no margin"))) > > > > However, if there is nothing in either field, then it returns ... If statement not displaying text if conditions not met ... return values from an array based on more than one criteria ...Sum values based on ... values that meet more than one condition. For ... I want to return all coloumns in the array which ... I Need to return a value based on criteria in ... AVERAGEIFS: Reference a cell in a criteria range - microsoft ...I want to average a range if 2 criteria are met; the ... Excel - Office.com Show All Hide All Returns the average (arithmetic mean) of all cells that meet multiple criteria. How to define blank cell? - microsoft.public.excel.misc ...If condition does not meet, then nothing in cell, which I use "" to define blank cell ... have a formula in cell, it never is empty - whatever the formula returns ... find.execute returns True even though search criteria is not met ...find.execute returns True even though search criteria is not met ... As far as I'm aware, nothing in Word or VBA has changed in this ... Excel :: Conditional Formatting To Return The Following Results If ...Conditional Formatting To Return The Following Results If The Criteria Is Met I have a conditional format that does not seem to ... this is blank I would like to do nothing ... Examples of query criteria - Access - Office.comWhat if you want only one of these conditions to be met? In other words, if you have alternate criteria ... Is Not Null And Not "" Returns records where the CountryRegion ... COUNTIF - Excel - Office.com - Microsoft Corporation: Software ...Counts the number of cells within a range that meet the given criteria. Syntax ... To switch between viewing the results and viewing the formulas that return ... SUMIF criteria not met - Excel Help ForumIt should return a value of 0 if the criteria is not met. Can you be more specific (what formula? dataset?) 7/23/2012 2:41:39 AM
|