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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

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! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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