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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
lasthero
Frequent Visitor

Measures for % of grand total and % of a column

Hi all,


Was hoping someone could help me out here.  Assuming i have the following data in sheet1:

 

VendorIditemsValidReason
Ven111YReason1
Ven112YReason1
Ven221NReason2
Ven331YReason1
Ven332NReason2
Ven333NReason2
Ven441YReason3
Ven442YReason3
Ven451NReason2
Ven561N

Reason1

 

 

 

How would I create a measure that is the % of total based on items and validity?

 

For example if I have a pie chart displayed of all the reasons, and then I have a slicer for Valid and Vendor.

What I want to create is two number % visuals that will change based off of the slicers.

 

So for example if I click the slicer and I select Ven4 and click the other slicer and valid = Y, I want one % visual to display the count of ven4 items vs all so 30%(3/10). And the 2nd % visual I want to display % of valid only for ven4. So 66%(2/3). Sorry if this sounds confusing I will try to clarify if needed.

 

Thanks in advance!

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

@lasthero All these are MEASURES!

 

Transactions = COUNTROWS ('Table')

Transactions (Overall) = CALCULATE ( [Transactions], ALL('Table'))

Transactions (Overall by Vendor) = CALCULATE ( [Transactions], ALLEXCEPT('Table', 'Table'[Vendor]))

Transactions (Valid) = CALCULATE ( [Transactions], FILTER ( ALLSELECTED('Table'), 'Table'[Valid]="Y"))

MEASURE 1 = DIVIDE ( [Transactions (Overall by Vendor)], [Transactions (Overall)], 0 )

MEASURE 2 = DIVIDE ( [Transactions (Valid)], [Transactions (Overall by Vendor)], 0 )

I think this is what you are trying to do???

 

2016-10-06 - Percentages.png

 

Hope this helps! Smiley Happy

View solution in original post

1 REPLY 1
Sean
Community Champion
Community Champion

@lasthero All these are MEASURES!

 

Transactions = COUNTROWS ('Table')

Transactions (Overall) = CALCULATE ( [Transactions], ALL('Table'))

Transactions (Overall by Vendor) = CALCULATE ( [Transactions], ALLEXCEPT('Table', 'Table'[Vendor]))

Transactions (Valid) = CALCULATE ( [Transactions], FILTER ( ALLSELECTED('Table'), 'Table'[Valid]="Y"))

MEASURE 1 = DIVIDE ( [Transactions (Overall by Vendor)], [Transactions (Overall)], 0 )

MEASURE 2 = DIVIDE ( [Transactions (Valid)], [Transactions (Overall by Vendor)], 0 )

I think this is what you are trying to do???

 

2016-10-06 - Percentages.png

 

Hope this helps! Smiley Happy

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.