Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
samerhaidar0811
Frequent Visitor

IF source = 'x' then ELSEIF source = 'y' then

Hey guys,

Consider the below sample data:

source ABMK
xAZ~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!

1 ACCEPTED SOLUTION
AntonioM
Solution Sage
Solution Sage

Hi @samerhaidar0811 

 

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)

 

AntonioM_0-1662471518688.png

 

View solution in original post

2 REPLIES 2
AntonioM
Solution Sage
Solution Sage

Hi @samerhaidar0811 

 

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)

 

AntonioM_0-1662471518688.png

 

Thanks @AntonioM !

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors