Dear @MIKE KOCH,
Thank you for posting your question in the Microsoft Q&A forum. I understand you want a resettable countdown counter in Excel, and you prefer something simple without a real timer. I know how useful this is when you just need to track remaining items quickly.
At the moment, Excel doesn’t include a built‑in template for this type of counter. However, you can create one easily using a starting value in a cell, and if needed, a simple button to decrease or reset the number.
Here is a simple step‑by‑step method to build the counter:
Step 1: Create the counter
- In cell A1, type your starting number (example: 100).
- In cell B1, link it using: =A1
Step 2: Add a button to decrease the counter (optional)
- Go to Insert > Shapes, choose a rectangle, type “Decrease”.
- Right‑click > Assign Macro > New.
- Use the code below:
Sub DecreaseCounter()
Range("A1").Value = Range("A1").Value - 1
End Sub
Step 3: Add a Reset button (optional)
- Put your starting value (ex: 100) in A3.
- Insert another shape > label it Reset.
- Assign this macro:
Sub ResetCounter()
Range("A1").Value = Range("A3").Value
End Sub
Please understand that our initial response does not always resolve the issue immediately. However, with your help and more detailed information, we can work together to find a solution.
I truly appreciate your patience and understanding. If you have any further questions or need further clarification, please feel free to reach out. I'm looking forward to hearing from you.
Thank you for your cooperation.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.