-1

I have an excel document, and I want to be able to total the amount of times a substring (A name) occurs in that range. This is a picture of a table that I would want to use this formula on. enter image description here

Thanks for your help in advance

Greg Potts
  • 81
  • 5

1 Answers1

2

Use Countif with wildcards. It will look at the substring:

=COUNTIF($B:$D,"*" & G5 & "*")

![enter image description here

Scott Craner
  • 148,073
  • 10
  • 49
  • 81