Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I am facing an issue regarding different 3 customers mapping in a similar project and their revenue also same .....so the output has to display like revenue should display once and othere revenues have to be diplayed as per different sub project. herewith i attached a image for your reference.
Thanks in Advance
Solved! Go to Solution.
Hi @gladies123
Add a index column from power query, then create a measure
Measure 2 =
VAR lastindex =
CALCULATE (
MAX ( 'Table 3'[Index] ),
ALLEXCEPT ( 'Table 3', 'Table 3'[Sub Project], 'Table 3'[Revenue] )
)
RETURN
CALCULATE (
SUM ( 'Table 3'[Revenue] ),
FILTER ( 'Table 3', 'Table 3'[Index] = lastindex )
)
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @gladies123
Add a index column from power query, then create a measure
Measure 2 =
VAR lastindex =
CALCULATE (
MAX ( 'Table 3'[Index] ),
ALLEXCEPT ( 'Table 3', 'Table 3'[Sub Project], 'Table 3'[Revenue] )
)
RETURN
CALCULATE (
SUM ( 'Table 3'[Revenue] ),
FILTER ( 'Table 3', 'Table 3'[Index] = lastindex )
)
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
What is the logic to decide which Customer shows the value for the shared sub projects?
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Actually there is no logic and no order in that either 1 customer has to display the value
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.