Need help with simple formula

dasda34

New Member
Joined
Jun 2, 2024
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Hello Everyone ,

I would like to have formula in column C so duplicates from column A (together with column B) to match in column C,B (empty rows).


Thanks
 

Attachments

  • Screenshot 2024-06-02 123336.png
    Screenshot 2024-06-02 123336.png
    26.2 KB · Views: 20
Sounds like a simple VLOOKUP is what you're looking for. Plug this into cell B11 and fill down:

Excel Formula:
=VLOOKUP(A11,$A$2:$C$10, 2, FALSE)

And plug this into cell C11 and fill down
Excel Formula:
=VLOOKUP(A11,$A$2:$C$10, 3, FALSE)

Another option would be use INDEX & MATCH together:

Cell B11 & fill down:

Excel Formula:
=INDEX($B$2:$B$10,MATCH(A8,$A$2:$A$10,0))

Cell C11 & fill down:

Excel Formula:
=INDEX($C$2:$C$10,MATCH(A8,$A$2:$A$10,0))
Thank you very much ill give a try
 
Upvote 0

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.

Forum statistics

Threads
1,221,653
Messages
6,161,067
Members
451,684
Latest member
smllchng5

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