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.
I have a very large dataset which contains Companies, Users (related to these companies by email-domain) and a hit-count. I need to calculate a measure to have the number of hits in relation to the number of users per company.
Is the measure simply a Count(Hits)/Count(User)?? The numbers seem strange to me....
Solved! Go to Solution.
AverageX(Summarize(Table, Table[User], "_1",Count(Table[Hits]) ),[_1])
or
AverageX(Summarize(Table, Table[Company], Table[User], "_1",Count(Table[Hits]) ),[_1])
AverageX(Summarize(Table, Table[User], "_1",Count(Table[Hits]) ),[_1])
or
AverageX(Summarize(Table, Table[Company], Table[User], "_1",Count(Table[Hits]) ),[_1])
Thank you, I will try to go from here on my own (because the colums are in different tables)