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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Syndicate_Admin
Administrator
Administrator

Percentage by grouped values

Hello everyone,

I would like to calculate the percentage of occurrence of a value (in this case of "dedicated") by country and type of business

diegomerino_0-1695830722070.png

How can you see that would be the structure of the table, now:

diegomerino_1-1695830764846.png

From the previous column tipo_base_transporte2 I would like to calculate what percentage of "non-dedicated" or "dedicated" occurs by business and country of origin.

Thank you.

1 REPLY 1
whitch
Resolver I
Resolver I

Perhaps something is lost in translation, but this seems relatively easy.  Assuming your table is called 'Table1', then create the following measures:

 

%Dedicado = CALCULATE(COUNTROWS('Table1'),'Table1'[Tipo _base_transpote_2] = "dedicado")/COUNTROWS('Table1')
 
%nonDedicado = 1 - [%Dedicado]
 
Create a matrix visual, put above measure in the values section and business / country of origin in rows / columns.
 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.