Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Maybe try using Chart of type Straight Table and :
LOAD Number, Min(Date) AS Date
FROM [Mappe1.xlsx] (ooxml, embedded labels, table is Tabelle1)
GROUP BY Number;
Thank you for the fast answer. it works
Load date,number
from Path
where not exists(date,number);
press cntl+r select table box it show only distinct values