example need to work getting longer.. must be a shorter way:
IF(OR(IF(M9>0,(HOUR(TRIM(RIGHT(M9,11)))+$C$6)<HOUR(NOW()),TRUE)),0,1)
still off by 59 mins..
Give this formula a try...
=IF(24*(NOW()-M9)>2,1,0)
Rick
> example need to work getting longer.. must be a shorter way:
> IF(OR(IF(M9>0,(HOUR(TRIM(RIGHT(M9,11)))+$C$6)<HOUR(NOW()),TRUE)),0,1)
[quoted text clipped - 22 lines]
>> > >
>> > > would think easier way to manipulate this data. thanks
Nastech - 27 May 2008 09:21 GMT
thanks! works great for minutes away. only difference is that am using 0 as
null/false condition.. or =IF(24*(NOW()-M9)>2,0,1)
in example if date present in m9
=IF(OR(IF(M9>0,24*(NOW()-M9)>$M$6,TRUE)),0,1)
think tried to get this couple times, way back, never could get answer/
didn't know how to ask, was a major problem. could not figure from now()
help. not much there. thanks again.
> Give this formula a try...
>
[quoted text clipped - 28 lines]
> >> > >
> >> > > would think easier way to manipulate this data. thanks