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: 
varmekontrol
Creator
Creator

Qlik sense - Only show latest date in table

Hi

I am pretty sure this was already answered several times. I know it´s out there, I have read plenty of examples, but I can´t seem to implement the suggestions on my table.

I have a table like the one below.

Import datenoserialaction
2016-01-05734394433126681TRS - aldrig hørt
2016-01-08734394433126681TRS - aldrig hørt
2016-01-12734394433126681TRS - aldrig hørt
2016-08-30734394433126681TRS - ikke hørt I 16 dage

I only want the latest "import date" = 2016-08-30 to be visible in my table.

So I only have this in my table.

2016-08-30734394433126681TRS - ikke hørt i 16 dage
6 Replies
arvind1494
Specialist
Specialist

do u need this in scripting or at front end

varmekontrol
Creator
Creator
Author

Front-end.

Or it can be done in scripting, the only problem (at my end) is that the import_date is pulled with.

date(floor(timestamp#(subfield(filebasename(), '_', 2), 'YYYYMMDD')), 'YYYY-MM-DD') as import_date

So not sure how to wrap it in

varmekontrol
Creator
Creator
Author

Does no one have a solution to my problem?

priyalvp24
Creator
Creator

Hi,

Try This as date dimension

=$(=max(Import date))

Neymar_Jr
Creator II
Creator II

Hi,

Try using - Date(aggr(MAX([Import date no]),serial))

Thanks,

RT

balabhaskarqlik

Do you want to see only the Max date or Do you want to see the Entire Max Date record.

May be, Try this:

For KPI object, to show only max date.

=Max(ExpiryDate)

In table object:

Use: Import Date,no,Serial as Dimensions.

Expression - Considers max date , shows maxdate action value.

=Only({<[Import Date]={"$(=Date(Max([Import Date]),'YYYY-MM-DD'))"}>}  Action)