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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Headline Percentage on Card or KPI based on filter

Hi,

 

I expect this is simple but I want to display a series of 'headline' ratios or pecentages on my report using cards or KPI visuals.

 

I'm using these type of measures in tables:

 

Conversion % = DIVIDE([No. of Leads],CALCULATE([No. of Leads],ALLSELECTED('Leads'[Status])))

Exhibition % = DIVIDE([No. of Leads],CALCULATE([No. of Leads],ALLSELECTED('Leads'[Exh/Non-Exb])))

 

Which is great and works perfectly but when I want to use one on a card that gives a percentrage of just status of 'qualified' or 'Exhibitions' I get 100% displayed.

 

card percentage.PNG

 

 

 I feel like there is perhaps another measure I need to write in DAX to get the result I want.  Can anyone help please?

 

Many thanks.

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

Please try these two formulas:

Conversion % =
DIVIDE (
    CALCULATE ( [No. of Leads], ALLEXCEPT ( Leads, Leads[Status] ) ),
    CALCULATE ( [No. of Leads], ALL ( Leads ) )
)

Exhibition % =
DIVIDE (
    CALCULATE ( [No. of Leads], ALLEXCEPT ( Leads, Leads[Exh/Non-Exb] ) ),
    CALCULATE ( [No. of Leads], ALL ( 'Leads' ) )
)

If this doesn't work, please share some sample data and the formula of measure [No. of Leads] for further analysis.

 

Thanks,
Yuliana Gu

Community Support Team _ Yuliana Gu
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

2 REPLIES 2
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

Please try these two formulas:

Conversion % =
DIVIDE (
    CALCULATE ( [No. of Leads], ALLEXCEPT ( Leads, Leads[Status] ) ),
    CALCULATE ( [No. of Leads], ALL ( Leads ) )
)

Exhibition % =
DIVIDE (
    CALCULATE ( [No. of Leads], ALLEXCEPT ( Leads, Leads[Exh/Non-Exb] ) ),
    CALCULATE ( [No. of Leads], ALL ( 'Leads' ) )
)

If this doesn't work, please share some sample data and the formula of measure [No. of Leads] for further analysis.

 

Thanks,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Works perfectly!

 

Thank you.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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