Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I made some calculated expression in order to calculate the scorecard for sale hierarchy,
after calculating the score, I assign a grade against each sale representative(Expression Given below) whichi achieved successfully.
But i also want a summary of assigning grades like
Count of Excellent is 50 let suppose
Count of Satisfactory =20
and so on....
How can i do that?
if (
( [Total BSC Score] )
>= 90 , 'Excellent'
,
if (
([Total BSC Score])
>= '80' and ([Total BSC Score] ) < '90' , 'Satisfactory'
,
if (
([Total BSC Score] )
>= '70' and ([Total BSC Score] ) < '80' , 'Average' ,
if (
([Total BSC Score] )
< '70' , 'Under Performing' ) )
)
)
Can you share some sample to work upon?
This can be achieved using bucket logic in calculated Dimension.
Can you share some sample to work upon?
This can be achieved using bucket logic in calculated Dimension.
Please refer the snapshot, sample work is not available.
I calculate percentages and according to their percentage slab, I calculate the score of the individuals.
combining the score from all parameter and taking the sum of all expression's label like [A] +[B] + [C] = Total score then i calculate the Grade like Excellent, underperforming etc.
i also create variables for that in order to use Grade as a Dimension and expression as the count of the salesperson.
Hi,
You can use Set Analysis to count, for example, Excellent. You have to use this syntax:
Count({$<[Total BSC Score] = {"=>90"}>} [Total BSC Score])
For the others you can change the syntax. For example, use {">=70 < 80"} to count 'Average'.
Anyone else?
Please come up with solutions.
Is [Total BSC Score] a field created in the script? If it is, why don't you just perform this in the script like this?
If([Total BSC Score] >= 90, 'Excellent', If([Total BSC Score] >= '80', 'Satisfactory', If([Total BSC Score] >= '70', 'Average', 'Under Performing'))) as Ratings
and now do this
Dimension
Ratings
Expression
Count(Ratings)