I am new to HANA Modeling and I am not sure how to add a Rank column.
Here is my data
Employee Date Seq Value
E001 6/21/2016 01
E001 6/21/2016 02
E001 6/22/2016 02
The data will be sorted by Employee, Date, Seq Value
I want to add a Rank column for each unique Employee + Date combination
Employee Date Seq Value Rank
E001 6/21/2016 01 1
E001 6/21/2016 02 2
E001 6/22/2016 02 1
Can I do in a Calculation View or do I need to write an SQL Script?
Thanks.
Sandy