Condition for: IF TRUE then ADD 1 to A1?

Mikey556

New Member
Joined
Feb 9, 2022
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Evening all!

In 'Conditional Formats' > 'Use a formula to determine which cells to format' I used the below condition to turn a cell green when my conditions were met, successfully:

=IF(TODAY()>=J14+J$7, TRUE())

I want the exact same condition, but for it to ADD 1 to a different cell.

How would I make that condition add +1 to cell A1 for example?

Thank you all for your time :)
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
The usual approach would be to have a formula in A1 that counts the conditionally formatted cell(s) meeting the condition, like this:

ABCDEFGHIJ
14
2
3
4
5
6OverDueDays
77
8
9TODAY()
1010 Feb 2022
11
12
13
141 Feb 2022
152 Feb 2022
163 Feb 2022
173 Feb 2022
184 Feb 2022
196 Feb 2022
Sheet1
Cell Formulas
RangeFormula
A1A1=COUNTIF(J14:J19,"<="&TODAY()-J7)
J10J10=TODAY()
Cells with Conditional Formatting
CellConditionCell FormatStop If True
J14:J19Expression=TODAY()>=J14+J$7textNO

Or perhaps A1: =SomeOtherFormula+COUNTIF(J14:J19,"<="&TODAY()-J7)?
 
Upvote 0

Forum statistics

Threads
1,214,416
Messages
6,119,386
Members
448,891
Latest member
tpierce

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