i have a range(1000 rows) that i want to apply a change to. Its basically taking a variable and placing at the front of each string along with a comma. here is a before and after
6 of 1998 3-0-1 100.00% 14-18-2 43.75%
36, 6 of 1998 3-0-1 100.00% 14-18-2 43.75%
variable was 36 in this case. I though it was simple enough, but i get a 'Type MisMatch' error.
What is proper syntax, would EVALUATE help out?? thanks
6 of 1998 3-0-1 100.00% 14-18-2 43.75%
36, 6 of 1998 3-0-1 100.00% 14-18-2 43.75%
variable was 36 in this case. I though it was simple enough, but i get a 'Type MisMatch' error.
What is proper syntax, would EVALUATE help out?? thanks
Code:
Formula = 36
With Rng
.Value = Formula & "," & .Value
End With