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
JohnW
Helper III
Helper III

Fining a Percentage

Hi everyone,

I am having touble getting this to work and I'm not quite sure how to word this question but here it is.  I am trying to get a percentage to show how many people used thier passes throughout the year based off of what pass they bought.  The passes are 25, 50, 75 and 100 swipes. 

So for example the first one is the 25 pass.  The total is 403 because I have it filtered to only show the people that didn't use more than half of thier swipes.  The grand total for 25 passes sold was 801.  I'd like to get something that shows the percentages between these two totals while still being able to filter out each pass.  So it should be around 50% for the 25 swipe pass, 54% for the 50 pass, 64% for the 75 pass and 58% for the 100 pass.

Thanks for the help!

 

image.pngimage.pngimage.pngimage.png

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @JohnW 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end. 

Table1, Table2, Table3, Table4:

c1.png

 

You may create four measure as below.

Visual Control 1 = 
IF(
    SELECTEDVALUE(Table1[Pass 25])>=25*0.5,
    1,0
)

Visual Control 2 = 
IF(
    SELECTEDVALUE(Table2[Pass 50])>=50*0.54,
    1,0
)

Visual Control 3 = 
IF(
    SELECTEDVALUE(Table3[Pass 75])>=75*0.64,
    1,0
)

Visual Control 4 = 
IF(
    SELECTEDVALUE(Table4[Pass 100])>=100*0.58,
    1,0
)

 

Finally you need to put the measure in the corresponding visual level filter to get the filtered result.

c2.png

 

Best Regards

Allan

 

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

View solution in original post

4 REPLIES 4
v-alq-msft
Community Support
Community Support

Hi, @JohnW 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end. 

Table1, Table2, Table3, Table4:

c1.png

 

You may create four measure as below.

Visual Control 1 = 
IF(
    SELECTEDVALUE(Table1[Pass 25])>=25*0.5,
    1,0
)

Visual Control 2 = 
IF(
    SELECTEDVALUE(Table2[Pass 50])>=50*0.54,
    1,0
)

Visual Control 3 = 
IF(
    SELECTEDVALUE(Table3[Pass 75])>=75*0.64,
    1,0
)

Visual Control 4 = 
IF(
    SELECTEDVALUE(Table4[Pass 100])>=100*0.58,
    1,0
)

 

Finally you need to put the measure in the corresponding visual level filter to get the filtered result.

c2.png

 

Best Regards

Allan

 

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

MFelix
Super User
Super User

Hi @JohnW ,

 

Can you please elaborate a little more on what you need to get? The 25 and the 801 are what values? Count of id's? Sum of pass?

 

Can you share a sample data and expected result.

 

Please see this post regarding How to Get Your Question Answered Quickly (courtesy of @Greg_Deckler) and How to provide sample data in the Power BI Forum (courtesy of @ImkeF).


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



Hi @MFelix ,

The 25, 50, 75 and 100 are the number of swipes a customer can buy for the year.  The 801 is the sum of passes in the 25 swipe passes bought for the year.  The 403 is the sum of passes in the 25 swipe passes but filtered down to customers who didin't use over half of thier passes in the year.

 

25 Swipe Pass 

Customer IDNumber of Passes left
123425
123520
123619
123715
125813
Total92

Total amount of 25 swipe passes bought 200

92/200 = 46% 

Sorry for the question once again and how do you now the number of passes you have with 25?

Is it based on the number of ID's multiplied by 25?

 

Can you share the data but with also the information about the rest of the passes because you show how many have swipes left but you must have lines with 0 correct?

DO you have any column that identifies the passes?

 

You should do something similar to this:

Percentage = SUM(Table[Number of Passes Left]) / calculate(SUM(Table[Number of passes bought); all(Table))

Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Kudoed Authors