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! Learn more

Reply
therugger2000
New Member

Another If statement

I am attempting extract text from a column based on another column.

Basically if the value from column1 =1, return the first 3 characters in Column 2, if not return rthe first 2.

 

Example of Column1 info : 1 or 2

Column2 Info: 1234abcd

 

new=IF Column1="1", LEFT(table1[column2],3, LEFT(table1[column2],2

Any help is appreciated.

1 ACCEPTED SOLUTION
AnkitKukreja
Super User
Super User

Hi! @therugger2000 

 

Please use the below m code and it should work for you.

 

Col1      Col2       Extraction

1 123abs 123
2 145grbf 14
3 345 34
1 111ggg 111
2 2334 23
1 2332mmm 233
2 233mmm 23

 

if [Col1] = 1 then Text.Middle ([Col2],0,3)
else
Text.Middle ([Col2],0,2)

For Power BI trainings or support dm or reach out to me on LinkedIn.
If my response has successfully addressed your question or concern, I kindly request that you mark this post as resolved. Additionally, if you found my assistance helpful, a thumbs-up would be greatly appreciated.

Thanks,
Ankit Kukreja
www.linkedin.com/in/ankit-kukreja1904

View solution in original post

1 REPLY 1
AnkitKukreja
Super User
Super User

Hi! @therugger2000 

 

Please use the below m code and it should work for you.

 

Col1      Col2       Extraction

1 123abs 123
2 145grbf 14
3 345 34
1 111ggg 111
2 2334 23
1 2332mmm 233
2 233mmm 23

 

if [Col1] = 1 then Text.Middle ([Col2],0,3)
else
Text.Middle ([Col2],0,2)

For Power BI trainings or support dm or reach out to me on LinkedIn.
If my response has successfully addressed your question or concern, I kindly request that you mark this post as resolved. Additionally, if you found my assistance helpful, a thumbs-up would be greatly appreciated.

Thanks,
Ankit Kukreja
www.linkedin.com/in/ankit-kukreja1904

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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 Kudoed Authors