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

I have three conditions that I need to be met:

If D82 = G82----- I need it to Read "MATCH"
If D82 = ""------I need it to read "NEED SAP"
If G82 = ""------I need it to read "NEED ALERT"

Can someone help?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default nested if help

You could do it like this:

=IF(D82="","NEED SAP",IF(G82="","NEED ALERT",IF(D82=G82,"MATCH","no
match")))

Hope this helps.

Pete

On Jan 6, 4:14*pm, Jeremy <jeremiah.a.reynolds @ gmail.com wrote:
I have three conditions that I need to be met:

If D82 = G82----- I need it to Read "MATCH"
If D82 = ""------I need it to read "NEED SAP"
If G82 = ""------I need it to read "NEED ALERT"

Can someone help?


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

One way:

=IF(D82=G82,"MATCH",IF(D82="","NEED SAP",IF(G82="","NEED ALERT", "No
Match, Neither Blank")))

However, I suspect that's not what you want. What should happen if both
D82 and G82 are blank?

Just as a guess, I'd think you want something more like:

=IF(D82="","NEED SAP",IF(G82="","NEED ALERT",IF(D82=G82,"MATCH","NO
MATCH")))


In article ,
Jeremy <jeremiah.a.reynolds @ gmail.com wrote:

I have three conditions that I need to be met:

If D82 = G82----- I need it to Read "MATCH"
If D82 = ""------I need it to read "NEED SAP"
If G82 = ""------I need it to read "NEED ALERT"

Can someone help?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 85
Default nested if help

perfect! thanks

"Pete_UK" wrote:

You could do it like this:

=IF(D82="","NEED SAP",IF(G82="","NEED ALERT",IF(D82=G82,"MATCH","no
match")))

Hope this helps.

Pete

On Jan 6, 4:14 pm, Jeremy <jeremiah.a.reynolds @ gmail.com wrote:
I have three conditions that I need to be met:

If D82 = G82----- I need it to Read "MATCH"
If D82 = ""------I need it to read "NEED SAP"
If G82 = ""------I need it to read "NEED ALERT"

Can someone help?



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default nested if help

You're welcome, Jeremy - thanks for feeding back.

Pete

On Jan 6, 4:28*pm, Jeremy <jeremiah.a.reynolds @ gmail.com wrote:
perfect! 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
Nested if help.... [email protected] Excel Worksheet Functions 8 October 17th 07 09:09 AM
nested if Gary Wessle Excel Worksheet Functions 6 August 2nd 07 05:19 AM
Help Nested If and And madeleine Excel Worksheet Functions 2 June 20th 07 03:10 PM
nested if based on nested if in seperate sheet. how? scouserabbit Excel Worksheet Functions 5 March 2nd 07 04:03 PM
Nested If with And TheLeafs Excel Worksheet Functions 2 August 24th 05 05:24 PM


All times are GMT +1. The time now is 08:25 AM.

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"