Forum Discussion
Get Activities by comparing between two or more projects in Power BI
Hello Albert,
Thank you for the solution there was a mistake on my end, The output that I want to get is different where I have replaced the last image with new image. So can you please help me with that one change by refereing once again the last image in the question?
Please check the bottom two images as well to modify the measure, and the resultant output should be like bottom two images.
Hi adarshthouti ,
Based on your changes, I modified my dax as follows
Exist_in_Baseline =
IF(
CALCULATE(
COUNTROWS(BASELINE),
FILTER(
ALL(BASELINE),
SELECTEDVALUE('CURRENT'[proj_id]) <> SELECTEDVALUE(TASK[proj_id])
)
) > 0 ,
"Yes",
"No"
)Exist_in_Current =
IF(
CALCULATE(
COUNTROWS('CURRENT'),
FILTER(
ALL('CURRENT'),
SELECTEDVALUE(BASELINE[proj_id]) <> SELECTEDVALUE(TASK[proj_id])
)
) > 0 ,
"Yes",
"No"
)
Fianl output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
- adarshthouti2 years agoFrequent Visitor
One more thing is like for example from the below image "C321" and "R214" are present in both the projects so the Exist_in_baseline and Exist_in_current should be "Yes" in both the cases.