Google Sheetssss
Google Sheetssss

Reputation: 13

Conditional formatting date weekday only + 7 days Google Sheets

Trying to get a custom formula (other parameters besides this) to highlight a cell when it has been 7 working days since that date omitting the weekend

=TODAY()>=weekday($E8+7)

attempted to use networkdays as well but it did not work

Upvotes: 1

Views: 65

Answers (1)

leylou
leylou

Reputation: 554

Use WORKDAY() Function

You may try:

=WORKDAY(A1, 7) = TODAY()

to check if today is 7 business days from the specified date in cell A1.

Sample Output:

Sample Output

or

=WORKDAY(A1, 7) <= TODAY()

to check if it's already at least 7 business days from the specified date in cell A1.

Sample Output:

Sample Output 2

Reference:

Upvotes: 1

Related Questions