If value exists then lookup

Wigman86

New Member
Joined
Oct 12, 2017
Messages
18
Hi All

I think this is an easy one but I want to write a formula that says if cell A1 = "TRUE" then lookup cell B1 into Range C1:C5 AND RETURN "TRUE" OR BLANK.

Hope this makes sense.

Thanks in advance.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
I don't understand this part:

"...lookup cell B1 into Range C1:C5..."

Can you elaborate on what you want to look up, from where, and in what cell you want the result displayed?
 
Upvote 0
Perhaps this?

=IF(A1=TRUE,IF(COUNTIF($C$1:$C$5,B1),TRUE,""),"")

If A1 contains the TEXT value of "TRUE", then this:

=IF(A1="TRUE",IF(COUNTIF($C$1:$C$5,B1),"TRUE",""),"")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,327
Members
452,635
Latest member
laura12345

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