Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Is there a way to to write ALLSELECTED DAX with multiple slicer values
Example:
Slicer 1 has Project Name (Project.projectname)
Slicer 2 has Project Manager (Team.ProjectManagre)
and so on
Can I do something like CACULATE(SUM(COST), ALLSELECTED(Project.projectname), ALLSELECTED(Team.ProjectManagre)) ?
Hi @sabeensp
Not sure if you've got the solution for this. I know it's very late for the reply but I was in a similiar situation and what worked for me was using CALCULATE function, with two ALLSELECTED arguments, both from different tables. That did the trick for me:
Hopefully this helps
Hello. Have you ever been able to figure out a solution? I have a very similar question that no one seems to be able to answer!
Hi @sabeensp,
Could you please mark the proper answers as solutions?
Best Regards,
Looks fine to me.
Even you can use ALLSELECTED() i.e. without any arguments/parameters
More details about this function in the link below
https://dax.guide/allselected/