Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

MAX DATE - NEW

Hi

I am new to qlikview and  had adopted the below table through resident load from by performing some task ,now i need Name,Date(actual Date),Data and MAX DATE(ie 04/06/2013') throughout the table ,

NameDataDATEMAX DATE
A1001/06/201304/06/2013
B1001/06/201304/06/2014
C1001/06/201304/06/2015
D1001/06/201304/06/2016
F1001/06/201304/06/2017
A2002/06/201304/06/2018
B2002/06/201304/06/2019
C2002/06/201304/06/2020
D2002/06/201304/06/2021
F2002/06/201304/06/2022
A3003/06/201304/06/2023
B3003/06/201304/06/2024
C3003/06/201304/06/2025
D3003/06/201304/06/2026
F3003/06/201304/06/2027
A10004/06/201304/06/2028
B10004/06/201304/06/2029

Thanking You

Vinayagam

1 Solution

Accepted Solutions
tresesco
MVP
MVP

May be like attached sample.

View solution in original post

2 Replies
maxgro
MVP
MVP

do you want to add to the above table a new field with (for all rows) the max of DATE field?

source:

LOAD Name,

     Data,

     DATE

    // [MAX DATE]

FROM

[http://community.qlik.com/thread/117210]

(html, codepage is 1252, embedded labels, table is @1);

left join (source)

load

// Name,

//  DATE,

    max(DATE) as NewField

Resident source   

//group by     

//     Name,

//     DATE

;

1.png

tresesco
MVP
MVP

May be like attached sample.