Forum Discussion
ChirSidh
Helper II
2 years agoDo not aggregate Project level from the Work order level
in power bi matrix table, i have employee, project number in rows and in columns monthwise multiplier. When i drill down the project number, i have all the work orders present in the project number. ...
TomMartens
Super User
2 years agoHey ChirSidh
you can IF and ISINSCOPE (https://dax.guide/isinscope/) to check the "level" you are currently looking at, and determine the "calculated multiplier" you want to display.
Hopefully, this provides what you are looking for.
Regards,
Tom
ChirSidh
Helper II
2 years agoHi Tom, i am using this formula ,
Show Bottom Hierarchy Values =
IF(
ISINSCOPE('Multiplier Movement'[Work Order No]) || ISINSCOPE('Multiplier Movement'[Work Order Description]),
'Multiplier Movement'[Individual Multiplier], -- Display individual multiplier for the bottom hierarchy
IF(ISINSCOPE('Multiplier Movement'[ Project]), 'ProjectLevel Mult'[Project Level Multiplier], BLANK()) -- Display project multiplier for the project level
)
However this measure, 'ProjectLevel Mult'[Project Level Multiplier] - Project Level Multiplier =
DIVIDE(
SUM('ProjectLevel Mult'[ProjectNetRevenue]),
SUM('ProjectLevel Mult'[ProjectDirectLabourCost]),
0
)
DIVIDE(
SUM('ProjectLevel Mult'[ProjectNetRevenue]),
SUM('ProjectLevel Mult'[ProjectDirectLabourCost]),
0
)
is calculating the multiplier for all the months together, where as in my table i want the project level multiplier per month to be ccalculated.