Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have to have 4 columns...
Lease Name Building Code BU Exp Rsf
123 ABC WH 12/12/2020 20,000
456 ABC OFFICE 12/6/2016 30,000
789 ABC DC 12/7/2018 6,000
I want to display 1 row on Building Code and max of Exp and sum(Rsf)
O/p
Building Code BU Exp Rsf
ABC WH 12/12/20120 56,000
How can I do this ?
Thank you.
Dimension:
Expressions:
PFA
Dimension:
Expressions:
You may need to format the exp value as a date though.
HTH
Andy
PFA
I need the BU based on the exp date as well
FirstSortedValue(BU),this gives me error !
see this
U can try,
=FirstStoredValue(Bu,-Exp) // here "-" negative symbol gives u the sort order with highest value.
=FirstStoredValue(Exp,-Exp)
=sum(Rsf)
Did you miss the -Exp Pavana?
Look closely at what Gysbert suggested