SOLVED

How to tell if less then 30 days since visit

Copper Contributor

Hey!

 

I am needing to format this spreadsheet to see if the date of callback is less then 30 days from install, on the entire spreadsheet. HELP PLEASE :)

 

Install Date-CELL D

Callback Date-

CELL E

1 Reply
best response confirmed by KKEILMAN (Copper Contributor)
Solution

@KKEILMAN 

Would you like to highlight those cells? If so:

 

Select D2:E100 (or as far down as the data go).

The active cell in the selection should be in row 2, i.e. D2 or E2.

On the Home tab of the ribbon, click Conditional Formatting > New Rule...

Select 'Use a formula to determine which cells to format'.

Enter the formula

 

=AND($E2<>"",$E2<$D2+30)

 

Click Format...

Activate the Fill tab.

Select a color.

Click OK, then click OK again.

1 best response

Accepted Solutions
best response confirmed by KKEILMAN (Copper Contributor)
Solution

@KKEILMAN 

Would you like to highlight those cells? If so:

 

Select D2:E100 (or as far down as the data go).

The active cell in the selection should be in row 2, i.e. D2 or E2.

On the Home tab of the ribbon, click Conditional Formatting > New Rule...

Select 'Use a formula to determine which cells to format'.

Enter the formula

 

=AND($E2<>"",$E2<$D2+30)

 

Click Format...

Activate the Fill tab.

Select a color.

Click OK, then click OK again.

View solution in original post