Click here to Skip to main content
15,886,110 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralHow to conver Date to yyyyMMdd format in SSRS PinPopular
virang_218-Nov-12 14:41
virang_218-Nov-12 14:41 
In few of the reports I came across this while doing some maintenance work... beautiful isn't it ???

VB
select ......
where 

and F2TRDT  >= " & Year(Parameters!DateFrom.Value)*10000+Month(Parameters!DateFrom.Value)*100+day(Parameters!DateFrom.Value) & "
and F2TRDT  <= " & Year(Parameters!DateTo.Value)*10000+Month(Parameters!DateTo.Value)*100+day(Parameters!DateTo.Value) & "

Zen and the art of software maintenance : rm -rf *

Math is like love : a simple idea but it can get complicated.

GeneralRe: How to conver Date to yyyyMMdd format in SSRS Pin
csharpbd8-Nov-12 21:40
professionalcsharpbd8-Nov-12 21:40 
GeneralRe: How to conver Date to yyyyMMdd format in SSRS Pin
Bernhard Hiller9-Nov-12 1:20
Bernhard Hiller9-Nov-12 1:20 
GeneralRe: How to conver Date to yyyyMMdd format in SSRS Pin
virang_2110-Nov-12 10:51
virang_2110-Nov-12 10:51 
GeneralRe: How to conver Date to yyyyMMdd format in SSRS Pin
Bernhard Hiller10-Nov-12 21:45
Bernhard Hiller10-Nov-12 21:45 
GeneralRe: How to conver Date to yyyyMMdd format in SSRS Pin
_Damian S_12-Nov-12 14:17
professional_Damian S_12-Nov-12 14:17 
GeneralRe: How to conver Date to yyyyMMdd format in SSRS Pin
Sentenryu12-Nov-12 4:48
Sentenryu12-Nov-12 4:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.