Hi community
my sub wont find single occurence of "," only when i type additional comma it started to work.
So only cells with 2 and more occurances of the comma character are processed correctly.
inp always returns Nothing
any help would be appreciated
my sub wont find single occurence of "," only when i type additional comma it started to work.
So only cells with 2 and more occurances of the comma character are processed correctly.
Code:
Sub proc()
Dim inp As Range
Dim outp As Range
Cells(1, 7).Activate
Set inp = ActiveCell.Find(What:=",")
End Sub
inp always returns Nothing
any help would be appreciated