Young.Aborsh
Young.Aborsh

Reputation: 15

I need a V_LOOKUP to join two values together from two separate cells

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

Answers (1)

Solar Mike
Solar Mike

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

Related Questions