Getting a cell to stop counting numbers

Chris87

New Member
Joined
May 17, 2024
Messages
3
Office Version
  1. Prefer Not To Say
Platform
  1. Windows
Hi, Appreciate any help as I am not an Excel guru.
I have a sheet that I use, column C is called "date Stopped", column D is "Date Released" and Column E is "Number of days stopped". I currently use the formula =TODAY()-C1 etc... that calculates the number of days in Column E. I want a formula that will still do this but once I enter a date into into Column D, Column E will then stop counting.
Any help is greatly appreciated.
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Hi,

welcome to the forum. Its not quite clear why you use today() to calculate the number of days, as that will keep counting as you say.

But if you want to find the difference between date in Col C and date in Col D, you could use simply this:

Book1
ABCDE
1
201/05/202415/05/202414
3
Sheet1
Cell Formulas
RangeFormula
E2E2=D2-C2


you need to manually enter dates in Col C and Col D of course ... any help ?

Rob
 
Upvote 0
Hi Rob, thanks for your reply. I use the Today() formula in column E as it's a way of keeping track on how many days (sometimes this is many months).
Is there anyway I can still have the cell to count the number of days but as soon as I enter a date into column D it stops counting and works out how many days between the date in column C and the date in Column D?
 
Upvote 0
ok, try this

Book1
BCDE
1
201/05/202415/05/202414
3
Sheet1
Cell Formulas
RangeFormula
E2E2=IF(D2="",TODAY()-C2,D2-C2)
 
Upvote 0
your welcome.

thanks for the feedback

Rob
 
Upvote 0

Forum statistics

Threads
1,216,730
Messages
6,132,398
Members
449,725
Latest member
Enero1

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