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
gvg
Post Prodigy
Post Prodigy

Get value in a separate column

Hi there,

 

I am looking to put a sum of some value into a separate column on a specific row in a table visual. This is my raw table and the expected result in table visual:

 

Col1   Amount                     Col1  SumAmount  MinusAmount
1         10                      1       30       - 7 
1         20                      2       70
2         30                      3       -7
2         40
3        - 7

I thought a simple measure like this will do the trick but it doesn't :

 

MinusAmount = IF ( MAX (Table[Col1] = 1, CALCULATE ( SUM ( Table[Amount] ), Col1 = 3 ) )

 

Would appreciate any hints. Thanks.

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @gvg

 

Your code's logic is sound. It should work with very minor changes: 

 

MinusAmount =
IF (
    MAX ( 'Table'[Col1] ) = 1,
    CALCULATE ( SUM ( 'Table'[Amount] ), 'Table'[Col1] = 3 )
)

View solution in original post

3 REPLIES 3
AlB
Super User
Super User

Hi @gvg

 

Your code's logic is sound. It should work with very minor changes: 

 

MinusAmount =
IF (
    MAX ( 'Table'[Col1] ) = 1,
    CALCULATE ( SUM ( 'Table'[Amount] ), 'Table'[Col1] = 3 )
)
gvg
Post Prodigy
Post Prodigy

OK, thanks @AlB. I happen to have some more columns in my visual and it looks that I need to use measure with ALLSELECTED:

 

MinusAmount = 
IF (
    MAX ( Table1[Col1] ) = 1,
    CALCULATE ( SUM ( Table1[ Amount] ), FILTER(ALLSELECTED(Table1),Table1[Col1] = 3 ) )
)
gvg
Post Prodigy
Post Prodigy

OK, it works in this simple table, but it doesn't if I add another column, like here:

 

Capture.JPG

 

I get this:

 

Capture.JPG

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.