Custom sort OTBI Column
I have a column in my otbi analysis.
They return me the values Exceeds Performance Expectations, Inadequate, Meets Performance Expectations ,Nearly there, No PMS Rating.
The order I want to display them in my report is Inadequate, Nearly there, Meets Performance Expectations, Exceeds Performance Expectations, No PMS Rating.
How to custom sort them?
Even if I use case statement like this , it does not work.
CASE WHEN "Custom Columns"."Custom Segment46 Meaning" = 'Inadequate' THEN 'Inadequate'
WHEN "Custom Columns"."Custom Segment46 Meaning" = 'Nearly there' THEN 'Nearly there'
WHEN "Custom Columns"."Custom Segment46 Meaning" = 'Meets Performance Expectations' THEN 'Meets Performance Expectations'
WHEN "Custom Columns"."Custom Segment46 Meaning" = 'Exceeds Performance Expectations' THEN 'Exceeds Performance Expectations'