# Can I display countdown timer in a column?

**URL:** https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528
**Category:** Ask for Help
**Created:** [February 15, 2022, 6:20pm UTC](https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528 "2022-02-15T18:20:12Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![remoteworker.id](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/remoteworker.id/32/36396_2.png) [@remoteworker.id](https://community.glideapps.com/u/remoteworker.id)
#### Post date: [February 15, 2022, 6:20pm UTC](https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528/1 "2022-02-15T18:20:12Z")

</div>

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/a/0/a0759c7698c3e6d47be0d7f2e01d4a2f78972527.jpeg)

Sorry, as it is in Bahasa Indonesia: but you can see that there is the number 3 there. This is my last feature for my app before release! So happy!

What I want is to start a 3 day countdown timer for member who want to join with discount price. All steps already done, but I don’t know whether I can display countdown timer in Glideapps.

Has glide already support this feature?

Thanks!

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [February 15, 2022, 7:25pm UTC](https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528/2 "2022-02-15T19:25:25Z")

</div>

You can use a math column to subtract Now (current date and time) from the end date and time. That will give you the difference in the number of days. Then you can use a template column to join that number with the other text that you want to display. The calculation updates every 10 seconds.

---

<div class="post-metadata">

### Author: ![Uzo](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/uzo/32/22639_2.png) [@Uzo](https://community.glideapps.com/u/Uzo)
#### Post date: [February 15, 2022, 7:33pm UTC](https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528/3 "2022-02-15T19:33:49Z")

</div>

> **[Delay Action - DEMO](https://delay-action-demo.glideapp.io/)**
>
> delay actions by blocking screen for a specific time

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [February 16, 2022, 1:11pm UTC](https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528/4 "2022-02-16T13:11:08Z")

</div>

> [@Custom countdown](https://community.glideapps.com/t/custom-countdown/38574):
>
> Taking the idea from this thread. [https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528/1](https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528/1) I created a countdown “component” using a guide from w3schools, then plugged it in Experimental Code column. Demo: [https://media.lowcode.agency/kpu4x2eJ](https://media.lowcode.agency/kpu4x2eJ) Link to use: https://thinhdinhlca.github.io/custom-countdown/ Custom fields: Time (you can reference a date/time column or write it out like I did in the video) Font weight Text align Font size Hope it helps your use …

You can try this.

---

<div class="post-metadata">

### Author: ![remoteworker.id](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/remoteworker.id/32/36396_2.png) [@remoteworker.id](https://community.glideapps.com/u/remoteworker.id)
#### Post date: [February 20, 2022, 10:46am UTC](https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528/5 "2022-02-20T10:46:07Z")

</div>

Thanks! Works as instructed!  
I make a 3days in advance for timer: but is there anyway I can format that 71 hours into, let say … 2days:23h:17mins?

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/6/a/6a9ad1dd2551d5444dd2117928311cb257bb803c.jpeg)

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [February 26, 2022, 9:27pm UTC](https://community.glideapps.com/t/can-i-display-countdown-timer-in-a-column/38528/6 "2022-02-26T21:27:03Z")

</div>

To do it exactly how you want it, you would have to do some math for that.

You would have to do something like this. You could probably simplify it a little bit, but basically you need to split apart the days, hours, and minutes, and then put them back together in a template column.

> [@Time duration not presenting correctly in glide chart stopwatch](https://community.glideapps.com/t/time-duration-not-presenting-correctly-in-glide-chart/24014/6):
>
> I took it a step further and included Days as well. You can exclude it if you don’t need it. It’s a little involved, but I’ll explain the best I can. Here is my results: First we have the Duration column, which is obvious and what you already have. Next we have the Days column: FLOOR(D)/100 This is simply taking the duration and dropping off the decimals. The division by 100 will be explained later. Next we have the Hours column: FLOOR(MOD(D,1)\*24)/100 Th…
