|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Wednesday, March 27, 2013 7:18 AM
Points: 374,
Visits: 407
|
|
I need to display a date in uk format without the time portion. My report runs from a AS cube so cant use convert in SQL. I think you can set the language option for the whole report. Anyone know how. Thanks,
www.sql-library.com
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Monday, April 23, 2012 8:47 AM
Points: 10,
Visits: 13
|
|
Jules, I think it's very simple to change the format of the date in Reporting services. High light the cell in reporting services, click the properties for Date field, Choose custom and put the format as dd/MM/yyyy and it worked for me in displaying the dates in UK format. Regards 
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, September 21, 2012 2:15 AM
Points: 6,
Visits: 140
|
|
Working on SSRS, Issue faced with International data display in report. I used =FormatDateTime(Parameters!StartDate.Value) it will work in US as per date format "mm/dd/yyyy" But how same date format will dsiplay for user like India or other countries? how do set International Date format in SSRS.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Yesterday @ 4:52 AM
Points: 1,397,
Visits: 2,738
|
|
There is a simpler way, by default reporting services are installed using English (United States) as the default date format adjust the Report properties language to English (United Kingdom)
Facts are stubborn things, but statistics are more pliable - Mark Twain Carolyn SQLServerSpecialists
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Wednesday, January 23, 2013 6:19 AM
Points: 39,
Visits: 143
|
|
On a slightly different note, in Business Intelligence Design Studio any date parameters seems to want input in MM/DD/YYYY format regardless of the language setting of the report. As my default dates are DD/MM/YYYY this means I have to tweak them everytime I run a report whilst testing it in BIDS.
Any ideas?
Thanks Jonathan
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Yesterday @ 12:35 PM
Points: 6,650,
Visits: 5,666
|
|
Nilesh,
Please start new threads when asking additional questions. I almost answered the original poster when I saw that he had posted back in 2006 and his question was probably not relevant any more.
Brandie Tarvin, MCITP Database Administrator, MCDBA, MCSA
Webpage: http://www.BrandieTarvin.net LiveJournal Blog: http://brandietarvin.livejournal.com/ On LinkedIn!, Google+, and Twitter.
Freelance Writer: Shadowrun Latchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Wednesday, April 10, 2013 7:29 AM
Points: 51,
Visits: 236
|
|
Jonathan Powell (1/24/2008) On a slightly different note, in Business Intelligence Design Studio any date parameters seems to want input in MM/DD/YYYY format regardless of the language setting of the report. As my default dates are DD/MM/YYYY this means I have to tweak them everytime I run a report whilst testing it in BIDS.
Any ideas?
Thanks Jonathan
bump
I too get bugged by this problem, Is there any way to resolve? Is annoying entering in us format and all dates in report come out in the format I want (yyyy-mm-dd) grr
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Yesterday @ 12:35 PM
Points: 6,650,
Visits: 5,666
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, November 21, 2008 5:46 AM
Points: 1,
Visits: 8
|
|
The is a persistent problem and an annoying one that is part of the "America is so big that others will just have to accept our defaults" issues. Others include the constant reversion of Outlook to an American spelling dictionary and printers mysteriously adopting "Letter" rather than A4 paper sizes, no matter how many times you tell them otherwise.
I get round this particular issue by always using three-letter month names rather than numbers for the months. This disambiguates the day/month problem, eg: Apr 9 07 is the same as 09 Apr 2007. This always seems to work for data input but the problem is training those pesky users. I use a system that forces them to use three-letter months and will not accept moth numbers so they get used to it in the end
Kind regards
Paul :)
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, February 23, 2010 4:31 AM
Points: 1,
Visits: 15
|
|
Does not make sense but works for me
"Printed On " & Format(now,"dd/MM/yy")
|
|
|
|