Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default More than 2 IF options

Hello,

I am trying to create a formula that will give three possible results for a
result in another cell. The answer in cell C1 may be 4. Then in cell D1 I
want it to give me a readout of "ON TIME" if C1<4, "SLOW" if C1=4, and "LATE"
if C14. How do I create that formula???

I tried =IF(AND(C1<4, C1=4, C14), "ON TIME", "SLOW", "LATE"), but it didn't
work. It stated that I entered too many arguments for this function.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default More than 2 IF options

=IF(C1<4, "ON TIME", IF(C1=4, "SLOW", "LATE"))

[Note that if you type the word IF or AND into Excel help, it will tell you
the syntax of the function, explain the functionality, and give examples.]
--
David Biddulph

"Kim L" <Kim wrote in message
...
Hello,

I am trying to create a formula that will give three possible results for
a
result in another cell. The answer in cell C1 may be 4. Then in cell D1
I
want it to give me a readout of "ON TIME" if C1<4, "SLOW" if C1=4, and
"LATE"
if C14. How do I create that formula???

I tried =IF(AND(C1<4, C1=4, C14), "ON TIME", "SLOW", "LATE"), but it
didn't
work. It stated that I entered too many arguments for this function.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default More than 2 IF options

=IF(C1=4,"ON TIME",IF(C1<4,"SLOW","LATE"))
--
Gary''s Student - gsnu200763
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
how do I add more toolbar options to my right click options Rosie Excel Discussion (Misc queries) 1 August 11th 06 04:52 PM
Options Access Front End Excel Discussion (Misc queries) 1 November 22nd 05 01:41 PM
Web Options? nastech Excel Discussion (Misc queries) 0 November 16th 05 05:13 PM
FTP options Kosta Excel Discussion (Misc queries) 2 March 23rd 05 04:03 AM
what are my options? tysonstone Excel Discussion (Misc queries) 3 January 23rd 05 12:13 AM


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