BP-Moons
May 02, 2024Copper Contributor
Combining RIGHT function with VLOOKUP with multiple conditions
I am trying to write a function that will look up if the last character in A column is "D" or "L" and if this is the case will then move the last character to G column. When i try to enter the formula shown it shows #Value error, is there a way to fix this formula?
On G1 place:
=IF(OR(RIGHT(A1,1)="L",RIGHT(A1,1)="D"),RIGHT(A1,1),"")
Drag down to fill all cells.