Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have a Staff Number ( 'Position Details'[Stafflink ID]) in one column in one table and I want to create a new column that checks if it exists in the Staff ID of another table ('Resource Plan'[Stafflink ID]). It should return YES if so, or NO otherwise. I want to use DAX rather than Power Query. What is the best way to do so?
Solved! Go to Solution.
Have you tried something like:
New Column = IF('Position Details'[Stafflink ID] IN VALUES('Resource Plan'[Stafflink ID]), "Yes", "No")
Have you tried something like:
New Column = IF('Position Details'[Stafflink ID] IN VALUES('Resource Plan'[Stafflink ID]), "Yes", "No")
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.