Skip to main content
Question

A filter that doesn't bring me the current month

  • May 3, 2023
  • 2 replies
  • 5 views

I need to filter documents by taking the current month.

 

Ex.: Filter documents from the year 2023 taking the month of MAY(Current)

2 replies

janpeter.van.d
Level 12
Forum|alt.badge.img+26

Hi @douglas.henri,

 

This should be something like this:

 

FILTER ROUND_MONTH(table.datetime_column) != ROUND_MONTH( TODAY() );

 

Best regards,

Jan-peter


Many thanks for your help as always Jan-Peter !