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! Learn more
Hey guys!
I have a slicer that is related with Companies. It's a Lead origin dashboard.
I have N numbers of each item.
So I need to "group" the first 4 items to one button/radio button and the last item to other radio button.
I've tried to create a new table with DAX but as a newbie, no success 😞
Any tips? 😄
Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
Based on your description, you can create a calculated column as follows.
Here is my test table.
category = IF('Table 4'[Column1] in {"A","B","C","D"},"X",[Column1])
Result:
Hope that's what you were looking for.
Best Regards,
Yuna
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Based on your description, you can create a calculated column as follows.
Here is my test table.
category = IF('Table 4'[Column1] in {"A","B","C","D"},"X",[Column1])
Result:
Hope that's what you were looking for.
Best Regards,
Yuna
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I really love you ❤️
Thanks a lot!!!
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.