Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
contract yrmnth amt
123 201209 100
123 201208 200
123 201207 300
543 201206 400
543 201206 500
543 201205 600
Given the above table...
contract amt
123 100
543 900
required the above table..
here amt for max date for each contract is required..
I require the calculation in expression not in calculated dimension
Any help would be appereciated.
Thanks
If contract is the dimension, the following expression will give what you need.
FirstSortedValue(amt,-yrmnth)
Hope this helps.
Hi sudeep,
just write expression on
sum(if(yrmnth=Aggr(nodistinct max(yrmnth),contract),amt,0))
Hope this helps you
Regards,
Muni