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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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