cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
fellipea_ao
Frequent Visitor

How create a measure to show percentage of a category per month in a stacked column chart?

Hello!

I'm trying to create a measure to show a percentage of category per month in stacked column chart.
First, I created a measure to show the percentage of total and showed it in tooltip:

 

%QTD_TotalCateg = 
var num = count('Planilha 1'[Aplicabilidade]) 
var denom = calculate(count('Planilha 1'[Aplicabilidade]), ALLSELECTED()) 
return divide (num,denom,0)

 

Ex: 2 "No" in April = 6.67% of total (2/30)

fellipea_ao_2-1658956172366.png

 

Now I want to know how to create a measure that show percentage of total of month to show in tooltip.

Ex: 2 "No" in April = 33.33% of total of April (2/6)

data: https://docs.google.com/spreadsheets/d/1ywn_YinYVXll-fFE0yBOdwr0ZWi1g_ek/edit?usp=sharing&ouid=10871...

 

 



1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@fellipea_ao 

pls try this. i didn't change the measure type, you can change it to percentage.

 

Measure = countx(FILTER('Table','Table'[Aplicabilidade]="No"),'Table'[Aplicabilidade])/CALCULATE(COUNT('Table'[Aplicabilidade]),ALLEXCEPT('Table','Table'[Mês]))

 

1.png

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@fellipea_ao 

pls try this. i didn't change the measure type, you can change it to percentage.

 

Measure = countx(FILTER('Table','Table'[Aplicabilidade]="No"),'Table'[Aplicabilidade])/CALCULATE(COUNT('Table'[Aplicabilidade]),ALLEXCEPT('Table','Table'[Mês]))

 

1.png

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thank you, its worked for me.

I ll use without the "filter".

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors