Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I have a datetime column and No column with repeated values in both. I need to calculate distinct count of No per day.
Here is my sample data
So I need Distinct count of bomno column with respect to date 23-06-2021.
Thanks in Advance...
Solved! Go to Solution.
Hi @Anonymous ,
You can use something like:
measure = CALCULATE(DISTINCTCOUNT(Table[bomno]),FILTER(ALL(Table),Table[lastdate].[Date] = Date(2021,6,23)))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hi @Anonymous ,
You can use something like:
measure = CALCULATE(DISTINCTCOUNT(Table[bomno]),FILTER(ALL(Table),Table[lastdate].[Date] = Date(2021,6,23)))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai