#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default Additional formula

This is a formula that I have in my spresdsheet at L6 to answer Y or N to
certain criteria. I need additional criteria added. I need the same formula
but if there is an x in cell "X6" I need the answer to be C in L6 instead of
Y or N.
=IF(AND(H6="x",K6<=14),"Y",IF(AND(H6="x",K6=15)," N"))

the below formula fixed the above question, I only want a C to show up in L6
if a N is going to be the answer not a Y. Hope this is not too confusing.
Thanks, Burt
=IF(x6="x","C",if(AND(H6="x",K6<=14),"Y",IF(AND(H6 ="x",K6=15),"N")))
  #2   Report Post  
Posted to microsoft.public.excel.misc
CM CM is offline
external usenet poster
 
Posts: 136
Default Additional formula

try this:

=IF(AND(H6="x",K6<=14),"Y",IF(AND(H6="x",K6=15),I F(X6="x","C","N")))


--
hope to help,
cm


"Help with cell function" wrote:

This is a formula that I have in my spresdsheet at L6 to answer Y or N to
certain criteria. I need additional criteria added. I need the same formula
but if there is an x in cell "X6" I need the answer to be C in L6 instead of
Y or N.
=IF(AND(H6="x",K6<=14),"Y",IF(AND(H6="x",K6=15)," N"))

the below formula fixed the above question, I only want a C to show up in L6
if a N is going to be the answer not a Y. Hope this is not too confusing.
Thanks, Burt
=IF(x6="x","C",if(AND(H6="x",K6<=14),"Y",IF(AND(H6 ="x",K6=15),"N")))

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 120
Default Additional formula

Does your 2nd formula solved what you want?
if not, do you actually want to replace the N to a C?
if yes, then change the N in your formual to C
--
Hope this help

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis





"Help with cell function" wrote:

This is a formula that I have in my spresdsheet at L6 to answer Y or N to
certain criteria. I need additional criteria added. I need the same formula
but if there is an x in cell "X6" I need the answer to be C in L6 instead of
Y or N.
=IF(AND(H6="x",K6<=14),"Y",IF(AND(H6="x",K6=15)," N"))

the below formula fixed the above question, I only want a C to show up in L6
if a N is going to be the answer not a Y. Hope this is not too confusing.
Thanks, Burt
=IF(x6="x","C",if(AND(H6="x",K6<=14),"Y",IF(AND(H6 ="x",K6=15),"N")))

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default Additional formula

"Help with cell function" wrote:
the below formula fixed the above question, I only want a C to show up in L6
if a N is going to be the answer not a Y.

[....]
=IF(x6="x","C",if(AND(H6="x",K6<=14),"Y",IF(AND(H6 ="x",K6=15),"N")))


=IF(H6="x", IF(K6<=14,"Y", IF(X6="x","C","N")), "")

Note that I simplified your original formulation. It is not necessary to
test if K6=15 because that is implied by the fact that K6<=14 is false.

I also added a return value (the null string, "") so that the formula
returns something other than FALSE when none of the conditions is met.


----- original message -----

"Help with cell function" wrote:

This is a formula that I have in my spresdsheet at L6 to answer Y or N to
certain criteria. I need additional criteria added. I need the same formula
but if there is an x in cell "X6" I need the answer to be C in L6 instead of
Y or N.
=IF(AND(H6="x",K6<=14),"Y",IF(AND(H6="x",K6=15)," N"))

the below formula fixed the above question, I only want a C to show up in L6
if a N is going to be the answer not a Y. Hope this is not too confusing.
Thanks, Burt
=IF(x6="x","C",if(AND(H6="x",K6<=14),"Y",IF(AND(H6 ="x",K6=15),"N")))

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
additional - formula error Rajj New Users to Excel 2 September 3rd 09 02:16 PM
Nesting an additional formula in an IF statement Karsea New Users to Excel 12 February 10th 09 10:16 PM
additional conditions to SUMPRODUCT formula Fiona Yorke-Saville Excel Discussion (Misc queries) 3 January 23rd 09 03:04 PM
Copy Formula to additional columns Lise Excel Discussion (Misc queries) 3 March 20th 08 08:48 AM
retain formula in additional workbooks Lynch New Users to Excel 1 January 30th 06 08:11 PM


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