Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Hi,
you didn't give any details... nobody will help you like this.
decribe your problem, attach images, sample data, sample app
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.