Need help adding a formula to to cell with conditional formatting

M

Max

Hi,

I have a cell with the following conditional formatting
=AND(S2<TODAY(),W2="",D2="x") If these conditions are met the cell S2 is
bolded in red.
I need to add the following to the cell "if the date in U2 is earlier than
the date in S2 then bold S2 in black"

S2 and U2 are calendar dates.

Could somebody help me with a formula for the above and how to add it to the
existing formula?

Thanks
 
M

Ms-Exl-Learner

If you want to use the formula as an another condition the use the below:-
=AND(U2<>"",S2<>"",U2<S2)

If you want to use it in your present formula then use the below:-
=AND(S2<TODAY(),W2="",D2="x",U2<S2)

Remember to Click Yes, if this post helps!
 
M

Max

That works!

Thanks
Max

Ms-Exl-Learner said:
If you want to use the formula as an another condition the use the below:-
=AND(U2<>"",S2<>"",U2<S2)

If you want to use it in your present formula then use the below:-
=AND(S2<TODAY(),W2="",D2="x",U2<S2)

Remember to Click Yes, if this post helps!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top