Forum Discussion
MHJ_52
Nov 16, 2019Copper Contributor
Searching for verb tenses
I need to search a large Excel document for verbs in the present and past tense. I would be satisfied if I could just find all words that end in "s" or "ed," but I can't figure out how to do that. Wh...
mathetes
Nov 17, 2019Silver Contributor
MHJ_52It's not altogether clear what you mean by "large Excel document." If you mean a large Excel spreadsheet, then the follow-up questions are:
- Are the words you're needing to search through contained in a column (or row, but more likely column) that contains single words only?
- Or are they contained in large cells that contain a fair amount of text, conceivably even more than one verb per cell?
If each cell contains only single words then the prior answer you already got will work for finding those ending in "s" or "ed"
If, on the other hand, each cell to be searched contains a sentence, so long as it only contains one verb per sentence (no subordinate clauses, etc.), then you might be able to search with something like
=IF(FIND("ed ",A3),"Look here",""), changing the "ed " to "s " for the other, although be aware that the latter will find words like "This" as well as verbs ending in "s".