I need to count how many items/rows where created in the past months are. general_report is the table name and [created] the date column format is in ormal dd/mm/yyyy hh:mm:ss as you can see here
For the goal, I have created this measure:
_created_last_month = COUNTROWS(FILTER(general_report, [Created] >= ( TODAY() - MONTH(TODAY() ) )))
I was also considering about creating a custom column which makes the same computation and then count how many items are valid in that column, with no success