The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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)
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
7 |