| |
yiksun
Posts: 2
Score: 0
Joined: 4/3/2005
From:
Status: offline
|
I want to write a macro that can change numeric values in cells to text. Here is my code but it doesn't work. Sub changeType() For Each n In Range("C1:C13") ' Substitute your range here n.Value = "'" + n.Value Next n End Sub Could anyone help me to solve the problem? Thx
|
|