Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Buenos días,
Estoy trabajando una tabla de Evaluación de Desempeño para la cual tengo dos datos base, el nombre del colaborador, y su producción (POND. TOTAL), la idea es establecer una meta de producción para el periodo de evaluación.
Sum ([POND. TOTAL])
AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR)))
STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR)))
AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))) + STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR)))
AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))) - STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR)))
Sum ([POND. TOTAL]) - (AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))) + STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))))
Sum ([POND. TOTAL]) - (AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))) - STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))))
Adicionalmente a ello, establecí un formato condicional a las columnas DIF. 1, DIF. 2 y POND. TOTAL:
if(Sum ([POND. TOTAL]) - (AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))) + STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))))<0 AND Sum ([POND. TOTAL]) - (AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))) - STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))))>=0,RGB(0,112,192))
Como mencioné líneas arriba, la idea es establecer una meta, por ello debo calcular PROMEDIO 2, DESVESTA 2, y META.
¿Cómo puedo calcular PROMEDIO 2, DESVESTA 2, y META?
Entiendo que puede ser:
Avg(Aggr(
if(Sum ([POND. TOTAL]) - (AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))) +STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))))<0 AND Sum ([POND. TOTAL]) - (AVG(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))) - STDEV(TOTAL(AGGR(SUM([POND. TOTAL]),COLABORADOR))))>=0,Sum ([POND. TOTAL]))
, COLABORADOR))