I am trying to calculate the difference between two dates and have that
diveded by seven, (e.g. 7/XX-XX) and remove any answers that sum less than 0.5
So far I have the below formula, but it returns an "ERROR" where there is
blank cells. I think that is because of the zero in the ...C3-D3<>0),..
section
=IF(AND(ISNUMBER(C3),ISNUMBER(D3),C3-D3<>0),IF(ROUND(7/(C3-D3),5)>0.5,ROUND(7/(C3-D3),5),""))
has anyone any ideas please??
Ted.
Peo Sjoblom - 21 Nov 2005 01:53 GMT
How about
=IF(AND(C3-D3>0,COUNT(C3:D3)=2),IF(ROUND((C3-D3)/7,5)>0.5,ROUND((C3-D3)/7,5),""),"")

Signature
Regards,
Peo Sjoblom
(No private emails please)
>I am trying to calculate the difference between two dates and have that
> diveded by seven, (e.g. 7/XX-XX) and remove any answers that sum less than
[quoted text clipped - 9 lines]
>
> Ted.
Peo Sjoblom - 21 Nov 2005 02:01 GMT
.
Oops! reverse the division, I just assumed it was a typo

Signature
Regards,
Peo Sjoblom
(No private emails please)
> How about
>
[quoted text clipped - 13 lines]
>>
>> Ted.
Ted - 21 Nov 2005 02:10 GMT
hi, thanks for that - yep that works great $;-D
thanks, Ted.
> ..
> Oops! reverse the division, I just assumed it was a typo
[quoted text clipped - 16 lines]
> >>
> >> Ted.
Ted - 21 Nov 2005 02:06 GMT
noup, sorry - it gives a blank cell even when the condition it ok (e.g. above
0.5)
thanks anyway,
Ted.
> How about
>
[quoted text clipped - 13 lines]
> >
> > Ted.
Ron Rosenfeld - 21 Nov 2005 02:00 GMT
>I am trying to calculate the difference between two dates and have that
>diveded by seven, (e.g. 7/XX-XX) and remove any answers that sum less than 0.5
[quoted text clipped - 8 lines]
>
>Ted.
See my response (2nd suggestion) in your other thread. It does not return an
error if both cells are blank.
It is much easier to obtain coherent help if you keep all your related
questions in the same thread.
--ron