The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
{ FIXED [Report Date],[Iw Oow Flag],[Client_Type],[Open Closed] : COUNTD([Sb Contractcall])}
Solved! Go to Solution.
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))
Hi @Mahmoodul ,
I think you might use DISTINCTCOUNT() instead of COUNT() in the formula above.
Best Regards,
Jay
@Anonymous , Thanks for this catch.
Hi @Mahmoodul ,
I think you might use DISTINCTCOUNT() instead of COUNT() in the formula above.
Best Regards,
Jay
@Anonymous , Thanks for this catch.
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))