Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to write an expression equation for:
Select the sum of (full-time employees) for the most recent selected month
Amber,
You need to create a new variable:
=Month(max(DateField))
And add in set analysis:
=sum({<DateField = $(vMaxMonth)>} sales)
Amber,
You need to create a new variable:
=Month(max(DateField))
And add in set analysis:
=sum({<DateField = $(vMaxMonth)>} sales)
Create variable 'vMaxMonth'
=MonthStart(Max([DateField]))
Use this Expression
sum({<[DateField]={">=$(=$(vMaxMonth))"}>}Employees)