I have tried formatting the input fields as text but to no avail. When I step through it in the debugger it shows a double number which I presume is date conversion. I just want it to treat it as text and not convert it to a time/date.
Can somebody tell me how to prevent the conversion?
The text field has YY.MM.DD hh:mm:ss in text. I want to remove the seconds so I use:
Select.Value=MID(Select.Value,1,16)
This does not work. I have put text in the field and it does truncate the last 3 positions.