This macro will check spelling on all sheets in a workbook by enabling the Windows Spell Checker.
It shouldn't be necessary to use an online dictionary. The challenge now is to determine how you
can utilize the function of the Spell Checker in your project.

Sub SpellChecker()    
Dim s As Worksheet
    For Each s In Worksheets
        s.Cells.CheckSpelling
    Next s
End Sub