Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Its really not a complicated thing to do, and there are many versions of what i see people putting up, but what in your opinion, if you are for example creating a measure and you only want to return data for the current month.
is this the most elegant way to do it?
calculate(sum(measure), filter(date, month(now()) = month(date[date])
and year(now()) = year(date[date]))
Proud to be a Super User!
Though not yet proficient, you may try the following boolean expression.
Table1[date] >= DATE ( YEAR ( NOW () ), MONTH ( NOW () ), 1 ) && Table1[date] < DATE ( YEAR ( NOW () ), MONTH ( NOW () ) + 1, 1 )