I’m struggling to modify this code (below) to handle fuzzy matches, e.g., treating words like dog, dogs, Dog, and Dogs the same. Any suggestion as to how I can modify this code to do this?
————
Function Count_Positives(Sentence As String, Positive_Words As Range)
Dim Counter As Integer
For x =...