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

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
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,215,039
Messages
6,122,802
Members
449,095
Latest member
m_smith_solihull

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