Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have Wrote Below Expression for one of my report but its not rolling to Quarters
=count({$<[NumValue]={1}>}distinct([Project ID]))
for example Nov =10
Dec=10
Jan=10
Its not showing 30 in Quarter.
Can some help guide me here
What is it showing when you use the expression?
Hi Sunny,
Thank you so much for your response.
example i have given.
I guess what happening here is
if we have project ID in Nov and Same Project ID it is in Dec and Jan when it rolls to quarter it is counting only once.
You want to count it 3 times? Try this
Sum(Aggr(Count({$<[NumValue] = {1}>} DISTINCT [Project ID]), MonthField))