Functions help!

vendo_23

New Member
Joined
Aug 7, 2020
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I've made an extremely simplified example of what I'm looking for, but....

Anytime I paste a value into column C that matches a value in Column B, I want the formula to paste the corresponding value in column A. For example, for "Router01", it should search "Router01" in the entire column B, and if it finds a match, it should post the value of the cell that's NEXT to the cell it found in the search ("Router01"), which would be the "123" value in Cell A2, in this case. Hopefully that makes sense. Is this even possible with functions alone? Thank you for any assistance.
 

Attachments

  • cappy.PNG
    cappy.PNG
    16.1 KB · Views: 10

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
since you want it NEXT to it, That doesn't explain if you want it in the NEXT column or directly NEXT to it... If it is the NEXT column, then in column D you could put...


Rich (BB code):
=CONCAT(C2,XLOOKUP(C2,B2:B5,A2:A5))
 
Upvote 0

Forum statistics

Threads
1,214,594
Messages
6,120,436
Members
448,964
Latest member
Danni317

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top