up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

Hi Grant - I think you accepted my answer before I edited it to respect regional settings. Check updated answer. – Chris Latta Oct 8 '09 at 23:30
feedback

1 Answer

up vote 1 down vote accepted

The reports have their own Internationalisation settings - they don't use the systems.

Open your report Properties page (Click on the blank area of the report and check the Properties panel) and look at the Language settings. It will be set to English (United States). Set it to =User!Language to make it respect the user's regional settings.

link|improve this answer
ah thanks Chris.. i like the first answer better actually :) – Grant Oct 9 '09 at 1:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.