Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
MartynasBI
Frequent Visitor

Calculating average based on a text column

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).

MartynasBI_0-1686748351098.png

 

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,

3 REPLIES 3
Kishore_KVN
Solution Sage
Solution Sage

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

MartynasBI_0-1686811301433.png

 

The goal remains the same - to calculate the average updates per week.

 

Thanks

Can you please share the expected output as well!!!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.