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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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