> Post your formula, pl.
> >I need to check two conditions in a cell and then return the value if true
[quoted text clipped - 7 lines]
> >
> > Mustafa
Thu, 3 Jan 2008 03:13:00 -0800 from Mustafa S N
<MustafaSN@discussions.microsoft.com>:
> > > I need to check two conditions in a cell and then return the
> > > value if true r false.
[quoted text clipped - 5 lines]
>
> =IF(F739="Renew",550,IF(F739="Urgent",260),150)
Your parentheses near the end are wrong. An IF needs three arguments,
but your outer IF has four and your inner IF has two. Change to
=IF(F739="Renew",550,IF(F739="Urgent",260,150))

Signature
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
"If there's one thing I know, it's men. I ought to: it's
been my life work." -- Marie Dressler, in /Dinner at Eight/
Mustafa S N - 03 Jan 2008 12:29 GMT
Stan,
Thanks a lot....it worked as required.
Mustafa
> Thu, 3 Jan 2008 03:13:00 -0800 from Mustafa S N
> <MustafaSN@discussions.microsoft.com>:
[quoted text clipped - 13 lines]
>
> =IF(F739="Renew",550,IF(F739="Urgent",260,150))
Stan Brown - 04 Jan 2008 02:16 GMT
Thu, 3 Jan 2008 04:29:01 -0800 from Mustafa S N
<MustafaSN@discussions.microsoft.com>:
> > Thu, 3 Jan 2008 03:13:00 -0800 from Mustafa S N
> > <MustafaSN@discussions.microsoft.com>:
[quoted text clipped - 15 lines]
>
> Thanks a lot....it worked as required.
Happy to help, and thanks for the feedback (even though it was upside
down).

Signature
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
"If there's one thing I know, it's men. I ought to: it's
been my life work." -- Marie Dressler, in /Dinner at Eight/