Thanks for adding the tags 
Though you've got a solution (nice one Leith), here's my proposed solution in any case:
Option Explicit
Sub Macro2()
'http://www.excelforum.com/excel-programming-vba-macros/1027174-remove-text-between-brackets.html
Dim c As Range
Dim p1 As Double
Dim p2 As Double
Application.ScreenUpdating = False
For Each c In Range("A1:A60")
Do Until InStr(c, "[") = 0
p1 = InStr(c, "[")
p2 = InStr(c, "]")
If p1 > 0 Then c.Value = Left(c, p1 - 1) & Right(c, Len(c) - p2 - 0)
Loop
Next c
Application.ScreenUpdating = True
End Sub
Regards,
Robert
Bookmarks