June 28, 2006 at 5:52 am
June 28, 2006 at 8:52 am
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
January 24, 2008 at 3:05 am
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.
January 24, 2008 at 3:17 am
January 24, 2008 at 6:24 am
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
January 25, 2008 at 6:35 am
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.
February 6, 2008 at 3:23 am
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 :hehe:
February 6, 2008 at 3:51 am
Please do not post new questions to an existing thread. Post a new thread.
April 9, 2008 at 11:51 am
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 🙂
November 21, 2008 at 2:42 am
Does not make sense but works for me
"Printed On " & Format(now,"dd/MM/yy")
November 21, 2008 at 9:11 am
= right(("0" + Cstr(Day(Fields!admdate.Value))),2) + "/" + right(("0" + Cstr(Month(Fields!admdate.Value))),2) + "/" + Cstr(Year(Fields!admdate.Value))
assume your date field name - admdate
June 11, 2009 at 8:54 am
Hi,
I could set my format string in the property 'Format' like dd.MM.yyyy and get the correct German date format.
Rgds
August 17, 2009 at 5:08 am
Hi ,
you can Used this
=Format(Fields!myDate.Value, “MM/dd/yyyy”)
August 17, 2009 at 5:23 am
Apjchandresh, you're misunderstanding what they're asking for. The format is already MMDDYYYY. They're trying to reverse the day & the month so Day is listed first.
September 22, 2009 at 6:21 pm
has anyone made a 'cheat sheet' for formatting in SSRS? It would be very helpful as I find myself constantly googling date/time formats...
Something like: http://msdn.microsoft.com/en-us/library/73ctwf33.aspx
=Format(Fields!startdate.Value, "dd/mm/yy")
But refer to url for exact formatting
Cheers,
Ryan
Viewing 15 posts - 1 through 15 (of 45 total)
You must be logged in to reply to this topic. Login to reply