Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to get the last order Date for each customer using the FirstSortedValue function
For example
Name OrderDate
miguel 21/01/2014
Jose 30/11/2014
Carlos 13/01/2014
Miguel 21/11/2014
the output data look like
Name OrderDate
Miguel 21/11/2014
Jose 30/11/2014
Carlos 13/01/2014
Anyone can help me?
This should work in a chart expression:
FirstSortedValue( Date#(OrderDate,'DD/MM/YYYY'), Date#(OrderDate,'DD/MM/YYYY'))
I just solved.
Only had to add symbol - to parameters and it works correctly.