Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Dear Community,
a rather simple issue that I fail to solve.
Initial Situation:
Two or more columns with URLs or a random Text as values.
Sought Output as a new column:
If either one of the columns URL oder Text contain the word "google" then insert "Google" in the Output Column.
The same applies to the other ones >>
- URL oder Text contain the word "xing" then insert "Xing" in the Output Column
- URL oder Text contain the word "facebook" then insert "Facebook" in the Output Column
Solved! Go to Solution.
Hi @raymond
Try this Calculated Column. I think Power Query provides an easier way
Output = IF ( OR ( SEARCH ( "Google", TableName[URL],, 0 ) > 0, SEARCH ( "Google", TableName[Text],, 0 ) > 0 ), "Google", IF ( OR ( SEARCH ( "Xing", TableName[URL],, 0 ) > 0, SEARCH ( "Xing", TableName[Text],, 0 ) > 0 ), "Xing", IF ( OR ( SEARCH ( "FaceBook", TableName[URL],, 0 ) > 0, SEARCH ( "FaceBook", TableName[Text],, 0 ) > 0 ), "FaceBook" ) ) )
Hi @raymond
Try this Calculated Column. I think Power Query provides an easier way
Output = IF ( OR ( SEARCH ( "Google", TableName[URL],, 0 ) > 0, SEARCH ( "Google", TableName[Text],, 0 ) > 0 ), "Google", IF ( OR ( SEARCH ( "Xing", TableName[URL],, 0 ) > 0, SEARCH ( "Xing", TableName[Text],, 0 ) > 0 ), "Xing", IF ( OR ( SEARCH ( "FaceBook", TableName[URL],, 0 ) > 0, SEARCH ( "FaceBook", TableName[Text],, 0 ) > 0 ), "FaceBook" ) ) )
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
42 | |
31 | |
27 | |
27 |