How Can I apply a filter when I just always the actual month?
In my report has month 3 and 4 but I just number 4 and when change to May also need update.
by using these 2 formulas.
DateTime Functions | Alteryx Help
Like @PangHC suggested:
DateTimeMonth([Data Inicio]) = DateTimeMonth(DateTimeNow())
For just two months, the above solution will work. The same months from different years will also evaluate to True. If this is a problem, you could use,
DateTimeTrim([Data Inicio], 'month') = DateTimeFirstOfMonth()