Forum Discussion
Mahmoodul
6 years agoHelper I
Please Convert this Tableau LOD function into Power Bi DAX
{ FIXED [Report Date],[Iw Oow Flag],[Client_Type],[Open Closed] : COUNTD([Sb Contractcall])}
- 6 years ago
You can give a try to below Dax:
=Calculate(DistinctCount(Table[Sb Contractcall]), AllExcept(Table, Table[Report Date],Table[Iw Oow Flag],Table[Client_Type],Table[Open Closed))
- Anonymous6 years ago
Hi Mahmoodul ,
I think you might use DISTINCTCOUNT() instead of COUNT() in the formula above.
Best Regards,
Jay
- 6 years ago
Anonymous , Thanks for this catch.