I have this VBA Script and I don't know how to make dynamic the bold section, so that the formula would be =StripAccent(C2), =StripAccent(C3) and so on for each i.
For i = 2 To 10
Cells(i, 5) = "=StripAccent(Ci)"
Next i
I read about double quotes, but it didn't work there.