I have a for each loop, how can I incrementally increase my cells output by one column? Currently this just writes to one cell in output.
Sub quarterly()
Dim result As String
rev = Sheets("fin").Range("B105:F105")
For Each x In rev:
result = Replace(x, "M", "")
Sheets("output").Cells(2, 2) = result
Next
End Sub