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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
BobbyDollar
Frequent Visitor

How to use filter with cell reference in row (CALCULATE, FITLER, Cell rereference)

Hi

 

Support for a beginner needed Smiley Wink

I want to calculate a sales share per region and profit center in a new column. In bold the column I want to calculate.

 

Customer_IDRegionProfit_CenterRevenueRegion_Share
1DEPC110033%
2DEPC120067%
3DEPC210025%
4NLPC2200100%
5DEPC230075%


For line 1 and 2 I could calculate as follows:

Region_Share=Table[Revenue] / CALCULATE(SUM(Table[Revenue]);FILTER(Table;Table[Profit_Center]="PC1"); FILTER(Table;Table[Region]="DE"))

But this would not work for the complete database due to the fixed strings. I do not want to fix the filter by a text string like "PC1" and "DE". I want a reference to the cell in this row to use the Profit Center and Region information for calculation.

 

Any idea how to do this?

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@BobbyDollar 

 

Try following

 

Column =
[Revenue]
    / CALCULATE (
        SUM ( 'Table'[Revenue] ),
        ALLEXCEPT ( 'Table', 'Table'[Region], 'Table'[Profit_Center] )
    )

View solution in original post

1 REPLY 1
Zubair_Muhammad
Community Champion
Community Champion

@BobbyDollar 

 

Try following

 

Column =
[Revenue]
    / CALCULATE (
        SUM ( 'Table'[Revenue] ),
        ALLEXCEPT ( 'Table', 'Table'[Region], 'Table'[Profit_Center] )
    )

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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 community update carousel

Fabric Community Update - June 2025

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