Entering Cell Contains - Blank/Not Blank logic

LMaeExcel

New Member
Joined
Jan 3, 2017
Messages
14
I would really appreciate some help!! I am trying to figure out how I can accomplish the following logic:

I have files that are assigned to one person, and can switch assignments. I need to locate these switches for specific people.

My sheet will look something like what is shown below. The logic needed for my "Assignment (person)" column, will behave by always entering the name in "2nd person", unless blank, and if blank, it will enter the contents in "1st Person".

I have been working on this for hours! Any guidance would be so much appreciated!

1st Person
2nd Person
Assignment (person)
Jerry
Angie
(formula will go in this column)
Angie
Barbara
Barbara
Joe
Joe
Randal
Randal
Jerry
Jerry
Sarah
Sara

<tbody>
</tbody>
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Let's say that the first cell your formula is to go in is in cell C2.
Then your formula would look like this:
Code:
=IF(B2<>"",B2,A2)
 
Upvote 0

Forum statistics

Threads
1,215,366
Messages
6,124,514
Members
449,168
Latest member
CheerfulWalker

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