If and or nightmare

thedeadzeds

Active Member
Joined
Aug 16, 2011
Messages
451
Office Version
  1. 365
Platform
  1. Windows
Hi Guys,

Is there a way to do the following. I basically want to Use the first name from Column C (Name) and populate Column D (Name 2) if the ref in column A is identical to the cell above or below and if column B shows yes. I hope this makes sense. So the formula in column D would look like this:

[TABLE="class: grid, width: 324"]
<colgroup><col width="81" span="4" style="width:61pt"> </colgroup><tbody>[TR]
[TD="width: 81"]Ref[/TD]
[TD="width: 81"]Yes or No[/TD]
[TD="width: 81"]Name[/TD]
[TD="width: 81"]Name 2[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD] [/TD]
[TD]Dave[/TD]
[TD]Dave[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Yes[/TD]
[TD]Bethan[/TD]
[TD]Bethan[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Yes[/TD]
[TD]Sonia[/TD]
[TD]Bethan[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Yes[/TD]
[TD]Hannah[/TD]
[TD]Bethan[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD] [/TD]
[TD]Ceri[/TD]
[TD]Ceri[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD] [/TD]
[TD]Hannah[/TD]
[TD]Hannah[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
If the Ref unique? If so then:


Book1
ABCD
1RefYes or NoNameName 2
21DaveDave
35YesBethanBethan
45YesSoniaBethan
55YesHannahBethan
64CeriCeri
73HannahHannah
Sheet1
Cell Formulas
RangeFormula
D2=IF(AND($A2=$A1,$B2="Yes"),VLOOKUP($A2,$A:$C,3,FALSE),$C2)


WBD
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,259
Members
452,626
Latest member
huntinghunter

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