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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

DAX formula Help averages

Hi All,

I am quite new to Power Bi and don't have any previous experience with DAX formulas so I am hoping someone can help me.

I am trying to build a Line and Clustered Column Chart where the column chart is displaying sales of pre-defined "target accounts". On the line value I am trying to display an average of sales of "all accounts' at product level rather than average sales at account level. I believe this can be done through DAX but not sure how to proceed.

I hope i have explained this clearly and someone has advice on this topic? 

 
 
3 REPLIES 3
Anonymous
Not applicable

HI @Anonymous,

How may fields are you used on the shared axis fields? Please add them(except your account field) to below formula and package with values function, link with 'delimiter' to replace 'values(sheet1[Shared axis])' part:

Measure =
CALCULATE (
    AVERAGE ( Sheet1[Sales Amount USD BR] ),
    ALLSELECTED ( Sheet1 ),
    VALUES ( Sheet1[Shareed axis] ),
    VALUES ( Sheet1[TPG] )
)

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

HI @Anonymous,

How your chart designed? Since we not so clear for your data structures, can you please share more details information to help us clarify your scenario?

How to Get Your Question Answered Quickly 

In addition, you can also try to use the following measure formula if it meets for your requirements. (it summary current filter table records and group by columns series)

AVG =
CALCULATE (
    AVERAGE ( Table[Amount] ),
    ALLSELECTED ( Table ),
    VALUES ( Table[ColumnSeries] )
)

Regards,

Xiaoxin Sheng

amitchandak
Super User
Super User

Can you share sample data and sample output. On excel, if needed

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.