Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 31
Default Creation of a formula

I need a formula that can read all of these and provide me with the correct
results.

I have 4cells f1,f2,f3,f4. on these cells I select one only at a time and I
mark that cell with a "x"

I have cells:
a1
b1
c1
if a1B1 the formula has to look at f1 and f2, to see if any of those has an
"x", if there is an X the result should be the word "DENIED". IF a1C1 the
formula has to look at f3 and f4 if there is an "x" the result should be the
word "NAUR". if B1 and C1 are < A1 then the is no result, a simple "" to be
invisible is ok.

Hope this is clear enough. Thank for your help.


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Creation of a formula

Try this:
=IF(AND(A1B1,OR(F1="x",F2="x")),"DENIED",IF(AND(A 1C1,OR(F3="x",F4="x")),"NAUR",""))

This is assuming that you type an actual x in the cell and that you will
only have one x at a time.

"Frances C" wrote:

I need a formula that can read all of these and provide me with the correct
results.

I have 4cells f1,f2,f3,f4. on these cells I select one only at a time and I
mark that cell with a "x"

I have cells:
a1
b1
c1
if a1B1 the formula has to look at f1 and f2, to see if any of those has an
"x", if there is an X the result should be the word "DENIED". IF a1C1 the
formula has to look at f3 and f4 if there is an "x" the result should be the
word "NAUR". if B1 and C1 are < A1 then the is no result, a simple "" to be
invisible is ok.

Hope this is clear enough. Thank for your help.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Creation of a formula

Does this formula do what you want?

=IF(A1B1,IF(OR(F1="x",F2="x"),"Denied","Not
Denied"),IF(A1C1,IF(OR(F3="x",F4="x"),"NAUR","Not NAUR"),""))

You didn't say what you wanted in a couple of cases, so I used Not Denied
and Not NAUR for them... you can change those to what you want.

Rick


"Frances C" wrote in message
...
I need a formula that can read all of these and provide me with the correct
results.

I have 4cells f1,f2,f3,f4. on these cells I select one only at a time and
I
mark that cell with a "x"

I have cells:
a1
b1
c1
if a1B1 the formula has to look at f1 and f2, to see if any of those has
an
"x", if there is an X the result should be the word "DENIED". IF a1C1 the
formula has to look at f3 and f4 if there is an "x" the result should be
the
word "NAUR". if B1 and C1 are < A1 then the is no result, a simple "" to
be
invisible is ok.

Hope this is clear enough. Thank for your help.



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 / XMI Creation dvhirst[_2_] Excel Discussion (Misc queries) 0 June 11th 07 06:13 PM
Formula creation maud0361 Excel Discussion (Misc queries) 6 April 9th 07 11:59 AM
Suppress automatic formula creation? Geoff C Excel Worksheet Functions 2 March 28th 07 08:46 AM
Dynamic Formula Creation?? [email protected] Excel Discussion (Misc queries) 2 October 27th 06 09:14 AM
Formula creation...if possible Kelly C Excel Worksheet Functions 2 February 22nd 06 11:11 PM


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