Reputation: 15
E.G. in cell A2 I have value OSAS205677 and in cell C2 I have value WKWP0101. I would like to join the together as OSAS205677WKWP0101_B.
I also need to add _B at the end. so the final value should be OSAS205677WKWP0101_B.
Upvotes: 0
Views: 82
Reputation: 8375
So use concatenate() or the & like so:
=A2&C2&"_B"
Or:
=concatenate(A2,C2,"_B")
If you need to look in lists then vlookup() or xlookup() or even index() with match() will work.
Upvotes: 1