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: 
ecabanas
Creator II
Creator II

How to solve this??

Hi

I have a table with my sales like:

 

SalesIDDateCustomer
PV00101/01/2015       A
PV00202/01/2015       B
PV00303/01/2015       C
PV00401/02/2015       A
PV00502/02/2015       C
PV00603/02/2015       D

and I want to create a table with the customer and the date of his first order like this:

 

CustomerDate
A01/01/2015
B02/01/2015
C03/01/2015
D03/02/2015

Anyone knows how to do it?

Many many thank's

Eduard

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

if your table's name is for example MyTab then:

Load Customer. Min(Date) as FirstOrder resident myTab Group by Customer;

let me know

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

if your table's name is for example MyTab then:

Load Customer. Min(Date) as FirstOrder resident myTab Group by Customer;

let me know

MK_QSL
MVP
MVP

Create a Straight Table

Dimension

Customer

Expression

Date(Min(Date))

ecabanas
Creator II
Creator II
Author

Great!!! many thank's