Forum Discussion
Anthonyinnz
Apr 26, 2022Copper Contributor
Sum values if cell contains text that isin my source cell (Vlookup cell contains a smultiple values)
Greetings Can someone please help me with the following simplified example. I have a spreadsheet containing Code Amount 101 $10 101 $20 102 $10 103 $20 I want a formulae t...
- Apr 27, 2022
Hi Anthonyinnz
in E3:
=SUM( ISNUMBER(SEARCH(Table1[Code],[@Codes])) * Table1[Amount] )
AND validate it with [Ctrl]+[Shift]+[Enter] (or equiv. on Mac) if you don't run Excel 2021 or 365
Lorenzo
Apr 27, 2022Silver Contributor
Hi Anthonyinnz
in E3:
=SUM( ISNUMBER(SEARCH(Table1[Code],[@Codes])) * Table1[Amount] )
AND validate it with [Ctrl]+[Shift]+[Enter] (or equiv. on Mac) if you don't run Excel 2021 or 365
- AnthonyinnzApr 27, 2022Copper ContributorExcellent - Thank You
I tried using several different functions without success ... didnt think of the above :o)- LorenzoApr 28, 2022Silver ContributorGlad I could help Anthonyinnz & Thanks for posting back