The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all,
Hope someone can help me with folowing.
If I have cells in a column, containing the following text: SEAR134A
I want to have a calculated column which give me the folwing outcome:
if the text of a cell in that particular column contains "SEAR", then the outcome must be "REFRIGERANT". If the text in a cell of that particular column does not contain "SEAR", then the outcome must be "OTHER".
Thanks upfront for your kind assistance in this.
John
Solved! Go to Solution.
@Anonymous , Try a new column like
Switch(true(),
search("SEAR", [column],,0) >0, "REFRIGERANT",
"OTHER"
)