#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 23
Default Avoiding #N/A

Hi, I use a spreadsheet for invoicing and have a product code entered into a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather than pick a
product.

Can my formula be modified to avoid the #N/A appearing in the product code ?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 834
Default Avoiding #N/A

Try

=IF(C25<"",IF(ISNA(VLOOKUP(C25,Product_Data,2,FAL SE)),"",VLOOKUP(C25,Product_Data,2,FALSE)),"
")

HTH

Bob


"gibbylinks" wrote in message
...
Hi, I use a spreadsheet for invoicing and have a product code entered into
a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather than pick
a
product.

Can my formula be modified to avoid the #N/A appearing in the product code
?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 18
Default Avoiding #N/A

Hi,
If your want to just remove the #N/A, then try to use Iserror function like
this,

=IF(ISERROR(IF(C25<"",VLOOKUP(C25,product_data,2, FALSE),"
")),"-",IF(C25<"",VLOOKUP(C25,product_data,2,FALSE) ," "))

It will return - in that respective sell.

Regards,

"gibbylinks" wrote:

Hi, I use a spreadsheet for invoicing and have a product code entered into a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather than pick a
product.

Can my formula be modified to avoid the #N/A appearing in the product code ?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 561
Default Avoiding #N/A

Wouldn't that be shorter ?
=IF(ISNA(VLOOKUP(C25,product_data,2,)),"-",VLOOKUP(C25,product_data,2,))
Micky


"Vital_ar" wrote:

Hi,
If your want to just remove the #N/A, then try to use Iserror function like
this,

=IF(ISERROR(IF(C25<"",VLOOKUP(C25,product_data,2, FALSE),"
")),"-",IF(C25<"",VLOOKUP(C25,product_data,2,FALSE) ," "))

It will return - in that respective sell.

Regards,

"gibbylinks" wrote:

Hi, I use a spreadsheet for invoicing and have a product code entered into a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather than pick a
product.

Can my formula be modified to avoid the #N/A appearing in the product code ?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 834
Default Avoiding #N/A

And better as ISERROR will ignore ANY error, nit just NA

Bob


"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
Wouldn't that be shorter ?
=IF(ISNA(VLOOKUP(C25,product_data,2,)),"-",VLOOKUP(C25,product_data,2,))
Micky


"Vital_ar" wrote:

Hi,
If your want to just remove the #N/A, then try to use Iserror function
like
this,

=IF(ISERROR(IF(C25<"",VLOOKUP(C25,product_data,2, FALSE),"
")),"-",IF(C25<"",VLOOKUP(C25,product_data,2,FALSE) ," "))

It will return - in that respective sell.

Regards,

"gibbylinks" wrote:

Hi, I use a spreadsheet for invoicing and have a product code entered
into a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather than
pick a
product.

Can my formula be modified to avoid the #N/A appearing in the product
code ?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 561
Default Avoiding #N/A

No doubt - but I, usually, try to focus on the questions - as is...
Micky


"Bob Phillips" wrote:

And better as ISERROR will ignore ANY error, nit just NA

Bob


"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
Wouldn't that be shorter ?
=IF(ISNA(VLOOKUP(C25,product_data,2,)),"-",VLOOKUP(C25,product_data,2,))
Micky


"Vital_ar" wrote:

Hi,
If your want to just remove the #N/A, then try to use Iserror function
like
this,

=IF(ISERROR(IF(C25<"",VLOOKUP(C25,product_data,2, FALSE),"
")),"-",IF(C25<"",VLOOKUP(C25,product_data,2,FALSE) ," "))

It will return - in that respective sell.

Regards,

"gibbylinks" wrote:

Hi, I use a spreadsheet for invoicing and have a product code entered
into a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather than
pick a
product.

Can my formula be modified to avoid the #N/A appearing in the product
code ?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks



.

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 834
Default Avoiding #N/A

Then in that case I question why you joined in at all.

"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
No doubt - but I, usually, try to focus on the questions - as is...
Micky


"Bob Phillips" wrote:

And better as ISERROR will ignore ANY error, nit just NA

Bob


"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
Wouldn't that be shorter ?
=IF(ISNA(VLOOKUP(C25,product_data,2,)),"-",VLOOKUP(C25,product_data,2,))
Micky


"Vital_ar" wrote:

Hi,
If your want to just remove the #N/A, then try to use Iserror function
like
this,

=IF(ISERROR(IF(C25<"",VLOOKUP(C25,product_data,2, FALSE),"
")),"-",IF(C25<"",VLOOKUP(C25,product_data,2,FALSE) ," "))

It will return - in that respective sell.

Regards,

"gibbylinks" wrote:

Hi, I use a spreadsheet for invoicing and have a product code
entered
into a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather than
pick a
product.

Can my formula be modified to avoid the #N/A appearing in the
product
code ?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks



.



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 561
Default Avoiding #N/A

If you'll look at the subject line of the question and/or read' again, its
content [quote]:
"Can my formula be modified to avoid the #N/A appearing in the product code ?"
This is what my reply referred to.
Does the above answer your question.
I'm sure that if you would see a suggestion to add 5 cells - like:
=A1+B1+C1+D1+E1 you would also comment that this can be shorten to:
=SUM(A1:E1)
Please take into consideration that my English is not good enough to argue
so, please, do not push me into such.
Micky


"Bob Phillips" wrote:

Then in that case I question why you joined in at all.

"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
No doubt - but I, usually, try to focus on the questions - as is...
Micky


"Bob Phillips" wrote:

And better as ISERROR will ignore ANY error, nit just NA

Bob


"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
Wouldn't that be shorter ?
=IF(ISNA(VLOOKUP(C25,product_data,2,)),"-",VLOOKUP(C25,product_data,2,))
Micky


"Vital_ar" wrote:

Hi,
If your want to just remove the #N/A, then try to use Iserror function
like
this,

=IF(ISERROR(IF(C25<"",VLOOKUP(C25,product_data,2, FALSE),"
")),"-",IF(C25<"",VLOOKUP(C25,product_data,2,FALSE) ," "))

It will return - in that respective sell.

Regards,

"gibbylinks" wrote:

Hi, I use a spreadsheet for invoicing and have a product code
entered
into a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather than
pick a
product.

Can my formula be modified to avoid the #N/A appearing in the
product
code ?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks


.



.

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 834
Default Avoiding #N/A

I was supporting your original intervention within this thread by pointing
that no only is ISNA shorter then ISERROR, it is a better solution IMO. You
decided to take umbrage with that so nothing answers my question as I didn't
ask a question, and I don't care to get into arguments with people who get
stroppy with those who endorse their comments.

Bob

"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
If you'll look at the subject line of the question and/or read' again, its
content [quote]:
"Can my formula be modified to avoid the #N/A appearing in the product
code ?"
This is what my reply referred to.
Does the above answer your question.
I'm sure that if you would see a suggestion to add 5 cells - like:
=A1+B1+C1+D1+E1 you would also comment that this can be shorten to:
=SUM(A1:E1)
Please take into consideration that my English is not good enough to argue
so, please, do not push me into such.
Micky


"Bob Phillips" wrote:

Then in that case I question why you joined in at all.

"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
No doubt - but I, usually, try to focus on the questions - as is...
Micky


"Bob Phillips" wrote:

And better as ISERROR will ignore ANY error, nit just NA

Bob


"????? (????) ?????" <micky-a*at*tapuz.co.il wrote in message
...
Wouldn't that be shorter ?
=IF(ISNA(VLOOKUP(C25,product_data,2,)),"-",VLOOKUP(C25,product_data,2,))
Micky


"Vital_ar" wrote:

Hi,
If your want to just remove the #N/A, then try to use Iserror
function
like
this,

=IF(ISERROR(IF(C25<"",VLOOKUP(C25,product_data,2, FALSE),"
")),"-",IF(C25<"",VLOOKUP(C25,product_data,2,FALSE) ," "))

It will return - in that respective sell.

Regards,

"gibbylinks" wrote:

Hi, I use a spreadsheet for invoicing and have a product code
entered
into a
column when a product (in column C) is selected.

I also sometimes use this column to put a description in rather
than
pick a
product.

Can my formula be modified to avoid the #N/A appearing in the
product
code ?

Current formula is

=IF(C25<"",VLOOKUP(C25,Product_Data,2,FALSE)," ")

Thanks


.



.



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
Avoiding #N/A Heather Excel Discussion (Misc queries) 4 August 25th 09 08:41 PM
Avoiding Duplicates Mald Excel Discussion (Misc queries) 4 August 1st 06 03:38 PM
avoiding multiplication weeclaire Excel Discussion (Misc queries) 4 April 7th 06 02:07 PM
Avoiding #value MicroMain Excel Worksheet Functions 2 January 25th 06 05:11 AM
Avoiding #NUM! Bruno Campanini Excel Worksheet Functions 9 September 14th 05 02:34 PM


All times are GMT +1. The time now is 03:27 AM.

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"