Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to count distinct no. of PersonID if Created Date = Last Login Date. Can anyone help me with the syntax here.
Also I have created a Calendar based on the created date so that the count should change according to the month selected from the calendar.
Thanks,
H
Hi,
Check with this
=Sum(Aggr(if(Created Date = Last Login Date, 1, 0), Person))
Celambarasan
Hi,
Try this,
=Sum(Aggr(if([Created Date] = [Last Login Date], 1, 0), PersonID))
Hope it helps
Its giving me incorrect COUNT of personID.
H
Try this:
count({<[Created Date] = {"=[Last Login Date]"}>}PersonID)
Make sure both dates are with the same type