Forum Discussion
Display rank for current user
Hi Phil_Seamark
No, it's not - the financial year is selected via slicers.. is it possible to carry that across pages?
I have a measure calculate what the selected financial year is, which is used in other measures to filter the data.
The etou gwh won measure calculation is this:
ETOU GWh Won = CALCULATE(SUM(WIP_Data[TOU Volume]),
FILTER('WIP_DATA',WIP_Data[Outcome]="Won"),
FILTER(ALL(Dates),Dates[FINANCIAL_YR]=MAX(Dates[FINANCIAL_YR])),
FILTER(WIP_Data,WIP_Data[Fuel ]="Elec"))+0
This is the current Rank measure:
ETOU Rank = RANKX(ALL(Managers[MANAGER_NAME]),[ETOU GWh Won])
Hi Anonymous
Slicers can only filter visuals on the same report page as the slicer. They have no effect on other pages. Will that be a problem?
- Anonymous9 years agoNot applicable
Not at all, I've put a financial year slicer on the details page as well, so the managers can see how they did in years past
- Phil_Seamark9 years agoMicrosoft Employee
Hi Anonymous
One idea is to create a calcuated table in with data aggregated to just what you need and add the [ETOU GWh Won] and [Rank] formulas as calcuated columns on the calcuated table
- Anonymous9 years agoNot applicable
I had the same thought, couldn't get the rank working there either as because I want it to rank the mangers by financial year.
I found this post - https://community.powerbi.com/t5/Desktop/How-to-Rank-a-list-based-on-2-values-double-rankX/td-p/44008 not sure how to apply it to what i'm trying to do