https://github.com/agentgill/special-invention
Some useful Excel Formulas
https://github.com/agentgill/special-invention
excel excel-formula excel-formulas
Last synced: 6 months ago
JSON representation
Some useful Excel Formulas
- Host: GitHub
- URL: https://github.com/agentgill/special-invention
- Owner: agentgill
- Created: 2022-06-04T08:56:48.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-04T09:01:04.000Z (about 4 years ago)
- Last Synced: 2025-06-11T19:20:01.445Z (about 1 year ago)
- Topics: excel, excel-formula, excel-formulas
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Some useful Excel Formulas which may or may not be useful to people
Save's time Googling around for Excel formulas
## Cell contains specific text
Search Excel cell for specific text and return yes if found.
```excel
=IF(ISNUMBER(SEARCH(":",C2)), "Yes", "No")
```
[External Source](https://exceljet.net/formula/cell-contains-specific-text)