Stopping a formula from updating after a givendate

mick6623

New Member
Joined
Jun 1, 2011
Messages
7
Hey, does anyone have a way of stopping a formula from updating after a given date has been reached.

The idea is to produce a weekly summary of outstanding jobs
Row 2 tracks the number of Normal and High Priority Jobs in progress i.e the number of outstanding enquiries. 'Build Log'! F:F contains the date the enquiry was raised. K1 is the end date of the week in question

Row 2
{=SUM(('Build Log'!$C:$C="High Priority")*('Build Log'!$F:$F<=K1))+SUM(('Build Log'!$C:$C="Normal Priority")*('Build Log'!$F:$F<=K1))}

It does the job but when I change an outstanding enquiry from say 'high priority' to 'complete' it updates all the previous weeks totals.
Really I want row 2 to remain fixed at whatever value it was when on when the date in row 1 was reached.

How should I be going about this?


-- removed inline image ---
 
Last edited:

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Yeah that solves half the problem but how can I get it to maintain the value it had on the last day of the previous week?
 
Upvote 0
You can try using circular referance if you want to do it by formula, or the other way is probably using VBA.
For circular ref you will first have to go in options > Calculations > Check Iteration and set the Maximum Iteration value to 100.
Then use something like this in A3:
=IF(TODAY() < =A1,B2-A2,A3)
 
Upvote 0

Forum statistics

Threads
1,224,563
Messages
6,179,527
Members
452,923
Latest member
JackiG

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