Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to calculate the sum of the current month:
Variable vCurrent_Month:
=Month(Today())
Sum({< Month_date = {"$(vCurrent_Month)"}>} Visitors)
Hi Gustavo,
Please use like below
Variable vCurrent_Month:
Month(Today())
Remove "=" before Month().
sum({<Month_date ={'$(=$(vCurrent_Month))'}>}Visitors)
Regards,
Akshaya
=Month(Today()) is just going to give you 'May' as a result.
=Date(Today(),'MMM-YYYY') will give you the current month, just match the format string to month_Datesyntax. The syntax is val
Edit: I've seen a lot of posts here recommending new syntax. The syntax is valid, I worked it on my device. It's the output of the variable that's not matching whats in your dimension.
Andrew
Hi Gustavo,
Please use like below
Variable vCurrent_Month:
Month(Today())
Remove "=" before Month().
sum({<Month_date ={'$(=$(vCurrent_Month))'}>}Visitors)
Regards,
Akshaya
You may use Num(Month(Today())) = 5
you can use the below expression:
Sum( {< Month_date = {"=Month(Today())"} >} Visitors )
Hope it helps.