これを試して
Sub Sample()
Dim oRange As Range, aCell As Range, bCell As Range
Dim ws As Worksheet
Dim ExitLoop As Boolean
Dim SearchString As String, FoundAt As String
On Error GoTo Err
Set ws = Blad1
Set oRange = ws.Cells
oRange.NumberFormat = "@"
SearchString = "."
Set aCell = oRange.Find(What:=SearchString, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False)
If Not aCell Is Nothing Then
Set bCell = aCell
Do While InStr(1, aCell.Formula, ".") > 0
aCell.Formula = Replace(aCell.Formula, ".", ",")
Loop
Do While ExitLoop = False
Set aCell = oRange.FindNext(After:=aCell)
If Not aCell Is Nothing Then
If aCell.Address = bCell.Address Then Exit Do
Do While InStr(1, aCell.Formula, ".") > 0
aCell.Formula = Replace(aCell.Formula, ".", ",")
Loop
Else
ExitLoop = True
End If
Loop
End If
Exit Sub
Err:
MsgBox Err.Description
End Sub