Forum Discussion
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 ...
MAngosto
May 02, 2024Iron Contributor
On G1 place:
=IF(OR(RIGHT(A1,1)="L",RIGHT(A1,1)="D"),RIGHT(A1,1),"")
Drag down to fill all cells.
BP-Moons
May 02, 2024Copper Contributor
This works perfectly thank you, i tried it with an IF Or function to begin with but used the wrong syntax for multiple conditions