Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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 !!
User | Count |
---|---|
118 | |
75 | |
60 | |
50 | |
44 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |