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
asalazarjr
Frequent Visitor

Percent of Revenue excluding one customer

Hey, Trying to create a measure that gets me customer percent of revenue excluding 1 customer.

The current measure works, but need help filtering the total revenue(minus 1 specific customer).

 

% Revenue =
VAR TotRev= CALCULATE(SUM('Table'[Revenue]),ALL('Table'[Customer List]))
Return
Divide(SUM('Table'[Revenue]),TotRev)
 
Need this to be done in measure so that this new measure excluding 1 customer equals 100%, Any help would be appreciated.


2 ACCEPTED SOLUTIONS
Wendeley-North
Resolver I
Resolver I

% Revenue =
VAR TotRev = CALCULATE ( SUM ('Table'[Revenue]),
                         FILTER ( ALL('Table'[Customer List]), 
                                  'Table'[Customer List] = 'Customer' )
                        )
Return
Divide(SUM('Table'[Revenue]),TotRev)

View solution in original post

% Revenue =
VAR TotRev = CALCULATE ( SUM ('Table'[Revenue]),
                         FILTER ( ALL('Table'[Customer List]), 
                                  'Table'[Customer List] <> 'Customer' )
                        )
Return
Divide(SUM('Table'[Revenue]),TotRev)

Thanks, this is what i was looking for, changed your "=" to  "<>"

View solution in original post

3 REPLIES 3
Wendeley-North
Resolver I
Resolver I

% Revenue =
VAR TotRev = CALCULATE ( SUM ('Table'[Revenue]),
                         FILTER ( ALL('Table'[Customer List]), 
                                  'Table'[Customer List] = 'Customer' )
                        )
Return
Divide(SUM('Table'[Revenue]),TotRev)

% Revenue =
VAR TotRev = CALCULATE ( SUM ('Table'[Revenue]),
                         FILTER ( ALL('Table'[Customer List]), 
                                  'Table'[Customer List] <> 'Customer' )
                        )
Return
Divide(SUM('Table'[Revenue]),TotRev)

Thanks, this is what i was looking for, changed your "=" to  "<>"

Ashish_Mathur
Super User
Super User

Hi,

Share some data to work with and also show the expected result.


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

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.