Cathy Liu
04/17/2026, 1:58 AMplayer_id where joined_date falls within that month
• If the filter is this month, count distinct player_id where joined_date is after the start of the month
What’s the best way to set this up in GoodData?kapa.ai
04/17/2026, 1:58 AMCathy Liu
04/20/2026, 1:45 AMMauricio Cabezas
04/20/2026, 8:44 AMSELECT COUNT({label/player_id})
Connect the dashboard date filter to your joined_date dimension, and GoodData will automatically scope the count to the selected period (Last Month, This Month, etc.). No extra MAQL needed.
If you want the metric to respond only to the date filter (ignoring any other dashboard filters like region or game type), you can use:
SELECT COUNT({label/player_id}) WITHOUT PARENT FILTER EXCEPT {joined_date}
This drops all other parent filters except joined_date, so the count stays date-scoped regardless of what else is filtered on the dashboard.
I would suggest to have a look to this documentation.