View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default Two TRUE to one FALSE statement

=IF(C2<B2,"Early",IF(C2=B2,"On time","Late"))

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"bluebird" wrote in message
...
Would like to create a formula that can return one of two true outcomes

vs.
one false. For example:

if date2 (c2) < date1 (b2), then "early",
if date2 (c2) = date1 (b2), then "on time",
if date2 (c2) date2 (b2), or if %(d2)<1, then "late".

Can this be done? Any help greatly appreciated!