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.
How can I count the average time a client will appear in a list.
For example, in the below list, the average number of times a client appears is 2 (Client 1 appears twice, Client 2 Once & Client 3 three times)
Client 1
Client 2
Client 3
Client 1
Client3
Client 3
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new measure.
Average times a client appears measure: =
AVERAGEX (
ADDCOLUMNS (
VALUES ( Data[Client] ),
"@count", CALCULATE ( COUNTROWS ( Data ) )
),
[@count]
)
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new measure.
Average times a client appears measure: =
AVERAGEX (
ADDCOLUMNS (
VALUES ( Data[Client] ),
"@count", CALCULATE ( COUNTROWS ( Data ) )
),
[@count]
)