The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi all, let's say I have simple data like this, for each project I have column Active (Y/N) and Important (Y/N).
Is it possible to add 1 single filter (not slicer) to the filter panel that would have options: Active (where Active = Y), Important (where Important = Y) and None? So basically combine the 2 columns into 1 filter. Thank you!
Solved! Go to Solution.
Hello @sona_b,
Create a new column that contanate Active and Important columns with "-". So the results will be like "Y-Y", "Y-N" , "N-Y", "N-N". And right, now you can filter into single column because you concanate two columns.
Or, the efficent way to solve problem is unpivot your active and ımportant columns, your attribute column values are Active and Important and Values column values will be "Y" and "N". So you can filter in Values column.
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |
Hello @sona_b,
Create a new column that contanate Active and Important columns with "-". So the results will be like "Y-Y", "Y-N" , "N-Y", "N-N". And right, now you can filter into single column because you concanate two columns.
Or, the efficent way to solve problem is unpivot your active and ımportant columns, your attribute column values are Active and Important and Values column values will be "Y" and "N". So you can filter in Values column.
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |