High Light Miss spell words in excel

shrinivasmj

Board Regular
Joined
Aug 29, 2012
Messages
140
hi

i need to word to be high light or underline for miss spelled words in excel need vb or macro
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
hi need to only check d row ,i have a formula were its need to modify ,need to trim and check only d row

Dim C As Range
For Each C In Worksheets("Sheet1").UsedRange
If Not Application.CheckSpelling(Word:=C.Text) Then _
C.Interior.Color = vbYellow
Next C
End Sub
 
Upvote 0
Do you mean?

Code:
For Each C In Intersect(Worksheets("Sheet1").UsedRange, Worksheets("Sheet1").Columns("D")).Cells
 
Upvote 0
hi

need to trim and check spelling for only d column

this formula need to modify its check all sheet

Dim C As Range
For Each C In Worksheets("Sheet1").UsedRange
If Not Application.CheckSpelling(Word:=C.Text) Then _
C.Interior.Color = vbYellow
Next C
End Sub
 
Upvote 0
Code:
Dim C As Range
For Each C In Intersect(Worksheets("Sheet1").UsedRange, Worksheets("Sheet1").Columns("D")).Cells
    If Not Application.CheckSpelling(Word:=C.Text) Then _
        C.Interior.Color = vbYellow
Next C
 
Upvote 0
please add in formula cant modify

and need only high light the text in red as its high light the complete cell
 
Upvote 0

Forum statistics

Threads
1,223,248
Messages
6,171,021
Members
452,374
Latest member
keccles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top