I'm an intermediate Excel user, and am currently starting my exciting journey through Power Pivot and Power BI. Compelled mostly by data getting ever more complex and from many sources!
I'm working on building an HR People Productivity report based on Power Pivot. The raw data added to my data model looks something like this:
Name ..... Total Hrs .... Chargeable Hrs .... Training Hrs .... Prof Dev Hrs .... Mgmt Hrs
Mary ....... 82 ............... 82 ............................ 0.......................0 ......................... 0
Jane ....... 82 ............... 70 ............................ 5 ...................... 5 ........................ 2
Joseph ... 41 ............... 30 ............................ 11 .................... 0 ......................... 0
I've built my metrics setting measures such as:
Training %:=IFERROR([Sum of Training Hrs]/[Sum of Total Hrs],0)
So in my resulting pivot table I get:
Name .... Chg % .... Training % .... Prof Dev % .... Mgmt% ....Comment
Mary....... 100% ...... 0% ................. 0% .................. 0% ...........
Jane ...... 85.3% ..... 6% ................. 6% .................. 2.4% ........
Joseph .. 73% ........ 26.8% ............ 0% .................. 0% ...........
In the column comment -which will display the measure I'm trying to figure!- I need to insert a text measure to point out deviations like "Main source of non chargeable time is [Measure name] at [value in "0.0%" format]", in the case of Joseph for example would point out that Training % is at 26.8%
I've been looking around and could not find a method to compare measures vs other measures (in my actual file I have many more non-chargeable %'s to compare with). All I've found is ways to get mac values within columns.
So what I'm looking for is a way to pick the highest non chargeable % for each person, and then the text measure I need will quote the %'s name and its value.
Really appreciate your wise answers! Been trying several approaches for a while now. Thanks a lot!