I have some vba macro, which should insert month and year with mask mmm.yyyy (i.e. 008.2014).
When macro is trying to put value "008.2014" into cell, excel recognizes it as a number and change value into number 8.2014. What's more, regional settings in windows has other decimal place -> comma.
How can I stop recognizing such a string as a number in Excel? I've tried str() in macro, but it hasn't helped...
When macro is trying to put value "008.2014" into cell, excel recognizes it as a number and change value into number 8.2014. What's more, regional settings in windows has other decimal place -> comma.
How can I stop recognizing such a string as a number in Excel? I've tried str() in macro, but it hasn't helped...