If "No" in column B, brings value in column A; otherwise move to next row

crismat09

New Member
Joined
Mar 18, 2009
Messages
12
I have 3 columns, where column C should only display the information from column A if column B contains "NO". Any suggestion?

ABC (if B has "NO", bring data from column A)
20786WAD-
FPAC-
GLBL-
BTRSNO
ABMDNO
LFGNO
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
How about
Excel Formula:
=if(b2="No",a2,"")
 
Upvote 0
How about
Excel Formula:
=if(b2="No",a2,"")

How about
Excel Formula:
=if(b2="No",a2,"")

Using "=if(b2="No",a2,"")" does not fix all the issue...My end goal is having in column C only the values that show "No" in B...in summary, cell C1 should not be blank, but show BTRS.

for the response "
Excel Formula:
=if(b2="No",a2,"")
", is this a VBA code? if so, I have zero knowledge in VBA :(
 
Upvote 0
No that's a formula that you put into C2 & fill down.
 
Upvote 0

Forum statistics

Threads
1,215,463
Messages
6,124,963
Members
449,200
Latest member
indiansth

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