メインコンテンツへスキップ

Excelにカウントダウンタイマーを挿入するにはどうすればよいですか?

限られた時間内に一部のデータを処理したい場合は、データワークシートにカウントダウンタイマーを挿入できます。時間のカウントダウンが終了すると、ポップアップダイアログが表示されて通知されます。 ここでは、Excelにカウントダウンタイマーを挿入するためのVBAコードを説明します。

Excelにカウントダウンタイマーを挿入する


矢印青い右バブル Excelにカウントダウンタイマーを挿入する

Excelでは、時間をカウントダウンすることはできませんが、次のVBAコードをコピーして、時間をカウントダウンすることができます。

1.セルを選択し、セルを右クリックして選択することにより、時間フォーマットとしてフォーマットします セルの書式設定、次にダイアログで、をクリックします Time そして、 13:30:55 セクションに リスト、最後にクリック OK このダイアログを終了します。 スクリーンショットを参照してください:

ドキュメントカウントダウンタイマー-1
doc-矢印
ドキュメントカウントダウンタイマー-2

2.カウントダウンする時間をフォーマットセルに入力します。 スクリーンショットを参照してください:

ドキュメントカウントダウンタイマー-5

3。 押す Altキー+ F11 開くキー アプリケーション向け Microsoft Visual Basic 窓。

4。 クリック インセット > モジュール 次に、次のVBAを新しいウィンドウにコピーします。

VBA:カウントダウンタイマー。

Dim gCount As Date
'Updateby20140925
Sub Timer()
    gCount = Now + TimeValue("00:00:01")
    Application.OnTime gCount, "ResetTime"
End Sub
Sub ResetTime()
Dim xRng As Range
Set xRng = Application.ActiveSheet.Range("E1")
xRng.Value = xRng.Value - TimeSerial(0, 0, 1)
If xRng.Value <= 0 Then
    MsgBox "Countdown complete."
    Exit Sub
End If
Call Timer
End Sub

先端:上記のコードのE1は、手順2で入力したタイムセルを示します。

5。 クリック ラン ボタンまたはプレス F5 カウントダウンタイマーを実行します。 これで時間がカウントダウンされます。

ドキュメントカウントダウンタイマー-3

6.カウントダウンが終了すると、ポップアップダイアログが表示されます。

ドキュメントカウントダウンタイマー-4

先端:ブックを閉じる以外に、実行中のカウントダウンを停止することはできません。

最高のオフィス生産性向上ツール

🤖 Kutools AI アシスタント: 以下に基づいてデータ分析に革命をもたらします。 インテリジェントな実行   |  コードを生成  |  カスタム数式の作成  |  データを分析してグラフを生成する  |  Kutools関数を呼び出す...
人気の機能: 重複を検索、強調表示、または識別する   |  空白行を削除する   |  データを失わずに列またはセルを結合する   |   数式なしのラウンド ...
スーパールックアップ: 複数の基準の VLookup    複数の値の VLookup  |   複数のシートにわたる VLookup   |   ファジールックアップ ....
詳細ドロップダウン リスト: ドロップダウンリストを素早く作成する   |  依存関係のドロップダウン リスト   |  複数選択のドロップダウンリスト ....
列マネージャー: 特定の数の列を追加する  |  列の移動  |  Toggle 非表示列の表示ステータス  |  範囲と列の比較 ...
注目の機能: グリッドフォーカス   |  デザインビュー   |   ビッグフォーミュラバー    ワークブックとシートマネージャー   |  リソースライブラリ (自動テキスト)   |  日付ピッカー   |  ワークシートを組み合わせる   |  セルの暗号化/復号化    リストごとにメールを送信する   |  スーパーフィルター   |   特殊フィルター (太字/斜体/取り消し線をフィルター...) ...
上位 15 のツールセット12 テキスト ツール (テキストを追加, 文字を削除する、...)   |   50+ チャート 種類 (ガントチャート、...)   |   40+ 実用的 (誕生日に基づいて年齢を計算する、...)   |   19 挿入 ツール (QRコードを挿入, パスから画像を挿入、...)   |   12 変換 ツール (数字から言葉へ, 通貨の換算、...)   |   7 マージ&スプリット ツール (高度な結合行, 分割セル、...)   |   ... もっと

