The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I have a following sample of the data set. I would like to be able to calculate the average based on a text column (please refer to the “Update” column).
From this data there are 6 total ‘updates’, 4 in W1 and 2 in W2, and the average should be 3 ‘updates’. How could I get this average value in Power BI?
Many thanks,
Hello @MartynasBI
You can use count and distinct count combination to achieve this.
DAX looks a below:
Average =
Var A = COUNT('Counting Weeks Data'[Update])
Var B = DISTINCTCOUNT('Counting Weeks Data'[Week])
Return
DIVIDE(A,B,BLANK())
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Hi @Kishore_KVN ,
Unfortunately it did not work. Apologies, my provided data might not have been fully representative of what I am working with. Please find the below data set example
The goal remains the same - to calculate the average updates per week.
Thanks
Can you please share the expected output as well!!!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
80 | |
77 | |
43 | |
39 |
User | Count |
---|---|
150 | |
117 | |
67 | |
64 | |
56 |