• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Excel 2004 Sumif when cell contains a particular string

GoingUp

Lifer
So I have multiple columns of data.

Column F has names, and column G has counts. All counts are greater than one.

The problem is, that column F has permutations of mutiple names. For example: Gobadgrs $, Gobadgrs231, GobadgrsSDKJSDFLK.

I want a formula to sum up all of the cells in column G, where the cell in the same row in F contains Gobadgrs. I'm thinking it should look something like this.

=SUMIF(F2:F200, SOME CONDITIONAL CHECK ,G2:G200)

Any ideas? Thanks! 🙂
 
If you're looking for a conditional check that won't error when the string is not found, try this:

FIND("Gobadgrs",F1&"Gobadgrs")<=LEN(F1)-LEN("Gobadgrs")+1

That tacks the string onto the end of the searched string, so it's always found; only the position matters.
 
Back
Top