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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
laurelning
Helper I
Helper I

How to create % restricted to a certain group?

Hello all,

 

        I am trying to tap into the community of experts in Power BI to see if I can get some help create  a bar chart comparing the percentages of drop-out between the intervention and control groups across 5 semesters. It doesn't seem very straightforward to me though it can be quicly done in Excel. Could I use your expertise for some guidance as to how to create the chart? Below the first table shows dropout rate for each semester by intervention. The second table shows the corresponding percentages only. The chart shown below is what I intend to create in Power BI but can't get it work. The following two links give access the test data and pbix file:

laurelning_1-1604076928741.pnglaurelning_2-1604076949459.png

laurelning_3-1604077246615.png

 

Excel:

https://drive.google.com/file/d/11nVwTr1vdXFtfyJvN6F2J3CVV6-A03vg/view?usp=sharing

Pbix:

https://drive.google.com/file/d/1uJEaxVITndYhDtt8_37YwWuKAH6yLvLc/view?usp=sharing

 

Thank you very much!

 

Laurel

 

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

Hi, @laurelning 

 

It’s my pleasure to answer for you.

According to your description,I think you can create some measures to display the cluster bar chart.

Like this:

Measure0 =
VAR a =
    COUNTROWS ( ALL ( 'Raw Data' ) )
VAR b =
    COUNTROWS (
        FILTER (
            ALL ( 'Raw Data' ),
            [Semester] = SELECTEDVALUE ( 'Raw Data'[Semester] )
        )
    )
VAR c =
    DIVIDE ( b, a )
VAR d =
    COUNTROWS (
        FILTER (
            ALL ( 'Raw Data' ),
            [Semester] = SELECTEDVALUE ( 'Raw Data'[Semester] )
                && [Dropout] = 0
                && [Intervention] = 0
        )
    )
RETURN
    DIVIDE ( d, c ) / 100

4.png

Here is my sample .pbix file.Hope it helps.

If it doesn’t solve your problem, please feel free to ask me.

 

Best Regards

Janey Guo

 

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

1 REPLY 1
v-janeyg-msft
Community Support
Community Support

Hi, @laurelning 

 

It’s my pleasure to answer for you.

According to your description,I think you can create some measures to display the cluster bar chart.

Like this:

Measure0 =
VAR a =
    COUNTROWS ( ALL ( 'Raw Data' ) )
VAR b =
    COUNTROWS (
        FILTER (
            ALL ( 'Raw Data' ),
            [Semester] = SELECTEDVALUE ( 'Raw Data'[Semester] )
        )
    )
VAR c =
    DIVIDE ( b, a )
VAR d =
    COUNTROWS (
        FILTER (
            ALL ( 'Raw Data' ),
            [Semester] = SELECTEDVALUE ( 'Raw Data'[Semester] )
                && [Dropout] = 0
                && [Intervention] = 0
        )
    )
RETURN
    DIVIDE ( d, c ) / 100

4.png

Here is my sample .pbix file.Hope it helps.

If it doesn’t solve your problem, please feel free to ask me.

 

Best Regards

Janey Guo

 

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

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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