Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to count the employees who have joined before 15/5/2017
what expression should be used for measure.
Hi,
Try
Count({<YourFieldDate={"<=$(=Date('15/5/2017'))"}>}employees )
May be like this
Count(DISTINT {<DateField = {"$(='<=' & Date(MakeDate(2017, 5, 15), 'D/M/YYYY'))"}>} EmpID)
Something like
count(distinct if(JoinedDate<'15/5/2017', Employee))
Hello! You could use something like:
Count({<YourDateField={'<15/5/2017'}>}Distinct YourEmployeesField)
P.S. Seems like a lot of people were faster than me