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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors