Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
ChirSidh
Helper II
Helper II

Do 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. I have the multiplier at work order level. I have calculated project level multiplier separately. However when i drill up, for the project it is automatically showing the aggregate of work order level multiplier, i dont want to aggregate this , i want to show for a project level a separate calculated multiplier

2 REPLIES 2
TomMartens
Super User
Super User

Hey @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 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Hi 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
)
 
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.
 
multiplier2.JPGmultiplier1.JPGmultiplier.JPG

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors