Hi umesh,
Change:
With Range.Find
to:
Code:
Set Rng = .Range
Rng.Start = Rng.Rows(2).Range.Start
With Rng.Find
You can remove all shading (not highlighting) by adding the following code between the final 'Next' and 'End With' statements in the 'FormatTables' sub:
Code:
With .Range.Font.Shading
.ForegroundPatternColor = wdColorAutomatic
.BackgroundPatternColor = wdColorAutomatic
End With