Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
sum({<month={'*'}>}sales)
what it gives ? 8 is for ignoring all?
or all selection?
month={'*'} means that the expression will take all month values that are not null into consideration even if the user selected specific months. The user selection of the month field is ignored by the expression.
In this case will bring all selections of the field month.
To ignore selections, use just month=
Regards,
Gabriel
month={'*'} means that the expression will take all month values that are not null into consideration even if the user selected specific months. The user selection of the month field is ignored by the expression.