This problem seems very simple, but I just can’t find a solution (I’m already losing my mind about it :))
OK, so I just want to put a specific value in an excel cell using vba code, as simple as this:
Cells(1,1).Value2 = "123,456"
Problem: this is a string (intentionally), but excel always converts it to a number and puts that number in the cell instead of the string I wanted.
How can I get excel not to convert it and just insert exactly what I want in the cell (row)?
Thanks,
source share