Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi all,
I'm looking to achieve the following:
Table1
id | Name | status | Role |
1 | Alpha | Active | Supplier |
2 | Beta | Non-active | customer |
3 | Zoulou | Active | Supplier |
New Table ( id, name where status = Active and Role Supplier)
id | Name |
1 | Alpha |
3 | Zoulou |
Thx in advance for your help.
Guy
Solved! Go to Solution.
Perhaps:
New Table =
SELECTCOLUMNS(
FILTER(
'Table1',
'Table1'[status] = "Active" &&
'Table1'[Role] = "Supplier"
),
"id",[id],
"Name",[Name]
)
Perhaps:
New Table =
SELECTCOLUMNS(
FILTER(
'Table1',
'Table1'[status] = "Active" &&
'Table1'[Role] = "Supplier"
),
"id",[id],
"Name",[Name]
)
Many thanks Greg!
You are welcome @Anonymous !!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
42 | |
30 | |
27 | |
26 |