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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Display ratio in row

Hi,

 

I want to display ratio in row. It likes the image following.

Capture.JPG

But I only realized ratio in column. I created a measure following to calaculte ratio.

Ratio % = DIVIDE(CALCULATE('Query1'[Actual N], FILTER('STAR_Agregated_group_PL','STAR_Agregated_group_PL'[ldesc2]="Net margin")),
CALCULATE('Query1'[Actual N],FILTER('STAR_Detailed_group_PL', 'STAR_Detailed_group_PL'[ldesc2]="NET ACTIVITY TURNOVER")))

I don't understand why the sublevel of "NET ACTIVITY TURNOVER" calculate ratio too. 

 

Ratio.PNG

Could you help me?

I am looking forward to hearing from you soon.

 

Best regards.

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Ashish_Mathur 

 

I realized my expected result following:

 

Ratio.PNG

 

Actual N (New) =
IF(
    FIRSTNONBLANK('Table ldesc2'[ldesc2], 1) = "Ratio %" && NOT( HASONEFILTER(STAR_Detailed_group_PL[ldesc2]) ),
    FORMAT(
    CALCULATE(
        'Query1'[Actual N],
        FILTER(ALL('STAR_Agregated_group_PL'),'STAR_Agregated_group_PL'[ldesc2]="Net margin")
    )
    /
    CALCULATE(
        'Query1'[Actual N],
        FILTER(ALL('STAR_Detailed_group_PL'),'STAR_Detailed_group_PL'[ldesc2]="NET ACTIVITY TURNOVER")
    ), "00%"),
    [Actual N]
)

View solution in original post

7 REPLIES 7
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

Your issue is referred to the red part why it have data been calculated ? it should be blank as other sublevel rows, right?

 

1.png

Best Regards,

Amy

 

Anonymous
Not applicable

Hi, @v-xicai and @Ashish_Mathur 

I created a measure following to calculate Net margin/NET ACTIVITY TURNOVER.


Measure 3 = IFERROR(IF(

                ISFILTERED('STAR_Detailed_group_PL'[ldesc2]) && NOT(ISFILTERED ('STAR_Account'[ldesc2])),

                'Query1'[Actual N]

                /

                CALCULATE(

                    'Query1'[Actual N],

                     FILTER('STAR_Detailed_group_PL','STAR_Detailed_group_PL'[ldesc2]="NET ACTIVITY TURNOVER")

            )

), BLANK())

Capture.PNG
But I got a ratio following:

But I don't know why NET ACTIVITY TURNOVER is calculated 100%. How to hide this 100%?

I am looking forward to hearing from you soon.

Best regards.

 

Hi @Anonymous ,

 

How about the DAX below?

 

Measure1= IF(MAX('STAR_Detailed_group_PL'[ldesc2])="NET ACTIVITY TURNOVER"&&,[Measure 3]<>BLANK(),BLANK(),[Measure 3])

 

Best Regards,

Amy

 

Anonymous
Not applicable

Hi @v-xicai ,

Thank you  for your suggestion.

I created a new measure using another suggestion:

 

Ratio % = IFERROR(
                   IF(
                       NOT(HASONEVALUE(STAR_Detailed_group_PL[ldesc2])),
                       CALCULATE(
                                  'Query1'[Actual N],FILTER('STAR_Agregated_group_PL','STAR_Agregated_group_PL'[ldesc2]="Net margin"))
                                  /
                                   CALCULATE(
                                              'Query1'[Actual N],FILTER('STAR_Detailed_group_PL','STAR_Detailed_group_PL'[ldesc2]="NET ACTIVITY TURNOVER")
                                               )
                        ),
                    BLANK()
                    )
I got the result following.
 
test.PNGtest.PNG
 
Best regards.
 
Wei
Anonymous
Not applicable

Hi, @v-xicai and @Ashish_Mathur 

 

Thank you for your reply. Yes, it's one of my questions. Why were the sublevels of NET ACTIVITY TURNOVER calculated?  I created a formula following to calculate Net margin / NET ACTIVITY TURNOVER

Ratio % = DIVIDE(CALCULATE('Query1'[Actual N], FILTER('STAR_Agregated_group_PL','STAR_Agregated_group_PL'[ldesc2]="Net margin")),
CALCULATE('Query1'[Actual N],FILTER('STAR_Detailed_group_PL', 'STAR_Detailed_group_PL'[ldesc2]="NET ACTIVITY TURNOVER")))
 
I want to put ratio under the Net margin or Total, it likes this:
 
Capture - Copy.JPG

Could you help me?

I am looking forward to hearing from you soon.

 

Besta regards./

Ashish_Mathur
Super User
Super User

Hi,

I do not understand your requirement.  What is your expected result?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @Ashish_Mathur 

 

I realized my expected result following:

 

Ratio.PNG

 

Actual N (New) =
IF(
    FIRSTNONBLANK('Table ldesc2'[ldesc2], 1) = "Ratio %" && NOT( HASONEFILTER(STAR_Detailed_group_PL[ldesc2]) ),
    FORMAT(
    CALCULATE(
        'Query1'[Actual N],
        FILTER(ALL('STAR_Agregated_group_PL'),'STAR_Agregated_group_PL'[ldesc2]="Net margin")
    )
    /
    CALCULATE(
        'Query1'[Actual N],
        FILTER(ALL('STAR_Detailed_group_PL'),'STAR_Detailed_group_PL'[ldesc2]="NET ACTIVITY TURNOVER")
    ), "00%"),
    [Actual N]
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.