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,
In order to do the compartive analysis I've created number of dimensions that assist me to differniate between the groups. for instance:
filters:
dimensions:
In order to create a group that filters only the specific dataset I've created measures like below -
Solved! Go to Solution.
Hi @tarolz132q ,
The first parameter of SUMMARIZE() is the table, and you can nest FILTER() outside of it, like this:
SUMMARIZE(
FILTER('Table','Table'[column1]=xxx),
'Table'[column2],
"abc",
...
)
If I have misunderstood your needs, please feel free to contact me.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi @tarolz132q ,
The first parameter of SUMMARIZE() is the table, and you can nest FILTER() outside of it, like this:
SUMMARIZE(
FILTER('Table','Table'[column1]=xxx),
'Table'[column2],
"abc",
...
)
If I have misunderstood your needs, please feel free to contact me.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
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.