• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

I want to check Spelling by using formula

Hi ,

Excel Ninjas

i am working in this file, I want to check Spelling by using formula....

Please respond ASAP
 

Attachments

  • DATA.xlsx
    9.9 KB · Views: 8
Siva

Copy this to the Worksheet Module in VBA and execute it
Code:
Sub spellchecker()
Dim c As Range

For Each c In Range("F6:F11")
  c.Offset(0, 1) = Application.CheckSpelling(c.Text)
Next
End Sub
 
Back
Top