Forum Discussion
IK
2 years agoRegular Visitor
Dax
Hi. I have a sales plan for managers, not for clients. When I build a hierarchy in a matrix of tables, where first the manager is then the client, I want the plan to show only for managers, and not f...
- 2 years ago
Did you try my solution?
- 2 years ago
Hi,
Please try this formula:Manager % = IF( ISINSCOPE(T_FormulaDax[ManagerID]) && NOT(ISINSCOPE(T_FormulaDax[Client])), SUM(T_FormulaDax[Plan%]), "" )
In my example is working as you want. Please let me know if this solve your problem.
_AAndrade
Resident Rockstar
2 years agoHi,
Try this:
IF(
ISINSCOPE( name of your manager column),
CALCULATE( SUM('Manager_Plan'[Plan, %]))
)
IK
2 years agoRegular Visitor
Hi. Thank you for reply. But it doest work((
- _AAndrade2 years ago
Resident Rockstar
Hi,
Please try this formula:Manager % = IF( ISINSCOPE(T_FormulaDax[ManagerID]) && NOT(ISINSCOPE(T_FormulaDax[Client])), SUM(T_FormulaDax[Plan%]), "" )
In my example is working as you want. Please let me know if this solve your problem.