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
sfink22
Helper I
Helper I

Sum if rows contain matching data

I'm working on a travel budget report. I have a 'Budget' table with everyone's last name in Column 1 and their alloted budget in Column 2, like this:

'Budget'

Name             Budget

Anderson       $1,000

 

In a second table I have all the 'Transactions' for the year. The transaction names contain (somewhere in the field) the last name of the related person, i.e.:

'Transactions'

Transaction                          Spend

Anderson cell phone           $100

Hotel charge Anderson       $200

 

I'm trying to create a Column 3 in the 'Budget' table that will sum Spend by Name. In other words, it will look at the Name column in the 'Budget' table, and then scan the Transaction column in the second 'Transactions' table for anything containing that Name, and sum the corresponding Spend. The above example would output this:

'Budget'

Name             Budget      Actual Spend by Name

Anderson       $1,000       $300

 

I've tried several different ways but come up with an error every time. Any help is appreciated!

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @sfink22

Try this for your new column in the 'Budget' table:

 

 

Actual Spend by Name =
CALCULATE (
    SUM ( Transactions[Spend] ),
    FILTER (
        Transactions,
        FIND ( Budget[Name], Transactions[Transaction], 1, 0 ) > 0
    )
)

 

View solution in original post

2 REPLIES 2
v-cherch-msft
Employee
Employee

Hi @sfink22

 

SEARCH Function could be worked for you as well.

Column =
SUMX (
    FILTER (
        Transactions,
        SEARCH ( Budget[Name], Transactions[Transaction], 1, 0 ) > 0
    ),
    Transactions[Spend]
)

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
AlB
Super User
Super User

Hi @sfink22

Try this for your new column in the 'Budget' table:

 

 

Actual Spend by Name =
CALCULATE (
    SUM ( Transactions[Spend] ),
    FILTER (
        Transactions,
        FIND ( Budget[Name], Transactions[Transaction], 1, 0 ) > 0
    )
)

 

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.