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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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] )
    )

Regards
Zubair

Please try my custom visuals

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] )
    )

Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors