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

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Starting with this formulas in B2 and drag down.
Once you start entering yes/no in the cells the matching cells will update .
Do the same for column C

=IF(COUNTIF($A$2:A2,A2)>1,VLOOKUP(A2,A$2:B2,2,FALSE),"")
 
Upvote 0
Starting with this formulas in B2 and drag down.
Once you start entering yes/no in the cells the matching cells will update .
Do the same for column C

=IF(COUNTIF($A$2:A2,A2)>1,VLOOKUP(A2,A$2:B2,2,FALSE),"")
Thanks for reply Dave, seems like something is wrong =IF(COUNTIF($A$2:A2,A2)>1,VLOOKUP(A2,A$2:B2,2,FALSE),"")
 
Upvote 0
Thanks for reply Dave, seems like something is wrong =IF(COUNTIF($A$2:A2,A2)>1,VLOOKUP(A2,A$2:B2,2,FALSE),"")

I would like to have formula in column C and B so duplicates from column A to match B and C
 
Upvote 0
I want to populate information to column B and C corresponding to the duplicate entries in column A
 
Upvote 0
Do you mean this:

Excel Formula:
=INDEX(B2:C10;0;0)

inserted in B11?
 
Upvote 0
Starting with this formulas in B2 and drag down.
Once you start entering yes/no in the cells the matching cells will update .
Do the same for column C

=IF(COUNTIF($A$2:A2,A2)>1,VLOOKUP(A2,A$2:B2,2,FALSE),"")
This work thanks but the problem is when i try to drag down i lose the records that are already in the sheet .. is there a other way ?
 
Upvote 0
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))
 
Last edited:
Upvote 0
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))[/CODE
[/QUOTE]
Thank you very much  [USER=52733]Burrgogi[/USER] ill give a try
 
Upvote 0

Forum statistics

Threads
1,221,653
Messages
6,161,065
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