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

Create a SUM measure that sums conditionally (based on a value in another column)

Hi experts,

 

I have been using another table (tableB) to sum specific values in tableA using the following simple DAX:

Sum amount = CALCULATE ( SUM ( tableA[Amount] ), tableB[NewProducts] )

However this works only when Product_code in both tables is numeric. When Product_code is text, I get this error message: Cannot convert value "300a" of type Text to type True/False". How do I go around this?

 

My sample tables are like this:

 

tableA                                                    tableB
Product_code    Amount                                    Product_code
123a             100                                      125a
125a             120                                      300a
200              130
300a              90

 

1 ACCEPTED SOLUTION
gvg
Post Prodigy
Post Prodigy

OK, looks like this measure solves the issue:

 

Sum amount = CALCULATE ( SUM ( tableA[Amount] ), DISTINCT ( tableB[NewProducts]) )

View solution in original post

3 REPLIES 3
gvg
Post Prodigy
Post Prodigy

OK, looks like this measure solves the issue:

 

Sum amount = CALCULATE ( SUM ( tableA[Amount] ), DISTINCT ( tableB[NewProducts]) )
Zubair_Muhammad
Community Champion
Community Champion

@gvg

 

Try

 

Sum Amount =
CALCULATE (
    SUM ( tableA[Amount] ),
    FILTER ( TableA, TableA[Product_code] = TableB[NewProducts] )
)

Regards
Zubair

Please try my custom visuals

@Zubair_Muhammad

Well, this syntax in Filter does not seem to be valid?

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.