Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ashwath26
Contributor II
Contributor II

Getting first order Date

Pls help me with the expression to get first order date. I have gone through other similar threads but couldnt understand.

I want the First Order Date of Every Customer.

2 Replies
YoussefBelloum
Champion
Champion

Hi,

you didn't give any details... nobody will help you like this.

decribe your problem, attach images, sample data, sample app

sasikanth
Master
Master

HI,

Use FirstSortedValue function to get first order date for every customer

OR

you can also get this from script level

Select min(OrderDate), Customer

from Table

Group by Cusomer;


Please do post more details in case if you cannot resolve your issue with the above suggestions.