Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
suvechha_b
Creator III
Creator III

min date_created not showing correctly

Hi All ,

Please kindly assist  ,

How can I get the min date_created in the below dimension . I don't want the timestamp of the date_created .

created.PNG

Currently I used this -

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

But it showing me with timestamp.

Even if I used -

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

it is not showing the timestamp but coming in two different line .

My requirement is -

Application Date should reflect 2018-07-14 in one line

Thanks,

1 Reply
sibin_jacob
Creator III
Creator III

Hi Bhadra,

Please use the floor function before to Date function


Date (

Floor(

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

))