Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
Shriya
Contributor II
Contributor II

Max(date) not resulting in number format

Generally, we have seen that when we write Max(date) in chart then it results in  number  format ex: 156725, but in my case it is directly resulting in date format.

Also when I uses expressions which contains such variables then in general it uses num for comparison of dates

Ex: {<[Invoice Date]={">=$(=num(vStartDate))<=$()=num(vEndDate)"}>}

but here it is not showing data and if we removes 'num', then the data gets appeared,

where vEndDate=date(max([Invoice Date]),'DD-MM-YY').

Please help me to solve this issue.

1 Reply
Vegar
MVP
MVP

You are changing the Invoice Date from a date to a num to a date to a num again.

What about using this simplified version instead 

 {<[Invoice Date]={">=$(=min([Invoice Date]))<=$(=max([Invoice Date]))"}>}