Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am new to Qlik Sense. I'm currently working on a chart which represents the comparision between the current & previous scores.
I got the Current & Previous Score values using FirstSortedValue function & and commented them accordingly
Current Score = FirstSortedValue([Likelihood to Recommend Score], -Customer_Response_Date)
Previous Score = FirstSortedValue([Likelihood to Recommend Score], -Customer_Response_Date,2)
Comment = If(FirstSortedValue([Likelihood to Recommend Score], -Customer_Response_Date) > FirstSortedValue([Likelihood to Recommend Score], -Customer_Response_Date,2), 'Better',If(FirstSortedValue([Likelihood to Recommend Score], -Customer_Response_Date) < FirstSortedValue([Likelihood to Recommend Score], -Customer_Response_Date,2), 'Worse',IF(FirstSortedValue([Likelihood to Recommend Score], -Customer_Response_Date) = FirstSortedValue([Likelihood to Recommend Score], -Customer_Response_Date,2), 'Same')))
Now I'm trying to calculate the below.
1. Get the Percentage of Current Score > Previous Score(Better%), Current Score < Previous Score(Worse%) and Current Score = Previous Score(Same%).
Below is the Example Data:
Could anyone help me with the calculation.
Appreciate your help.