Kutools for Excel で Excel スキルを強化し、これまでにない効率を体験してください。 Kutools for Excelは、生産性を向上させ、時間を節約するための300以上の高度な機能を提供します。  最も必要な機能を入手するにはここをクリックしてください...

説明


Officeタブは、タブ付きのインターフェイスをOfficeにもたらし、作​​業をはるかに簡単にします

  • Word、Excel、PowerPointでタブ付きの編集と読み取りを有効にする、パブリッシャー、アクセス、Visioおよびプロジェクト。
  • 新しいウィンドウではなく、同じウィンドウの新しいタブで複数のドキュメントを開いて作成します。
  • 生産性を 50% 向上させ、毎日何百回もマウス クリックを減らすことができます!
Comments (15)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Ячейка прописана правильно. В чем причина неработоспособности?
У меня он должен встать в ячейку R3. Строка выглядит так: Set xRng = Application.ActiveSheet.Range("R3") но ошибка все равно есть: Run time error 1004.
Что может быть не так?
This comment was minimized by the moderator on the site
Hi, you can try to check Enable VBA macros option in the Trust Center before running the code.
Click File > Options, in the Excel Options window, select Trust Center from left pane, then go to the Trust Center windown, select Macro Settings, and find this option Enable VBA macros , check it, and click OK > OK.
https://www.extendoffice.com/images/stories/comments/sun-comment/doc-vba-setting.png
This comment was minimized by the moderator on the site
After running the code it gives error on line

xRng.Value = xRng.Value - TimeSerial(0, 0, 5)

Run-time error '1004':
Application-defined or object-defined error
This comment was minimized by the moderator on the site
Hi, MAB, you should make sure that the cell reference in code Range("E1") must be the same with the cell reference that entered the time. Please see the screenshot, the cell A1 contains time, but in the code is B1, then the error pops.
This comment was minimized by the moderator on the site
Hola, tengo un problema con esta programación en donde el temporizador avanza en 2 segundos y no 1, que puedo hacer??
This comment was minimized by the moderator on the site
No entiendo cómo tengo que solucionar para que el cronómetro mno se pare cuando introduzco un valor. Si se para al trabajar en el excel, para que quiero un cronómetro y paraquesirve el boton parar? Gracias
This comment was minimized by the moderator on the site
hi the timer is running now. the problem is it stops automatically when using other workbooks. how can i keep it running?
This comment was minimized by the moderator on the site
i want to get about 100 down time readings to my excel sheet.please help me. impossible to write the codes for i2c circuit. i don't want led display. plz help me
This comment was minimized by the moderator on the site
GOOD DAY GUYS
Please a i need to create a timer on my Excel sheet in form that it will be a count down to a particular for example 45 days every 5 days it give a reminder on the sheet with a specific color for each countdown. i need it asap.
This comment was minimized by the moderator on the site
To stop the timer when you enter values into certain cells, you would use "Worksheet_Change", just include the range you want to listen to, you'll also need to create a global boolean so when you change anything within a cell range, it would set this boolean to false, so the next time it jumps into the "Time" sub procedure, it would instead check to see if the boolean is false, if you add "If TimerActive = False Then Exit Sub", at the beginning of the "Timer" sub, it will exit if that boolean returns false.




Then inside "Worksheet_Change" you will want to add "TimerActive = True" at the beginning of the code, and something like the following code anywhere.

