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

Get Fabric certified for FREE! Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

How to sum the values in Column C, if Column A contains specific text in Column B

A

Item Name

Prod. ID
TW10-F, U=20"0001
A=4000, TC400002
TC40, 2"150#0003
TR95, FPW 1/2NPT0004
114CM, TW100005
"X"=1000, TR950006

 

Prod. ID

C

Calc Qty

00011
00021
00031
00041
00052
00061

 

B

Model

TW10
TC40
TR95

 

Hi all. is it possible for me to create a measure/column to sum up the C if A contains B? And, three of the info are in different tables.

 

Thanks for helping.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Anonymous,

You can try to use the following measure formula to summary records across different table fields based on conditions:

fomrula =
VAR _list =
    CALCULATETABLE (
        VALUES ( A[Prod. ID] ),
        FILTER (
            ALLSELECTED ( A ),
            COUNTROWS (
                FILTER ( ALLSELECTED ( B ), SEARCH ( [Model], [Item Name], 1, -1 ) > 0 )
            ) > 0
        )
    )
RETURN
    CALCULATE (
        SUM ( C[Calc Qty] ),
        FILTER ( ALLSELECTED ( C ), [Prod. ID] IN _list )
    )

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

HI @Anonymous,

You can try to use the following measure formula to summary records across different table fields based on conditions:

fomrula =
VAR _list =
    CALCULATETABLE (
        VALUES ( A[Prod. ID] ),
        FILTER (
            ALLSELECTED ( A ),
            COUNTROWS (
                FILTER ( ALLSELECTED ( B ), SEARCH ( [Model], [Item Name], 1, -1 ) > 0 )
            ) > 0
        )
    )
RETURN
    CALCULATE (
        SUM ( C[Calc Qty] ),
        FILTER ( ALLSELECTED ( C ), [Prod. ID] IN _list )
    )

Regards,

Xiaoxin Sheng

Gokul_G16
Resolver I
Resolver I

Hi @Anonymous ,

I will do one thing , If you can have 3 type of scenario text conetnts. So for you can go and work back end in Power Qurery.
 -----
Select the A column then serach first  inside droptown like TW, then enter.
Select the A column then serach first  inside droptown like TC, then enter.
Select the A column then serach first  inside droptown like TR, then enter.

final you have 3 type of column like A , B , C.
Then apply and clsoe.
Post uploaded. Using
DAX = if (A=blank(), B,
if(B=blank(), C,
if(C=blank(), A, 0))).

try this by the way. if you feel with good kudos me :).


Have a good day.
gokul

Helpful resources

Announcements
Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.