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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show only first date with number to this date

Hello,

I`m new to qlik view. I have loaded a table to qlik view.

The table box in qlik view and the skrypt you can see here:

Now, I dont want to see all the dates with the same numbers. I only want to load the numbers with the first date, so that I will get this table, only with 2 rows:

How I have to edit the scrypt? How should the scrypt looks like?With firstsortedvalue? I have tried some things but it didnt help me.

4 Replies
Anonymous
Not applicable
Author

Maybe try using Chart of type Straight Table and :

  • Dimension:  Number
  • Expression:  Min(Date)

evan_kurowski
Specialist
Specialist

LOAD Number, Min(Date) AS Date
FROM [Mappe1.xlsx] (ooxml, embedded labels, table is Tabelle1)
GROUP BY Number;

Not applicable
Author

Thank you for the fast answer. it works

Not applicable
Author

Load date,number

from Path

where not exists(date,number);

press cntl+r select table box it show only distinct values