Using IF Statement

G

Guest

I have to columns and basically want to say IF B15= any cell in Column A, put
an "X" in this cell. If it does not equal a number in columan, leave it
blank. I am not sure how to write this statement. I'm trying to verify
Journal entry numbers that are posted when i pull them into a spreadsheet
from Oracle.

Any help would be greatly appreciated.

thanks - ClaytonS
 
G

Guest

Try

=IF(B15="*","X","")

In my equation I had a real number to specify and it worked but if you
specify if B15 equals anything then the answer may always be X or Nothing.
 
R

Ron Rosenfeld

I have to columns and basically want to say IF B15= any cell in Column A, put
an "X" in this cell. If it does not equal a number in columan, leave it
blank. I am not sure how to write this statement. I'm trying to verify
Journal entry numbers that are posted when i pull them into a spreadsheet
from Oracle.

Any help would be greatly appreciated.

thanks - ClaytonS

=IF(COUNTIF(A:A,B15)>0,"X","")


--ron
 
G

Guest

Thanks!

cisse_5 said:
Try

=IF(B15="*","X","")

In my equation I had a real number to specify and it worked but if you
specify if B15 equals anything then the answer may always be X or Nothing.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

If Statement with 9 sequences 1
If statement with 9 sequences.. problem 9
If Statements 1
If statement with dates 0
If statement 1
If blank statement 4
What if Senario? 1
IF OR Statements 4

Top