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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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