Link to home
Start Free TrialLog in
Avatar of Mr_Shaw
Mr_Shaw

asked on

SSRS date parameter format

I have a SSRS report which include a date parameter.

I am in England and I want to see the parameter date picker output default to the English date format dd/mm/yyyy.

How can I do this?
Avatar of aelliso3
aelliso3
Flag of United States of America image

Unfortunately, you cannot ... at least not without using a custom front-end (like asp) or something that can alter the XML at runtime. SSRS does not have this functionality available.
Avatar of Mr_Shaw
Mr_Shaw

ASKER

Sorry...

I should say that I am still working in the BIDS enviroment.

Another person in the office who is also using BIDS is able to select the data using the English format.

There must be a setting to change?
I totaly misunderstood what you were asking ...
Try going to the properties window for the the report and changing the Language setting to  'en-US'
ASKER CERTIFIED SOLUTION
Avatar of AntonyDN
AntonyDN

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mr_Shaw

ASKER

i'll just reboot
Avatar of Mr_Shaw

ASKER

Why do you think it works on another computer but not mine?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Howard Cantrell
where you are showing the parameter date in the report.....
all you have to do is use format.
example:   =Format(Parameters!StartDate.Value, "dd/MM/yyyy")
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
this can also be setup in the expression area of the parameters properties
 =Format(Parameters!StartDate.Value, "dd/MM/yyyy")
Avatar of Mr_Shaw

ASKER

Thanks for the help...