Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
prasadreddy
Contributor III
Contributor III

Show only date

Hi All,

I have the Date field with values

                       2013-02

                       2013-03

                       2013-04

But, i want to display only '2013-04 onwards', before the 2013-04 dont want show,

i have to show this list box in dashboard level,

any one help on this appriciate

Thanx

6 Replies
tresesco
MVP
MVP

Select expression in the 'field' drop down under general tab of list box and write the expression like:

If( DateField >= '2013-04', DateField)

This should work if your date filed is in proper date format.

narender123
Specialist
Specialist

in list box

General>field>expression

write

if(datefileld='2013-04','2013-04','2013-04')

NOw list box only show 2013-04

or if you want date>=2013-04

if(datefileld >='2013-04',datefileld)


Thanks

Narender

prasadreddy
Contributor III
Contributor III
Author

Hi Tres,

I tried this, but it is showing all values in decending order

narender123
Specialist
Specialist

In sort select datefield as ascending

tresesco
MVP
MVP

must be format issue, try this:

If( date#(DateField,'YYYY-MM')>= '2013-04', DateField)

prasadreddy
Contributor III
Contributor III
Author

Hi Tres,

Its working

Thank you