From: Norm on
Have I missed something here?
=IF(E13>0,"early",E13<0,"late")

Cheers!!
From: Iriemon on
=IF(E13>0,"Early",if(E13=0,"","late")



"Norm" wrote:

> Have I missed something here?
> =IF(E13>0,"early",E13<0,"late")
>
> Cheers!!
From: Norm on
Thanks,
E13 is a time value.. if E13 has a value of 12:30 and early is before 12:00
and late is after 12:45 and 12:00 to 12:45 is On Time how would I formula
this?
Cheers!!

"Norm" wrote:

> Have I missed something here?
> =IF(E13>0,"early",E13<0,"late")
>
> Cheers!!
From: Ron Rosenfeld on
On Wed, 19 May 2010 10:14:10 -0700, Norm <Norm(a)discussions.microsoft.com>
wrote:

>Have I missed something here?
>=IF(E13>0,"early",E13<0,"late")
>
>Cheers!!

=if(e13>0,"early",if(e13<0,"late","on time"))
--ron
From: bala_vb on

Ron Rosenfeld;954840 Wrote:
> On Wed, 19 May 2010 10:14:10 -0700, Norm
> <Norm(a)discussions.microsoft.com>
> wrote:
> -
> >Have I missed something here?
> >=IF(E13>0,"early",E13<0,"late")
> >
> >Cheers!!-
>
> =if(e13>0,"early",if(e13<0,"late","on time"))
> --ron

=if(istext(e13),"Non Numeric
value",if(e13>0,"early",if(e13<0,"late","on time")))


all the best




--
bala_vb