resettable countdown counter without timer

MIKE KOCH 0 Reputation points
2026-01-19T22:42:45.08+00:00

I need a resettable countdown counter to monitor items.  Just the counter, no timer needed.  Does excel have a template that can do that?

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Q&A Assist
    2026-01-19T22:42:49.5766667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Excel does not have a built-in template specifically for a resettable countdown counter without a timer. However, you can create a simple counter using Excel's basic functionalities. You can use a cell to display the count and provide buttons (using macros) to increment or reset the counter as needed. This would require some basic knowledge of Excel formulas and possibly VBA for the buttons to function properly.

    If you need a more specific solution or template, you might want to explore Excel's template gallery or community forums for user-created templates that might suit your needs.

    1 person found this answer helpful.
    0 comments No comments

  2. AlexDN 10,105 Reputation points Microsoft External Staff Moderator
    2026-01-20T01:28:45.15+00:00

    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.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.