Microsoft Excel Tutorial For Beginners – Count cells that contain case sensitive
To count cells that contain specific text (i.e. contain a substring), taking into account upper and lower case, you can use a formula based on the ISNUMBER and FIND functions, together with the SUMPRODUCT function. In the example shown, E5 contains this formula, copied down:
=SUMPRODUCT(--ISNUMBER(FIND(D5,data)))
Where “data” is the named range B5:B15. The result is a case-sensitive count of each substring listed in column D.
Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.
More to explore … … …
Excel to Python Example – How to count cells equal to case sensitive
Microsoft Excel Tutorial For Beginners – Count cells over 100 characters
Microsoft Excel Tutorial For Beginners – Count cells less than
Microsoft Excel Tutorial For Beginners – Count cells not equal to