I have a userform which requires date input and up until today hasn't caused an issue (Used for the last 2 weeks).
When the date is input it posts the information to a staging sheet that is visible on a printable page.
The format that originally worked was -
ActiveCell.FormulaR1C1 = TextBox4.Value
But with the date now being 03/11/2014 it is switching this round to 11/03/2014.
I then tried to change this code to format it as a date e.g.
ActiveCell.FormulaR1C1 = Format(TextBox4.Value, "DD/MM/YYYY")
But again the date showed as 11/03/2014.
Does anyone have a solution to this date format error?
Thanks Al