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
kajelliott
Helper I
Helper I

DAX Measure to show the total percentage of opportunities won for the associated lead source?

Hi All, 

 

I have a column of lead sources in my data table and have calculated the percentage of opportunties won with a DAX calculation which results in this table.

Lead SourceTotal % Won
A22%
B24%
C70%
D13%
E17%


How do I create a Dax expression so that this percentage will display in a table against the opportunity like so?

OpportunityLead SourceLead Source Won
Name AE17%
Name BD13%
Name CA22%
Name DB24%

 

Opportunity and Lead Source exist in the same data table in power BI
The Total % Won calculation is DIVIDE([Total Opps for Won], [Total Opps]) + 0


Any help is appreciated! Thank you 🙂

1 ACCEPTED SOLUTION

Hi @kajelliott ,

 

You can try below formula:

M_ =
VAR total_ =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        FILTER ( ALL ( 'Table' ), 'Table'[Load Source] = MAX ( 'Table'[Load Source] ) )
    )
VAR cur_ =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Load Source] = MAX ( 'Table'[Load Source] )
                && 'Table'[Status] = "won"
        )
    )
RETURN
    IF ( ISBLANK ( DIVIDE ( cur_, total_ ) ), 0, DIVIDE ( cur_, total_ ) )

vkongfanfmsft_0-1709112095755.png

Best Regards,
Adamk Kong

 

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

6 REPLIES 6
v-kongfanf-msft
Community Support
Community Support

Hi @kajelliott ,

 

Based on your description, you could create a data table similar to the following and then apply this formula.

vkongfanfmsft_0-1708998471430.png

PercentageWon = 
VAR totalOpps =
    CALCULATE ( SUM ( 'Table'[Total Opps] ) )
VAR wonOpps =
    CALCULATE ( SUM ( 'Table'[Total Opps for won] ) )
RETURN
    DIVIDE ( wonOpps, totalOpps ) + 0

 

vkongfanfmsft_1-1708998535036.png

Best Regards,
Adamk Kong

 

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

Hi @v-kongfanf-msft 

 

Thanks for your suggestion. Both [Total Opps} & [Total Opps for Won] are measures, so it will not allow that for the expression you have written. 

 

Also, I notice that the expression does not reference the Lead Source at all, so i'm not sure how this would work. It looks like the expression would return the percentage won for each opportunity, which will either be 100% or 0% depending on the opportunity. 

 

Let me know what you think.

 

Thanks!

Kayla

Hi @kajelliott ,

 

I don't quite understand what you need, please provide some test data and screenshot information and explain it.

 

Best Regards,
Adamk Kong

 

Hi @v-kongfanf-msft 

Sorry, it wont let me upload a pbix file which is frustrating. To give you an idea, my data looks like this: 

kajelliott_3-1709073244795.png

 

I then create measures to return the percentage of opportunies won which results in this 

kajelliott_4-1709073319250.png

What I need is a measure that returns the percentage of opportunities won for the lead source of each opportunity. Eg, Opportunities with a lead source 'Website' are won 80% of the time.

Example below - 

kajelliott_2-1709072884455.png

Hopefully this helps!

 

Thank you. 

Hi @kajelliott ,

 

You can try below formula:

M_ =
VAR total_ =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        FILTER ( ALL ( 'Table' ), 'Table'[Load Source] = MAX ( 'Table'[Load Source] ) )
    )
VAR cur_ =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Load Source] = MAX ( 'Table'[Load Source] )
                && 'Table'[Status] = "won"
        )
    )
RETURN
    IF ( ISBLANK ( DIVIDE ( cur_, total_ ) ), 0, DIVIDE ( cur_, total_ ) )

vkongfanfmsft_0-1709112095755.png

Best Regards,
Adamk Kong

 

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

Hi @v-kongfanf-msft 

 

This is perfect! Thank you so much for your time and effort. It is greatly appreciated 🙂

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.