
Hi all, I have a table which contains associate names and their billable status. Some associates are billable on two or more projects. I created a calc field to display billable associates. But some associates are billable on two or more projects. So I want to display only distinct count of billable associates. Can someone help?
Here you can see Billable is Showing 20 whereas it should be 19 because one associates is billable on 2 project. Here's the calculation I am using
IF ([Billable])="Yes" THEn [Billable] END
I tried using COUNTD() but it gives error.
Thanks,
Suri

Hello Suri,
If that is a separate Dimension, than why not just reference it in the calc
COUNTD(IF ([Billable])="Yes" THEN [Billable Associates] END)
That will give you the COUNTD of Billable Associates when [Billable] = 'Yes'
Does this help?
Regards,
Rody