Yes, thats very much weird... All those rows looks like blank, yet they have data when the cursor is moved over the cell, I get the email address as tool tip. Anyway finally I found couple of scripts on the net which I merged and execute as activex task. This script does work. Set xlapp = CreateObject("Excel.Application") ' Make it invisible... xlapp.Visible = False ' Add a new workbook Set xlbook = xlapp.Workbooks.Open(SourceFile) ' Add a module Set xlmodule = xlbook.VBProject.VBComponents.Add(1) ' Add a macro to the module... strCode = _ "sub RemoveLink()" & vbCr & _ " Dim intCol,intRow,intLastRow " & vbCr & _ " intRow = 1 " & vbCr & _ " intCol = 6 " & vbCr & _ " intLastRow = 65000 " & vbCr & _ " On Error Resume Next " & vbCr & _ " For intRow = 1 To intLastRow " & vbCr & _ " Cells(intRow, intCol).Select " & vbCr & _ " Selection.Hyperlinks(1).TextToDisplay = Replace(Selection.Hyperlinks(1).Address,""mailto:"", """") " & vbCr & _ " i=i+1 " & vbCr & _ " Next " & vbCr & _ "End Sub" xlmodule.CodeModule.AddFromString strCode ' Run the new macro! xlapp.Run "RemoveLink" xlbook.Save xlbook.close xlapp.quit
Karunakaran___________It's better to be loved and lost, than ever to be loved...