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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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 !!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 63 | |
| 50 | |
| 45 |