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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
panipat1990
Creator II
Creator II

Help

Hi Team,

I have an excel With Many Fields....And there is Many Dates in Date Column..But i Want to Maxium Date From Date Column..How is it possible..Please Help me...  So For clearing i am attaching excel ....

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be try this:

Table:

LOAD CustomerID,

    EmployeeID,

    Freight,

    OrderDate,

    OrderID,

    ShipperID

FROM

excel_Testing.xls

(biff, embedded labels, table is Sheet1$);

Right Join (Table)

LOAD Max(OrderDate) as OrderDate

Resident Table;


Capture.PNG

View solution in original post

4 Replies
sunny_talwar
MVP
MVP

Max Date for the overall date set? or max per customer? Can you elaborate on the expected output?

panipat1990
Creator II
Creator II
Author

IN Date Column i want to show only maximum date Just only one date(maximum date).

panipat1990
Creator II
Creator II
Author

Yes Max Date for the overall date set...

sunny_talwar
MVP
MVP

May be try this:

Table:

LOAD CustomerID,

    EmployeeID,

    Freight,

    OrderDate,

    OrderID,

    ShipperID

FROM

excel_Testing.xls

(biff, embedded labels, table is Sheet1$);

Right Join (Table)

LOAD Max(OrderDate) as OrderDate

Resident Table;


Capture.PNG