Date Range Filter for Dashboard

faraaz
New Member

Hi All,

Iโ€™m looking some expression which filters date range from past 30 days, which means I want to show a graph on the dashboard which has last 30 days data and in my data structure I have only one column for the date range called โ€œDATEโ€.
So the start date and end date will be from one column only but the date should automatically pick todayโ€™s date and past 30 days.

Please let me know if there is any expression for this use case ?

Thanks,
Faraaz Shaik

Solved Solved
0 3 2,175
1 ACCEPTED SOLUTION

For filtering data from the past 30 days from today, maybe something like:

FILTER(
  "YourTableName",
  ([DATE] >= (TODAY() - 31))
)

View solution in original post

3 REPLIES 3

For filtering data from the past 30 days from today, maybe something like:

FILTER(
  "YourTableName",
  ([DATE] >= (TODAY() - 31))
)

Thanks, Heru. filter works perfect !!

Steve
Platinum 4
Platinum 4

To show a graph, youโ€™ll need your data in a table or slice. To filter the data so you only have the last 30 days, youโ€™ll need a slice. Use the sliceโ€™s row filter expression to choose which rows to include in the slice. The row filter expression will look similar to ([DATE] >= (TODAY() - 31)), as @Heru suggested.

See also:


Top Labels in this Space