I AM USING MOZILLA FIREFOX 5.0
my all codes are showing below
could you please find the why it not open
Option Explicit
Sub Macro1()
Dim L As Integer
Dim i As Integer
Dim M As Long
Selection.SpecialCells(xlCellTypeConstants, xlErrors + xlLogical + xlNumbers).ClearContents
Cells.Replace What:="Plastic Surgeon", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Cells.Replace What:=" mi.", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Columns("A:A").Select
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.Delete Shift:=xlUp
Range("B:B").Value = Range("A:A").Value
Range("B1").Select
For i = 1 To 1000 Step 2
With Range("B" & i)
Range("B" & i).Value = ""
End With
Next i
Range("B1").Select
Selection.Delete Shift:=xlUp
Range("A1").Select
For i = 2 To 1000 Step 2
With Range("A" & i)
Range("A" & i).Value = ""
End With
Next i
Columns("A:A").Select
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.Delete Shift:=xlUp
Columns("B:B").Select
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.Delete Shift:=xlUp
Range("A1").Select
M = Sheets("Sheet1").Range("A" & Rows.Count).End(xlUp).Row
For M = M To 1 Step -1
With Range("A" & M)
.Hyperlinks(1).Follow
End With
Next M
End Sub