# Interactive Table filter

**URL:** https://community.tulip.co/t/interactive-table-filter/7662
**Category:** General
**Created:** [February 24, 2023, 10:02am UTC](https://community.tulip.co/t/interactive-table-filter/7662 "2023-02-24T10:02:29Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![MTT](https://avatars.discourse-cdn.com/v4/letter/m/7c8e57/32.png) [@MTT](https://community.tulip.co/u/MTT)
#### Post date: [February 24, 2023, 10:02am UTC](https://community.tulip.co/t/interactive-table-filter/7662/1 "2023-02-24T10:02:29Z")

</div>

Hi,

I have a question regarding the interactive table at tulip app.  
Is it possible to do date filter from Tulip Player app? like i want to filter the date from certain period.

**But not from the tulip Editor page.**

![image](https://us1.discourse-cdn.com/flex020/uploads/agilemfg/original/2X/f/fe30b88f406111d7d874af0ccbbcef1edc3a76c8.png)

---

<div class="post-metadata">

### Author: ![MTT](https://avatars.discourse-cdn.com/v4/letter/m/7c8e57/32.png) [@MTT](https://community.tulip.co/u/MTT)
#### Post date: [February 27, 2023, 1:03am UTC](https://community.tulip.co/t/interactive-table-filter/7662/2 "2023-02-27T01:03:14Z")

</div>

anyone can help with this issue?

---

<div class="post-metadata">

### Author: ![thorsten.langner](https://avatars.discourse-cdn.com/v4/letter/t/4bbf92/32.png) [@thorsten.langner](https://community.tulip.co/u/thorsten.langner)
#### Post date: [February 27, 2023, 12:36pm UTC](https://community.tulip.co/t/interactive-table-filter/7662/3 "2023-02-27T12:36:53Z")

</div>

- crate a “from\_date” and a “to\_date” variable.
- “to\_date” should be default by 12/31/9999 and from should be empty or set to today by app logic (as you need).
- make one date input field each
- make a variable filter for the table referencing on these two variables:

 ![image](https://us1.discourse-cdn.com/flex020/uploads/agilemfg/original/2X/3/3809de0f64dce028d8c9897cf3c9d3a5a1640b33.png)

The result in App looks something like this:

 ![image](https://us1.discourse-cdn.com/flex020/uploads/agilemfg/original/2X/1/15c611d9cb3e206e2a0ca1ff1e57b0ec7927e8fc.png)

When you change the from and to inputs, the table will filter based on that data…

---

<div class="post-metadata">

### Author: ![John](https://sea2.discourse-cdn.com/flex020/user_avatar/community.tulip.co/john/32/4971_2.png) [@John](https://community.tulip.co/u/John)
#### Post date: [February 27, 2023, 7:27pm UTC](https://community.tulip.co/t/interactive-table-filter/7662/4 "2023-02-27T19:27:39Z")

</div>

@thorsten.langner’s response will get you what you’re looking for. I would also add that you can hardcode those values using the static value option in the filter, and you can build filters that update for a rolling timeframe (last week, last month, today) using the same basic framework. More detail can be found [here](https://university.tulip.co/learn/courses/35/tulip-for-dashboard-builders).

 ![Screenshot 2023-02-27 at 2.23.22 PM](https://us1.discourse-cdn.com/flex020/uploads/agilemfg/original/2X/4/4ba3e5624e7bd224dcde195985074ca8316a452d.png)

---

<div class="post-metadata">

### Author: ![MTT](https://avatars.discourse-cdn.com/v4/letter/m/7c8e57/32.png) [@MTT](https://community.tulip.co/u/MTT)
#### Post date: [February 28, 2023, 3:41am UTC](https://community.tulip.co/t/interactive-table-filter/7662/5 "2023-02-28T03:41:07Z")

</div>

Thanks for the help!
