Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi Team,
I have 3 tables Call, Chat and Email and in that i have a column name Overall Score in Average.
I'm trying to use this formula to calculate overall Average score but it is showing me incorrectly.
Could some help me
Colum name
Overall Score
76%
85%
Hi @Salman_99 ,
If I understand correctly, the issue is that you want to use the formula to calculate overall average score. Please try the following methods and check if they can solve your problem:
1.Create the simple Call, Chat, Email table.
2.Click on Modeling in the top menu, then click on New table.
3.Create a new table with unified Overall Score column. Enter the following DAX formula.
NewTable =
UNION (
SELECTCOLUMNS ( 'Call', "Overall Score", 'Call'[Overall Score] ),
SELECTCOLUMNS ( 'Email', "Overall Score", 'Email'[Overall Score] ),
SELECTCOLUMNS ( 'Chat', "Overall Score", 'Chat'[Overall Score] )
)
4.Create a measure to calculate the average of the Overall Score from the new table. Enter the following DAX formula.
AverageOverallScore =
AVERAGE ( NewTable[Overall Score] )
5.Move the Average Overall Score to the card visual.
If the above ones can’t help you get it working, could you please provide more raw data(exclude sensitive data) with Text format to make a deep troubleshooting? It would be helpful to find out the solution.
Looking forward to your replay.
Best Regards,
W
Call Table , Chat Table & Email table have column Overall score in %.
Weekly Wise Overall score
| Week 1 | 91.41% |
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 59 | |
| 31 | |
| 25 | |
| 25 |