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 Guys,
I've a tableA with two columns where column1 values can occur in column2.
I need to create in DAX a new table with all rows of tableA if the column1 has value that if present in column2
the picture below can explain my goal
Solved! Go to Solution.
Hi @montibellin
Create your new table with this DAX expression:
Table 2 =
Var _C2 = VALUES('Table'[Column2])
return
CALCULATETABLE('Table','Table'[Column1] in _C2)
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hi @montibellin
Create your new table with this DAX expression:
Table 2 =
Var _C2 = VALUES('Table'[Column2])
return
CALCULATETABLE('Table','Table'[Column1] in _C2)
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
76 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |