- A2 contains a forumula that returns a value of 12345.
- of course when you select on A2 it shows the forumula that creates that value.
- in b2 I want to add a formula that
- looks at the final value of A2 (12345)
- looks for it on a list of values in column c
- if result is N/A (bc value is not on C) - says NO
- if result is not N/A (bc value is on C) - says Yes
HTML:
=if(isna(lookup(value(b2),c:c))=true, "NO", "YES"
so if the value of the cell is in column C, it puts yes, if not in the column puts No.
for some reason it is not working. I think it has to do with using the value function inside the isna/lookup function.
any suggestions
Last edited: