Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm trying to use sumif where the criteria is to match text inside a text
string. Is there an simpler way to do this and will I eventually be able to find the right formula? -- I need so much help, but right now, some Excel help will suffice!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assume your are searching column A for any cells that contain "Bob", summing
column B: =SUMPRODUCT(--ISNUMBER(SEARCH("Bob",A2:A1000)),B2:B1000) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Jose" wrote: I'm trying to use sumif where the criteria is to match text inside a text string. Is there an simpler way to do this and will I eventually be able to find the right formula? -- I need so much help, but right now, some Excel help will suffice!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're looking for the word Jose in column A and column A could have values
like: Jose This is Jose This is Jose's book and all 3 should match? If yes, you can use a wildcard: =sumif(a:a,"*"&"jose"&"*",b:b) or =sumif(a:a,"*jose*",b:b) or even =sumif(a:a,"*"&C1&"*",b:b) if C1 contained Jose Jose wrote: I'm trying to use sumif where the criteria is to match text inside a text string. Is there an simpler way to do this and will I eventually be able to find the right formula? -- I need so much help, but right now, some Excel help will suffice!! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sumif - if the text has LCI in it | Excel Worksheet Functions | |||
SUMIF with text | Excel Worksheet Functions | |||
SUMIF for Text | Excel Discussion (Misc queries) | |||
Sumif text is contained winthin a longer text string in a cell | Excel Worksheet Functions | |||
sumif with text? | Excel Discussion (Misc queries) |