bluepenguin3
New Member
Hi,
I have a column of sample names that are a mixture of letter, numbers, and hyphens. I want to create another column that will produce a shortened version of that name.
Here is the basic premise of what I want from excel:
If the 6th digit from the right is "R", return Right(5), if not, return right(3).
Here are the results I want from this formula:
I've got the IF formula working fine, but I can't figure out how to make the first bit of the formula work, because I need to work from the right of the string, rather than from the left. Mid doesn't work, because I'm moving from the right, and there isn't a consistent # of characters working from the left.
The sample names are all different lengths and "R" can appear throughout the name, but I only care if "R" is the 6th digit from the right. So, that makes me think that search or find won't work either.
What do you think? Thanks!
I have a column of sample names that are a mixture of letter, numbers, and hyphens. I want to create another column that will produce a shortened version of that name.
Here is the basic premise of what I want from excel:
If the 6th digit from the right is "R", return Right(5), if not, return right(3).
Here are the results I want from this formula:
Code:
Sample Name Vial Name
11-2345 RG-3Z4 RG-3Z4
30456-154-YRF RG-PP1 RG-PP1
131-2345-ZJQ ZJQ
122-2345 RG-3Z4CT4VF5Q01 Q01
I've got the IF formula working fine, but I can't figure out how to make the first bit of the formula work, because I need to work from the right of the string, rather than from the left. Mid doesn't work, because I'm moving from the right, and there isn't a consistent # of characters working from the left.
The sample names are all different lengths and "R" can appear throughout the name, but I only care if "R" is the 6th digit from the right. So, that makes me think that search or find won't work either.
What do you think? Thanks!
Last edited: