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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

need expression

Hi,

  I need expression,suppose  i have one order number as 100 and it is having multiple items as 'A' ,'B','C' and this multiple items have

multiple promise dates like

order  item   date

101    -A-    1-1-2013

          B    -2-2-2013

         C     -3-3-2013

now i want to show this particular order in max month

2 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Try with Date(Max(DateField))

tresesco
MVP
MVP

May be like this?

=Aggr(FirstSortedValue(item, -Month(date)),order)

assuming that you want to find the maxdate item

if you select an order, with this expression, you would get the max date item; if you have one dimension as order, then AGGR part would not be required.