#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 360
Default nested if

I don't think I have the ending quite right:

if(isna(n4)),if(J4 = .70)),L4,"")

What I want is if N4 is na AND if J4 = .70 then I want the value in L4 else
I don't want a value. I'm trying to get all the new values on the ones that
aren't matched from a vlookup in n4.

tia,
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default nested if

Try this:

=IF(AND(ISNA(N4),J4=0.7),L4,"")

HTH,
Elkar


"Janis" wrote:

I don't think I have the ending quite right:

if(isna(n4)),if(J4 = .70)),L4,"")

What I want is if N4 is na AND if J4 = .70 then I want the value in L4 else
I don't want a value. I'm trying to get all the new values on the ones that
aren't matched from a vlookup in n4.

tia,

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,089
Default nested if

=IF(AND(ISNA(N4),J4=.7),L4,"")

Regards

Trevor


"Janis" wrote in message
...
I don't think I have the ending quite right:

if(isna(n4)),if(J4 = .70)),L4,"")

What I want is if N4 is na AND if J4 = .70 then I want the value in L4
else
I don't want a value. I'm trying to get all the new values on the ones
that
aren't matched from a vlookup in n4.

tia,



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default nested if

Try it like this:

=IF(AND(ISNA(N4),J4=0.7),L4,"")

--
Biff
Microsoft Excel MVP


"Janis" wrote in message
...
I don't think I have the ending quite right:

if(isna(n4)),if(J4 = .70)),L4,"")

What I want is if N4 is na AND if J4 = .70 then I want the value in L4
else
I don't want a value. I'm trying to get all the new values on the ones
that
aren't matched from a vlookup in n4.

tia,



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
nested if based on nested if in seperate sheet. how? scouserabbit Excel Worksheet Functions 5 March 2nd 07 04:03 PM
using nested OR stef Excel Worksheet Functions 18 November 3rd 06 09:35 PM
Nested Ifs Amy Excel Worksheet Functions 3 October 9th 06 01:54 AM
More than 16 nested IFs!!!! Meltad Excel Worksheet Functions 11 October 6th 06 09:49 AM
Run out of nested Ifs Clive Williamson Excel Worksheet Functions 8 April 10th 06 12:36 PM


All times are GMT +1. The time now is 01:14 PM.

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"