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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

DAX - Return average value in table (or chart) of new measure

Hello everyone,

 

I'm using DAX to create a new measure to calculate the percent based on the formula below:

Capture.PNG

The result return of each individual is correct. However, I want to show the AVERAGE in total, not SUM. My expectation is the table (or chart) will show the average result of 95.7%, instead of 99.92% 

But, I can't find the solution to change it (try to click to Values box to change). Anyone can help me?
Capture_1.PNG

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @Anonymous ,

You can create another new measure as below and check and check whether it can get your expected result.

Measure =
IF (
    ISINSCOPE ( 'Master1'[Chi tieu KPI] ),
    [Ty le% chinh xac cua du lieu dau vao],
    AVERAGEX (
        VALUES ( 'Master1'[Chi tieu KPI] ),
        [Ty le% chinh xac cua du lieu dau vao]
    )
)

If the above ones can't work, please provide some sample data from the Master1 table with Text format and your expected result with calculation logic and special example screenshots. It is better if you can share a simplified pbix file with me. Thank you. You can refer the following thread to upload your file in the community:

How to upload PBI in Community

Best Regards

View solution in original post

Anonymous
Not applicable

Hi @Anonymous ,

Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.

Best Regards

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.

Best Regards

Anonymous
Not applicable

Hi @Anonymous ,

You can create another new measure as below and check and check whether it can get your expected result.

Measure =
IF (
    ISINSCOPE ( 'Master1'[Chi tieu KPI] ),
    [Ty le% chinh xac cua du lieu dau vao],
    AVERAGEX (
        VALUES ( 'Master1'[Chi tieu KPI] ),
        [Ty le% chinh xac cua du lieu dau vao]
    )
)

If the above ones can't work, please provide some sample data from the Master1 table with Text format and your expected result with calculation logic and special example screenshots. It is better if you can share a simplified pbix file with me. Thank you. You can refer the following thread to upload your file in the community:

How to upload PBI in Community

Best Regards

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors