Stopping the clock

colin5392

Board Regular
Joined
Oct 25, 2016
Messages
67
Office Version
  1. 2019
Platform
  1. Windows
I have created a Risk Register, which lists the number of days a risk has been open for, using the formula below (Column AC), where G4 is the date the risk was identified / raised on the register.

=IF(AA4="Open", TODAY()-G4, "")

Column G - Date Originated
Column AA - status, either Open or Closed
Column AC - Days Open

BUT

When the Risk has been dealt with and the entry can be closed, instead of clearing out the data in Column AC (Days Open), I would like the current value to remain as that value, e.g. if the entry was considered Closed in Column AA, the value would become a static value, (no longer changing).

I am assuming that the above formula would have to be completely rewritten but I don't know how to set it as a true value, where an entry is Closed.

Can you advise?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
You could do that with iterative calculation enabled, but I'd do it like this:

A​
B​
C​
D​
1​
Originated
Closed
Days Open
2​
16-May-2018​
04-Jun-2018​
19​
C2: =IF(B2="", TODAY(), B2) - A2
3​
01-Jun-2018​
10​
 
Upvote 0
Another way is to use an event handler. Try this:

Open a copy of your workbook. On the sheet with your data, right click on the sheet tab on the bottom and select View Code. Paste the following code into the sheet that opens:

Code:
Private Sub Worksheet_Change(ByVal target As Range)

    If Intersect(target, Range("AA:AA")) Is Nothing Then Exit Sub
    If target.Rows.Count > 1 Then Exit Sub
    If LCase(target) = "closed" Then Cells(target.Row, "AC").Value = Date - Cells(target.Row, "G")
    
End Sub
Press Alt-Q to close the editor. Now when you type "Closed" in column AA, this macro will detect it, and change the value in AC to a static value.

Hope this works for you!
 
Upvote 0
Thanks - that's great.

One additional query, if i were to add a status column, how would the formula change to work off both the 'status' of Closed AND the date the entry was closed (in the above example -

A B C D
1 Originated Status Date Closed Days Open
2 16 May 18 Closed 4 Jun 18 =IF(C2="", TODAY(), C2-A2)
3 01 Jun 18 Open =IF(C3="", TODAY(), C3-A3)

So, if B = Closed AND C contains a date, what would I need to use?
 
Upvote 0
That would be redundant, no? What does it mean if it says "closed", and there's no date? Or vice versa?
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,578
Members
449,174
Latest member
chandan4057

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