Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » Date filtering(Date filtering)
Date filtering [message #1006107] Tue, 29 January 2013 22:22 Go to next message
Lauren Campbell is currently offline Lauren CampbellFriend
Messages: 2
Registered: January 2013
Junior Member
Hello,

I am working to filter a database with BIRT. I would like to filter so that only items with today's month and year are outputted. For example, the label column has tons of labels. I only want to show the items with "ID-13-1". 13 stands for 2013 and 1 stands for January. In february, I want it to automatically only show "ID-13-2". To do this I was trying to do the match filter:

"ID-"
BirtDateTime.year(BirtDateTime.today())
"-"
BirtDateTime.month(BirtDateTime.today())



I thought that would work but it does not. It does work if I actually type in "ID-13-1" but I wanted it to automatically output by the current date. Does anyone know how to do this?
Re: Date filtering [message #1006123 is a reply to message #1006107] Wed, 30 January 2013 03:36 Go to previous message
Michael Williams is currently offline Michael WilliamsFriend
Messages: 1925
Registered: July 2009
Senior Member

Try this:

"ID-" + BirtDateTime.year(BirtDateTime.today()).toString().substr(2,2) + "-" + BirtDateTime.month(BirtDateTime.today())


Michael

Developer Evangelist, Silanis
Previous Topic:Web Viewer Fails to Aggregate
Next Topic:Cannot start OSGI framework
Goto Forum:
  


Current Time: Thu Apr 18 21:14:08 GMT 2024

Powered by FUDForum. Page generated in 0.01894 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top