Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
SharonP.
 
Posts: n/a
Default Match result is sometimes #N/A

Hi, I'm using the following formula. The problem is that sometimes
my value isn't found and I'm not getting a blank but rather #N/A.

=IF(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have been
converted to PPO LOBs", "")

1. Is there a fix to my formula? or
2. In the cell that results #N/A - I could set a conditional format to make
a white background and white font. However, when I try that - it's not
working either.

Cell format = #N/A doesn't do what I want.

  #2   Report Post  
Anne Troy
 
Posts: n/a
Default

Try this, Sharon:

=IF(ISNA(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have
been converted to PPO LOBs", ""),"",MATCH("POS*",B$83:B$782,0),"Please be
advised the POS LOBs have been converted to PPO LOBs", ""))
************
Anne Troy
www.OfficeArticles.com


"SharonP." wrote in message
...
Hi, I'm using the following formula. The problem is that sometimes
my value isn't found and I'm not getting a blank but rather #N/A.

=IF(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have been
converted to PPO LOBs", "")

1. Is there a fix to my formula? or
2. In the cell that results #N/A - I could set a conditional format to
make
a white background and white font. However, when I try that - it's not
working either.

Cell format = #N/A doesn't do what I want.



  #3   Report Post  
Ken Wright
 
Posts: n/a
Default

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

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

------------------------------*------------------------------*----------------
It's easier to beg forgiveness than ask permission :-)
------------------------------*------------------------------*----------------


"SharonP." wrote in message
...
Hi, I'm using the following formula. The problem is that sometimes
my value isn't found and I'm not getting a blank but rather #N/A.

=IF(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have been
converted to PPO LOBs", "")

1. Is there a fix to my formula? or
2. In the cell that results #N/A - I could set a conditional format to
make
a white background and white font. However, when I try that - it's not
working either.

Cell format = #N/A doesn't do what I want.



  #4   Report Post  
Anne Troy
 
Posts: n/a
Default

Sorry...
=If(ISNA(MATCH("POS*",B$83:B$782,0)),"",MATCH("POS *",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

************
Anne Troy
www.OfficeArticles.com

"SharonP." wrote in message
...
Hi, I'm using the following formula. The problem is that sometimes
my value isn't found and I'm not getting a blank but rather #N/A.

=IF(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have been
converted to PPO LOBs", "")

1. Is there a fix to my formula? or
2. In the cell that results #N/A - I could set a conditional format to
make
a white background and white font. However, when I try that - it's not
working either.

Cell format = #N/A doesn't do what I want.



  #5   Report Post  
SharonP.
 
Posts: n/a
Default

Thanks for getting me started - getting an error with this formula - probably
something silly - late in the day.

=IF(ISNA(MATCH ("POS*",B$83:B$782,0)),"", MATCH "POS*",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

"Anne Troy" wrote:

Sorry...
=If(ISNA(MATCH("POS*",B$83:B$782,0)),"",MATCH("POS *",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

************
Anne Troy
www.OfficeArticles.com

"SharonP." wrote in message
...
Hi, I'm using the following formula. The problem is that sometimes
my value isn't found and I'm not getting a blank but rather #N/A.

=IF(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have been
converted to PPO LOBs", "")

1. Is there a fix to my formula? or
2. In the cell that results #N/A - I could set a conditional format to
make
a white background and white font. However, when I try that - it's not
working either.

Cell format = #N/A doesn't do what I want.






  #6   Report Post  
Anne Troy
 
Posts: n/a
Default

=IF(ISNA(MATCH ("POS*",B$83:B$782,0)),"",MATCH ("POS*",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs")

Try that, I think.
************
Anne Troy
www.OfficeArticles.com

"SharonP." wrote in message
...
Thanks for getting me started - getting an error with this formula -
probably
something silly - late in the day.

=IF(ISNA(MATCH ("POS*",B$83:B$782,0)),"", MATCH
"POS*",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

"Anne Troy" wrote:

Sorry...
=If(ISNA(MATCH("POS*",B$83:B$782,0)),"",MATCH("POS *",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

************
Anne Troy
www.OfficeArticles.com

"SharonP." wrote in message
...
Hi, I'm using the following formula. The problem is that sometimes
my value isn't found and I'm not getting a blank but rather #N/A.

=IF(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have
been
converted to PPO LOBs", "")

1. Is there a fix to my formula? or
2. In the cell that results #N/A - I could set a conditional format to
make
a white background and white font. However, when I try that - it's not
working either.

Cell format = #N/A doesn't do what I want.






  #7   Report Post  
SharonP.
 
Posts: n/a
Default

My snytax is still incorrect - I'm getting the error -
"You've entered too many arguments for this function".
The following is a cut and paste of my formula -

=IF(ISNA(MATCH("POS",B$83:B$782,0))," ",MATCH("POS",B$83:B$782,0), "Please
be advised the POS LOBs have been converted to PPO LOBs")

This formula looks right to me. Excel frustrates me so bad some days!

"Anne Troy" wrote:

=IF(ISNA(MATCH ("POS*",B$83:B$782,0)),"",MATCH ("POS*",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs")

Try that, I think.
************
Anne Troy
www.OfficeArticles.com

"SharonP." wrote in message
...
Thanks for getting me started - getting an error with this formula -
probably
something silly - late in the day.

=IF(ISNA(MATCH ("POS*",B$83:B$782,0)),"", MATCH
"POS*",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

"Anne Troy" wrote:

Sorry...
=If(ISNA(MATCH("POS*",B$83:B$782,0)),"",MATCH("POS *",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

************
Anne Troy
www.OfficeArticles.com

"SharonP." wrote in message
...
Hi, I'm using the following formula. The problem is that sometimes
my value isn't found and I'm not getting a blank but rather #N/A.

=IF(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have
been
converted to PPO LOBs", "")

1. Is there a fix to my formula? or
2. In the cell that results #N/A - I could set a conditional format to
make
a white background and white font. However, when I try that - it's not
working either.

Cell format = #N/A doesn't do what I want.







  #8   Report Post  
Debra Dalgleish
 
Posts: n/a
Default

You don't need the second MATCH formula:

=IF(ISNA(MATCH("POS*",B$83:B$782,0))," ","Please be advised the POS LOBs
have been converted to PPO LOBs")

SharonP. wrote:
My snytax is still incorrect - I'm getting the error -
"You've entered too many arguments for this function".
The following is a cut and paste of my formula -

=IF(ISNA(MATCH("POS",B$83:B$782,0))," ",MATCH("POS",B$83:B$782,0), "Please
be advised the POS LOBs have been converted to PPO LOBs")

This formula looks right to me. Excel frustrates me so bad some days!

"Anne Troy" wrote:


=IF(ISNA(MATCH ("POS*",B$83:B$782,0)),"",MATCH ("POS*",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs")

Try that, I think.
************
Anne Troy
www.OfficeArticles.com

"SharonP." wrote in message
...

Thanks for getting me started - getting an error with this formula -
probably
something silly - late in the day.

=IF(ISNA(MATCH ("POS*",B$83:B$782,0)),"", MATCH
"POS*",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

"Anne Troy" wrote:


Sorry...
=If(ISNA(MATCH("POS*",B$83:B$782,0)),"",MATCH( "POS*",B$83:B$782,0),"Please
be advised the POS LOBs have been converted to PPO LOBs", "")

************
Anne Troy
www.OfficeArticles.com

"SharonP." wrote in message
...

Hi, I'm using the following formula. The problem is that sometimes
my value isn't found and I'm not getting a blank but rather #N/A.

=IF(MATCH("POS*",B$83:B$782,0),"Please be advised the POS LOBs have
been
converted to PPO LOBs", "")

1. Is there a fix to my formula? or
2. In the cell that results #N/A - I could set a conditional format to
make
a white background and white font. However, when I try that - it's not
working either.

Cell format = #N/A doesn't do what I want.








--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

  #9   Report Post  
Domenic
 
Posts: n/a
Default

Try...

=IF(ISNUMBER(MATCH("POS",B$83:B$782,0)),MATCH("POS ",B$83:B$782,0),
"Please be advised the POS LOBs have been converted to PPO LOBs")

Hope this helps!

In article ,
"SharonP." wrote:

My snytax is still incorrect - I'm getting the error -
"You've entered too many arguments for this function".
The following is a cut and paste of my formula -

=IF(ISNA(MATCH("POS",B$83:B$782,0))," ",MATCH("POS",B$83:B$782,0), "Please
be advised the POS LOBs have been converted to PPO LOBs")

This formula looks right to me. Excel frustrates me so bad some days!

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
I NEED HELP with the SPELLNUMBER Function vag Excel Worksheet Functions 0 June 21st 05 08:17 AM
EXCEL:NUMBER TO GREEK WORDS vag Excel Worksheet Functions 1 June 15th 05 05:57 PM
Conversion SVC Excel Worksheet Functions 9 February 28th 05 02:29 PM
Is there a formula to spell out a number in excel? Sha-nay-nay Excel Worksheet Functions 2 December 18th 04 09:25 PM
Spellnumber Norman Jones Excel Worksheet Functions 6 December 13th 04 07:21 AM


All times are GMT +1. The time now is 05:39 PM.

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

About Us

"It's about Microsoft Excel"