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
I'm trying to make a new column that tells me if a customer is new or old based on if their assigned ID exists in the table for old clients (Old) or not. But I get an error when making this column using the following code:
ISNEW = IF(ProjectFollowUpYTD[Customer] == 'Old'[Kundnummer], "NEW", "OLD")The error I get is that it doesn't seem to find the table or column that I want to use in the IF statement.
Could this be because the relation between the tables is Many to Many?
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
Check the formula.
Column = IF(new[customer] in VALUES(old[customer]),"old","new")
Best Regards,
Jay
Hi @Anonymous ,
Check the formula.
Column = IF(new[customer] in VALUES(old[customer]),"old","new")
Best Regards,
Jay
@Anonymous Unfortunately you can add a column like that when using many to many, you should think of adding as a measure.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Thanks for the reply,
Not quite sure how to write that measure, I can't seem to use the columns that I want. Seems I can only use measures with IF statements?
I also tried using "LOOKUPVALUE" but I can't use Customer No as both search_columnName and search_value. I can't use a fixed search_value because I obviously want it to be dynamic and find all the records that exist in both tables, not just a specific customer.
Just to try, I tried using a specific customer no, but I get an error saying:
The column 'BefintligaKunder[Customer No]' either doesn't exist or doesn't have a relationship to any table available in the current context.
(BefintligaKunder is the table for old customers)
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!