March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hey guys,
Consider the below sample data:
source | A | B | MK |
x | AZ~ER_MK~PK_PR~PAXF_CN~SC | PK | |
y | YQ~21Q3_CA~eComNoneCom_MK~TR_CP~987 | TR |
I need to write an if else conditon which does the following:
if source = x then i need to extract the letters between _MK~ and the following _ from column A
else if source = y then i need to extract the letters between _MK~ and the following _ from column B
The result should be the custom column (MK) as shown in the table above.
Apprecitate your support!
Solved! Go to Solution.
You could use this step in Power Query to create the column
= Table.AddColumn(#"Changed Type", "MK", each if [#"source "] = "x" then Text.BetweenDelimiters([A], "_MK~", "_") else if [#"source "] = "y" then Text.BetweenDelimiters([B], "_MK~", "_") else null)
You could use this step in Power Query to create the column
= Table.AddColumn(#"Changed Type", "MK", each if [#"source "] = "x" then Text.BetweenDelimiters([A], "_MK~", "_") else if [#"source "] = "y" then Text.BetweenDelimiters([B], "_MK~", "_") else null)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
87 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |