Forum Discussion
Sri_phani
Helper III
2 years agoIgnore RLS and get the rank
Hi, I have Employee-wise RLS on the Active agent's table, but I have a separate table called All metrics that has KPIs (1-1 relationship). Now when I applied RLS the ranks show as 1. This is expect...
Sri_phani
Helper III
2 years agolbendlin How do I incorporate Crossfilters in this measure?
Team rank =
VAR table_ =
ADDCOLUMNS(
FILTER(
all('All Metrics'[Employee Name],
'All Metrics'[Supervisor 1 (Team Manager) ]),
'All Metrics'[Supervisor 1 (Team Manager)] = MAX('All Metrics'[Supervisor 1 (Team Manager) ])
),"attain",
[Resolve Attainment]
)
Return
Format(rankx(table_,[Resolve Attainment],,desc,Dense), 0)&"/"&COUNTROWS(table_)
lbendlin
Super User
2 years agouse CALCULATETABLE instead of FILTER