Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Then create a record number field in your load script:
LOAD
Code,
Date,
Value,
RecNo() as RecNr
FROM ...;
Then, in your chart table with dimension Code, use two expressions:
=FirstSortedValue(Date, -RecNr)
=FirstSortedValue(Value, -RecNr)
Then create a record number field in your load script:
LOAD
Code,
Date,
Value,
RecNo() as RecNr
FROM ...;
Then, in your chart table with dimension Code, use two expressions:
=FirstSortedValue(Date, -RecNr)
=FirstSortedValue(Value, -RecNr)
Thanks it worked.
Great . ! please accept as solution so that it will help for others.