Looking for a way to count parts of speech in an Excel text string. I have a list of text strings in Column A and the following labels in Columns B to E: Noun, Adjective, Verb and Adverb. I want to know how many of each (Noun, Adjective, Verb, Adverb) are identified by text string. For example:
[TABLE="width: 500"]
Text String
[/td]Noun
[/td]Adjective
[/td]Verb
[/td]Adverb
[/td]The quick brown fox jumped over the lazy dogs.
[/td]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]0[/TD]
John likes fast blue cars.
[/td]
[TD="align: center"]2[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]1[/TD]
Etc.
[/td]Etc.
[/td]
[/TABLE]
While I understand performing such calculations is highly hinged on context and the English language contains various grammar rules, etc. I am not looking for a perfect solution but anything that can get remotely close would be tremendously appreciated.