Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Beth104
 
Posts: n/a
Default conditional formulas

Is there a way to have 4 conditions in one formula and cell? it is only
allowing me to enter 2. For example, IF100%,"FORMULA X",
IF=95%*AND<100%,"FORMULA Y",
IF<95%*AND=85%,"FORMULA Z"
IF<85%,0

Any help is appreciated!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bernard Liengme
 
Posts: n/a
Default conditional formulas

You need to nest some IFs
=IF(A1100%, formula_x, IF(A1=95%, formula_b, IF(A1=85%, formula_c,
formula_d)))

Notice we do not need A1=95% AND < 100% since the 100% has already be
captured.
Likewise when we test to =85%, the cases greater than 95% are already
looked after.

IF can be read as ; IF (test_this, when_true_do_this, when false_do_this)
Nesting can be done only the 7 levels.
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Beth104" wrote in message
...
Is there a way to have 4 conditions in one formula and cell? it is only
allowing me to enter 2. For example, IF100%,"FORMULA X",
IF=95%*AND<100%,"FORMULA Y",
IF<95%*AND=85%,"FORMULA Z"
IF<85%,0

Any help is appreciated!



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Dav
 
Posts: n/a
Default conditional formulas


If the value to be evaluated is in cell A1

IF(a11,"FORMULA X", IF(a1=0.95,"FORMULA Y",IF(a1=0.85,"FORMULA Z"
,0)))

Regards

Dav


--
Dav
------------------------------------------------------------------------
Dav's Profile: http://www.excelforum.com/member.php...o&userid=27107
View this thread: http://www.excelforum.com/showthread...hreadid=520097

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom
 
Posts: n/a
Default conditional formulas

One way

=CHOOSE(LOOKUP(A1,{0;0.85;0.95;1},{1;2;3;4}),0,"fo rmula Z","formula
Y","formula X")



--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"Beth104" wrote in message
...
Is there a way to have 4 conditions in one formula and cell? it is only
allowing me to enter 2. For example, IF100%,"FORMULA X",
IF=95%*AND<100%,"FORMULA Y",
IF<95%*AND=85%,"FORMULA Z"
IF<85%,0

Any help is appreciated!


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
enhanced conditional formatting Stuart Excel Discussion (Misc queries) 13 November 13th 05 07:20 PM
conditional formulas deaundra Excel Worksheet Functions 3 April 15th 05 12:44 AM
conditional formulas deaundra Excel Worksheet Functions 2 April 15th 05 12:08 AM
Help Using Formulas in Conditional Formatting Still Learning Excel Discussion (Misc queries) 2 January 28th 05 04:55 PM
conditional formulas in excel Rocempire Excel Worksheet Functions 2 November 6th 04 05:44 AM


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