I am confused with the replace function. I have data in a cell "May,12,2015" I want to replace the first comma with a space but I keep getting errors with the code. Below is the code that I have
MyString = Range(MyDateCol & MyDateRow).Value
MyString = Replace(MyString, 4, 1, " ")...