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! Learn more
I have a column containing broken/good domains
I want to compare it to a list containing all the correct domains, and return those from this list that partial matches with [Email Domain]
Solved! Go to Solution.
= Table.AddColumn(Test, "Random", each List.Select([Column1],each List.Contains(TheTableNameWhichEmailDomainComesFrom[Email Domain],_,(x,y)=>Text.Contains(y,x))))
					
				
			
			
				
			
			
				
			
			
				
			
			
			
			
			
		It keeps giving this error. I always run into this field access issue in other projects too
I have tried assigning the column to a variable but to no avail.
= Table.AddColumn(Test, "Random", each let Column1 = [Column1] in List.Select(Column1,each List.Contains([Email Domain],_,(x,y)=>Text.Contains(y,x))))
Just to be clear [Column1] contains lists of the correct domains
Thanks 🙂
= Table.AddColumn(Test, "Random", each List.Select([Column1],each List.Contains(TheTableNameWhichEmailDomainComesFrom[Email Domain],_,(x,y)=>Text.Contains(y,x))))
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		List.Select([Column1],each List.Contains([Email Domain],_,(x,y)=>Text.Contains(y,x)))
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.