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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out 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

Labels (1)
2 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Try with Date(Max(DateField))

tresB
Champion III
Champion III

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.