Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
navaneeth79
Contributor II
Contributor II

Qlikview Text box

='Tickets '& Status  &' '&today()-30 &' - '&today() is the expression I gave in text box

the required output is Tickets Status 14-01-2017 - 12-02-2017

but I am getting - 12-02-2017

require help on this

Labels (1)
3 Replies
sunny_talwar
MVP
MVP

Try this

='Tickets '& Status  &' '& (Today() - 30) &' - '& Today()

ychaitanya
Creator III
Creator III

='Tickets Status'  &' '& Date(Today() - 30) &' - '& Date(Today())

krishnacbe
Partner - Specialist III
Partner - Specialist III

Try below expression.

='Tickets '& Date(Today() - 30,'DD-MM-YYYY') &' - '& Date(Today(),'DD-MM-YYYY')