The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
@jwi1 , Try a new column like
Switch(true(),
search("SEAR", [column],,0) >0, "REFRIGERANT",
"OTHER"
)
@jwi1 , Try a new column like
Switch(true(),
search("SEAR", [column],,0) >0, "REFRIGERANT",
"OTHER"
)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
114 | |
79 | |
77 | |
46 | |
39 |
User | Count |
---|---|
143 | |
115 | |
64 | |
64 | |
53 |