If Not Intersect(Target, Range("B2:C57")) Is Nothing Then
TimerActive = False
End If
This comment was minimized by the moderator on the site
This did not explain how the timer starts, does it start as soon as you open the sheet? I am looking to see if when I add a value of 100 to say cell "A1" a countdown timer will start on cell "G2"(maybe blink or turn red the last 30seconds to show urgency) and I want it to stop when I enter a value in a range of cells (B2:C57) or if not of no value was entered in those cells stop it by clicking on cell "A1" again or clicking right on the count down on cell "G2", I would also like to get the results on how long it took to enter a value on the range cells B2:C57 using the difference between the start time and the stop time on a cell collating to the range cells, like D2. Not sure if this all make sense but I would really like some help with it. The idea is when someone takes a call the mark down on the sheet the amount on the account and a countdown starts so they know how long they are on the call. If they take a payment on the amount on the account they would add it to another cell and the sheet will then add how long it took them to get that payment in yet another cell and the process will go down the line every time they take a new call. But only one cell would start the process every time. I already have an VBA that enters the users name and when the sheet is full they can click on a send button and it will email it to me with a subject and date and delete all the entires so they can start again the next day. I would love to just add the above right into this existing VBA if possible, that way I don't have to add another module. Can someone Help me with this, walk me step by step? My VBA or any program skills are very limited.
This comment was minimized by the moderator on the site
You need to call the Sub procedure "Timer", this is usually done by calling it within another Sub/Function if you want the countdown to begin after you enter a value into cell "A1" and stop when you enter data into another range, then you need to listen for a change to those cells and create a boolean for the Timer sub procedure, so it knows when to stop, to do this create a "Worksheet_Change" sub procedure, this will listen to the worksheet for any changes, we then create a whitelist of ranges that will run our code.


Sub Worksheet_Change(ByVal Target As Range)

'Boolean default value
Dim TimerActive As Boolean: TimerActive = True

'This is where we call the Timer and get our value set in G2
If Not Intersect(Target, Range("A1")) Is Nothing Then

If IsEmpty(Target) Then TimerActive = False: Exit Sub

On Error GoTo Errr:

Dim i As Integer: i = Target

Me.Range("G2").Value = i

Call Timer

ElseIf Not Intersect(Target, Range("B2:C57")) Is Nothing Then

TimerActive = False

If IsEmpty(Target) Then Exit Sub

'Add more code here if needed

End If

'Error processing
Exit Sub
Errr:
MsgBox "A1 Must be integer"

End Sub

I also included the ability to delete the value in A1, which will also stop the countdown, now, in the "Timer" sub procedure, at the beginning create an if statement to check whether or not our boolean "TimerActive" equals False, if it does then we need to Exit Sub. To change the Timers colour when counting down, you need to edit the "ResetTimer" sub procedure, and add an if statement, similar to the one that already exists, "If xRng <= 30", within that statement we add the colour we want to use "xRng.Font.Color = vbRed" you can also change the colour using "xRng.Font.Color = RGB(0,0,0)", do the same in the "Timer" procedure to reset the colour, do this before the boolean if statement, so that the colour always reverts back to its default, even when manually stopped.
This comment was minimized by the moderator on the site
Hello Jose, I noticed the author did not respond to your comment, I've just recently discovered his post and thought I'd help you if you still need it. To trigger the timer, you need to call the sub procedure, so let us assume you have a sub in your worksheet that checks for any changes to cell A1, example:


########
Sub Worksheet_Change(ByVal Target As Range)


Dim rInt As Range: Set rInt = Intersect(Target, Range("A1"))


If Not rInt Is Nothing Then


On Error GoTo Err:
Dim i As Integer: i = Me.Range("A1").Value


If not IsEmpty(vCell) Then
Call Timer <<< This is where you call the timer
End If


End If
Exit Sub
Err:
MsgBox "Integer Only"
End Sub
########


The "Timer" Sub procedure is used to set the event, we basically want this to run every 1 second in the future which is why we use now + TimeValue("00:00:01"), if you wanted to update the timer in your cell every two seconds or every minute, you adjust the TimeValue accordingly.


The "ResetTime" sub procedure is where we do all the heavy lifting, in this sub procedure, if you want to change the colour of the timer to red, once it reaches 30 seconds, you can do this by adding a simple if statement, just like the one that already exists within the procedure.


If xRng.Value <= 30 Then
xRng.Font.Color = vbRed
End If
This comment was minimized by the moderator on the site
hello, how can i do countdown for more than 1 value?
There are no comments posted here yet
Load More
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations