
How to highlight cells with mis-spelled words using VBA?
The below code will check each cell from the selection and highlight the cell where is a misspelled word. Sub HighlightMisspelledCells() Dim rng As Range For Each rng In ActiveSheet.UsedRange… Read more »