Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
In matrix table I have measure (DISTINCTCOUNT) that show data per day. Now I wish to have card to show average value from this days.
for now, DISTINCT_COUNT mesaure is simple DISTINCTCOUNT(table[ID])
Solved! Go to Solution.
[Daily Average] =
AVERAGEX(
// Change this ugly name. You're not
// going to expose this monster to your
// users, right?
DISTINCT( T[vt_date_c_just_date] ),
[Distinct_Count]
)
[Daily Average] =
AVERAGEX(
// Change this ugly name. You're not
// going to expose this monster to your
// users, right?
DISTINCT( T[vt_date_c_just_date] ),
[Distinct_Count]
)