View for 'This month?"

Is there any way to create a view that just displays results from the current month? Assuming it's based on a date property of the object type being viewed.

 Thx

Parents
  • You have basically two options, depending on which suits the use case better:

    • Show results from the past 30 days: "DaysFrom(<date property>) < 30" in the view filter. This usually stretches into the previous month as well, depending on the current date.
    • Group by year and month: group the objects by the date property using "YearAndMonth()" in the grouping level. This way the user can drill down to the current month when accessing the view.

    If these two are combined in the same view, you would get a maximum of two virtual folders of which one if the current month.

Reply
  • You have basically two options, depending on which suits the use case better:

    • Show results from the past 30 days: "DaysFrom(<date property>) < 30" in the view filter. This usually stretches into the previous month as well, depending on the current date.
    • Group by year and month: group the objects by the date property using "YearAndMonth()" in the grouping level. This way the user can drill down to the current month when accessing the view.

    If these two are combined in the same view, you would get a maximum of two virtual folders of which one if the current month.

Children