Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default Finding errors or not.....

I have 3 columns that are checking item sku designations and determining if
the come in different materials. I need a 4th column to return which material
it comes in...

1 2 3 4
LAM VINYL PLASTIC AVAILABILITY
TKC-LAM #N/A #N/A ?

How can I get this to work?
  #2   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Finding errors or not.....

Change your lookup formulas in the three columns to be qrapped in an IF
statement like this....

=IF(ISNA(YourFormula),"",YourFormula).....this will return a null (nothing)
if the item is not found, rather than #N/A

Then in your Availability column, you could use

=A2 &" "&B2&" "&C2

Vaya con Dios,
Chuck, CABGx3



"bchappell" wrote:

I have 3 columns that are checking item sku designations and determining if
the come in different materials. I need a 4th column to return which material
it comes in...

1 2 3 4
LAM VINYL PLASTIC AVAILABILITY
TKC-LAM #N/A #N/A ?

How can I get this to work?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default Finding errors or not.....

I tried both solutions and found them to work equally well.

I never would have thought of using Concatenation in this fashion.

Thank you very much gentlemen.

"CLR" wrote:

Change your lookup formulas in the three columns to be qrapped in an IF
statement like this....

=IF(ISNA(YourFormula),"",YourFormula).....this will return a null (nothing)
if the item is not found, rather than #N/A

Then in your Availability column, you could use

=A2 &" "&B2&" "&C2

Vaya con Dios,
Chuck, CABGx3



"bchappell" wrote:

I have 3 columns that are checking item sku designations and determining if
the come in different materials. I need a 4th column to return which material
it comes in...

1 2 3 4
LAM VINYL PLASTIC AVAILABILITY
TKC-LAM #N/A #N/A ?

How can I get this to work?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Finding errors or not.....

One way:

=IF(ISNA(A2),"",A1)&IF(ISNA(B2),"",B1)&IF(ISNA(C2) ,"",C1)

Alternatively, intercept the error returned from the formula in A2,
B2 and C2 using ISNA, and return "" instead, then your formula could
be:

=IF(A2="","",A1)&IF(B2="","",B1)&IF(C2="","",C1)

Hope this helps.

Pete

On Feb 6, 3:42*pm, bchappell
wrote:
I have 3 columns that are checking item sku designations and determining if
the come in different materials. I need a 4th column to return which material
it comes in...

* * *1 * * * * * * * * 2 * * * * * * * * * *3 * * * * * * * * * * * * * 4
* *LAM * * * * * *VINYL * * * * * *PLASTIC * * * * * *AVAILABILITY
TKC-LAM * * * *#N/A * * * * * * *#N/A * * * * * * * * * * * *?

How can I get this to work?


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
Excel Throwing Circular Errors When No Errors Exist MDW Excel Worksheet Functions 1 August 10th 06 02:15 PM
Finding errors Daniel - Sydney Excel Discussion (Misc queries) 2 May 29th 06 06:24 AM
IIf and value-errors Ian Excel Discussion (Misc queries) 9 February 6th 06 01:13 PM
Any errors in this? Frazer Excel Discussion (Misc queries) 0 August 19th 05 08:17 PM
Unresolved Errors in IF Statements - Errors do not show in results Markthepain Excel Worksheet Functions 2 December 3rd 04 08:49 AM


All times are GMT +1. The time now is 11:37 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"