Workday function

Snowy1

New Member
Joined
Jul 17, 2018
Messages
8
Hi

Have input the folloing conditioning format in cell B4 and have used the TODAY function.

=TODAY()-A4>30

What i want is exactly the same but to count working days.

I want cell B4 to go red 30 working days after the date input in A4.

Can anyone assist?


<colgroup><col width="64" span="10" style="width:48pt"> </colgroup><tbody>
</tbody>
 
If your value is in cell A1, use this Conditional Formatting Condition in cell B1:
Code:
=OR(AND(B1="",WORKDAY(A1,30)<=TODAY()),WORKDAY(A1,30)<=B1)
 
Upvote 0

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
This formula works - the only issue is B1 shows red even if a date is not entered in A1.
Is there a way that B1 remains blank until a date is entered in A1 and then the formula then starts?

Thanks
 
Upvote 0
Try:
Code:
=OR(AND(A1<>"",B1="",WORKDAY(A1,30)<=TODAY()),AND(A1<>"",WORKDAY(A1,30)<=B1))
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,289
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top