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])}
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
Anonymous , Thanks for this catch.
3 Replies
- Tahreem24Super User
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))
- AnonymousNot applicable
Hi Mahmoodul ,
I think you might use DISTINCTCOUNT() instead of COUNT() in the formula above.
Best Regards,
Jay
- Tahreem24Super User
Anonymous , Thanks for this catch.