I would like to condense all these vba's since they are doing the same thing with just a different variable. I know this is probably easy I'm just not very familiar with VBA yet.
Sub ClearUnwantedCells()
Dim rng As Range
Dim cell As Range
Dim ContainWord As String
Set rng = Range("A1:Z500")
ContainWord = "@"
For Each cell In rng.Cells
If Not cell.Find(ContainWord) Is Nothing Then cell.Clear
Next cell
End Sub
Sub ClearUnwantedCells1()
Dim rng As Range
Dim cell As Range
Dim ContainWord As String
Set rng = Range("A1:Z500")
ContainWord = "http"
For Each cell In rng.Cells
If Not cell.Find(ContainWord) Is Nothing Then cell.Clear
Next cell
End Sub
Sub ClearUnwantedCells2()
Dim rng As Range
Dim cell As Range
Dim ContainWord As String
Set rng = Range("A1:A100000")
ContainWord = ":"
For Each cell In rng.Cells
If Not cell.Find(ContainWord) Is Nothing Then cell.Clear
Next cell
End Sub
Sub ClearUnwantedCells3()
Dim rng As Range
Dim cell As Range
Dim ContainWord As String
Set rng = Range("A1:A100000")
ContainWord = "="
For Each cell In rng.Cells
If Not cell.Find(ContainWord) Is Nothing Then cell.Clear
Next cell
End Sub
Sub ClearUnwantedCells()
Dim rng As Range
Dim cell As Range
Dim ContainWord As String
Set rng = Range("A1:Z500")
ContainWord = "@"
For Each cell In rng.Cells
If Not cell.Find(ContainWord) Is Nothing Then cell.Clear
Next cell
End Sub
Sub ClearUnwantedCells1()
Dim rng As Range
Dim cell As Range
Dim ContainWord As String
Set rng = Range("A1:Z500")
ContainWord = "http"
For Each cell In rng.Cells
If Not cell.Find(ContainWord) Is Nothing Then cell.Clear
Next cell
End Sub
Sub ClearUnwantedCells2()
Dim rng As Range
Dim cell As Range
Dim ContainWord As String
Set rng = Range("A1:A100000")
ContainWord = ":"
For Each cell In rng.Cells
If Not cell.Find(ContainWord) Is Nothing Then cell.Clear
Next cell
End Sub
Sub ClearUnwantedCells3()
Dim rng As Range
Dim cell As Range
Dim ContainWord As String
Set rng = Range("A1:A100000")
ContainWord = "="
For Each cell In rng.Cells
If Not cell.Find(ContainWord) Is Nothing Then cell.Clear
Next cell
End Sub