Hi, i have built a reporting services report off SQL server 2005 and am having trouble getting the date to format correctly in a stand-alone textbox.
The code i am using is as follows:
="Date: " & FormatDateTime(Parameters!date.Value, 2))
-- According to MSDN it should work off my systems culture when set to '2' however it is not.
Currently being displayed = MMDDYYYY, Want to display = DDMMYYYY
Does anyone know what i am doing wrong?