Using IF to recognize data then Remove characters

Sphinx404

Board Regular
Joined
May 2, 2015
Messages
186
Office Version
  1. 365
Platform
  1. Windows
I am trying to create a function that will recognize data beginning with "006"

If it finds data beginning with "006" then remove all but the last 8 characters

I don't know why I am having such a hard time with this one.

Something like:

=IF(LEFT(A1,3)="006"(RIGHT,A1,LEN(A1)-8)

Thank you in advance for your help.
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
If you just want the last 8 characters, then simply try:
Code:
[COLOR=#333333]=IF(LEFT(A1,3)="006",RIGHT(A1,8),"")[/COLOR]
 
Upvote 0
I am trying to create a function that will recognize data beginning with "006"

If it finds data beginning with "006" then remove all but the last 8 characters

I don't know why I am having such a hard time with this one.

Something like:

=IF(LEFT(A1,3)="006"(RIGHT,A1,LEN(A1)-8)
Does this work for you...

=IF(LEFT(A1,3)="006",RIGHT(A1,8),"")
 
Upvote 0
Oh dear lord thank you! I knew it was simple... I've been racking my brain on this simple function for half an hour... Oh Friday work day, please end swiftly.

THANK YOU!!!!
 
Upvote 0

Forum statistics

Threads
1,216,737
Messages
6,132,434
Members
449,727
Latest member
Aby2024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top