Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
callid | date | description |
---|---|---|
1 | 1.1.14 | a |
2 | 2.1.14 | b |
2 | 5.1.14 | c |
i want to get this table
callid | last des |
---|---|
1 | a |
2 | c |
i want to get the latest description (by date).
what should i put in the last des expression?es
Adi Arnon,
Just load your data, make sure your date column is loading according to your system format.
In st. table: Dim as Callid and Exp as =FirstSortedValue(description,-date)
Thanks,
Jagan
Hi
max(aggr(description, date)
beware date has to be under date format
best regards
chris
You can use the expression
MaxString(description)
Should be able to use firstsortedvalue(). Something like:
firstsortedvalue(description, -date)
Hope this helps!
Adi Arnon,
Just load your data, make sure your date column is loading according to your system format.
In st. table: Dim as Callid and Exp as =FirstSortedValue(description,-date)
Thanks,
Jagan
hi,
its not working =\
what do you mean by date format?
Hi,
use this expression
MaxString(Aggr(description,date))