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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
suvechha_b
Creator III
Creator III

How can I get the min of date_created in dimension of pivot table.

Hi All ,

How can I get the min of date_created in dimension of pivot table.

Sample eg ,

date_created.PNG

My requirement -

I want to display 2018-06-30 13:16:00 as Min Date Created.

Thanks

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Use expression:

=Timestamp(Min(Total date_created))

View solution in original post

2 Replies
tresesco
MVP
MVP

Use expression:

=Timestamp(Min(Total date_created))

sunny_talwar

Or this if you want minimum date by batch_ref

Aggr(Min(TOTAL <batch_ref> date_created), batch_ref, date_created)