Last active
August 29, 2015 14:22
-
-
Save csmoore/6691d929f2ece63f6955 to your computer and use it in GitHub Desktop.
Obscure Excel formulas I can never remember
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cell contains substring? | |
=ISNUMBER(SEARCH("NEW_AT_2525D",E2)) | |
Compare if the same string: | |
=IF(VLOOKUP(B1,B:B,1)=B2,"True","False") | |
Count occurences: | |
=SUMPRODUCT(--(ISNUMBER(SEARCH("String",A:A)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment