Forum Discussion
kristi145
Oct 24, 2024Copper Contributor
IS THERE A WAY TO AUTO COUNT THE DAYS IN B EVERYTIME IT IS OPENED?
FOR EXAMPLE, IF I OPEN IT 3 DAYS FROM NOW COLUMN B WOULD READ 484?
kristi145
Oct 24, 2024Copper Contributor
So, I added a column with the starting date, but I need the days in the column C to change, how do I do that? I need them tomorrow to show 482. I'm sorry If I am not understanding.
HansVogelaar
Oct 24, 2024MVP
In C2, enter the formula
=IF(B2="", "", TODAY()-B2)
Apply General as number format to C2. Then fill or copy to the cells below.
The result will automatically be updated each day, because TODAY() always returns the current date.