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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
basirve
Helper III
Helper III

Multiple Measures need to show a table visual

 

Dear Expers,

I have table1 contains the cliumns (ReportsToName,AgentName,Tier), Metrics are defined from different measure from different tables, So i would like to bring all measure into one table visual, kindly help me to achive the requirment.

 

image.png

 

Thnaks & Regards,

Venkat

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@basirve , you have to create a table like

 

new Table =
union(
summarize('Table','Table'[ReportsToName], 'Table'[AgentName], 'Table'[Tier],"Measure", "AHT", "Score", [AHT Score], "Target" ,[AHT Target]),
summarize('Table','Table'[ReportsToName], 'Table'[AgentName], 'Table'[Tier],"Measure", "NPS", "Score", [NPS Score], "Target" ,[NPS Target])
)

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

View solution in original post

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @basirve ,

 

According to your question. You want to integrate multiple measures you created in the same column, but I don’t know what the calculation logic of each individual measure is. Does it return a dynamic value or a static value?

I want a method to try first:

if (column1 = "Ram" && column2 = "Andy" && column3 = "Consultant", [measure1],0)
if (column1 = "Ram" && column2 = "Andy" && column3 = "Consultant", [measure2],0)

 

If it still can't help you solve the problem, I don't know if you can provide pbix file and detailed information. So that I can help you do further testing and solve your problem.

 

Let me know immediately and looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@basirve , you have to create a table like

 

new Table =
union(
summarize('Table','Table'[ReportsToName], 'Table'[AgentName], 'Table'[Tier],"Measure", "AHT", "Score", [AHT Score], "Target" ,[AHT Target]),
summarize('Table','Table'[ReportsToName], 'Table'[AgentName], 'Table'[Tier],"Measure", "NPS", "Score", [NPS Score], "Target" ,[NPS Target])
)

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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