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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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

@Zubair_Muhammad

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

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.