siva kumar boggula New Member Oct 28, 2014 #1 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
Hi , Excel Ninjas i am working in this file, I want to check Spelling by using formula.... Please respond ASAP
Hui Excel Ninja Staff member Oct 28, 2014 #2 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
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