Moving Info from Cell to Cell

GDB

New Member
Joined
Nov 20, 2005
Messages
2
I am very green when it comes to excel. I can only create very rudimentary functions. Here's what I need to do and require help with.
I would like to enter in two different cells a P or F (pass or fail). I would like this P or F to automatically go into another cell (final cell) with conditions. If both of the cells have a P then the final cell would show a P. If either one of the cells has an F then the final cell would show an F.

If you can be of help I thank you. Too much of my Sunday has been sent trying to figure this out.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi,
Welcome to the board.
Try this by replacing the cells (A1 and B1 to your needed references), and put this in the cell where you need the answer

=IF(AND(A1="p",B1="p"),"P","F")

It is assumed that you are entering values into Cells A1, and B1.
 
Upvote 0
Welcome to MrExcel - one way --
Book1
ABCD
1FPF
2PPP
3FFF
4 
5
Sheet2


In A1 copied down: =IF(OR(B1="F",C1="F"),"F",IF((B1="P")*(C1="P"),"P",""))
 
Upvote 0
Thanks to both of the respondents. Both of your replies work. Now I can enjoy the rest of the day! Hope you have a nice day too!
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,397
Members
449,081
Latest member
JAMES KECULAH

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