Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello,
I want to create a measure with filters and one on the values.
I want to calculate the numbers of cases where the field 'Dossiers'[L=comment] is not empty
Calculate( Distinctcount('dossiers'[Case]) --> I use distinctcount because I have several cases with the same number.
but how to insert the rest
can you help me ?
Thank you
Solved! Go to Solution.
Hi @Milozebre,
Please try this:
Measure=CALCULATE(DISTINCTCOUNT('Dossiers'[Case]),FILTER('Dossiers','Dossiers'[L=comment]<>BLANK()))
Regards,
Yuliana Gu
Hi @Milozebre,
Please try this:
Measure=CALCULATE(DISTINCTCOUNT('Dossiers'[Case]),FILTER('Dossiers','Dossiers'[L=comment]<>BLANK()))
Regards,
Yuliana Gu
Hello,
First Merry Christmas 🙂
Sorry for the late response.
Thank you for your help