IF statement problems

R

Rodger

Greetings,

I am trying to write an edit check for an accounting worksheet. For example, cash could be negative (a credit) but would normally be positive (a debit). The debits are in one column and the credits in another. Here is the formula I am trying to use

=IF(G3>0,"","CHECK") where G3 is the normal balance column

Unfortunately, even if G3 is blank nothing shows up

Your help would be appreciated.
 
P

Paul B

"Unfortunately, even if G3 is blank nothing shows up"
Rodger, with G3 blank I get check, maybe this is what you want?
=IF(G3>=0,"","CHECK")

--
Paul B
Always backup your data before trying something new
Using Excel 2000 & 97
Please post any response to the newsgroups so others can benefit from it
** remove news from my email address to reply by email **
Rodger said:
Greetings,

I am trying to write an edit check for an accounting worksheet. For
example, cash could be negative (a credit) but would normally be positive (a
debit). The debits are in one column and the credits in another. Here is the
formula I am trying to use:
 
D

Dave R.

Your formula will return "CHECK" if G3 is blank, since a blank will never be
greater than 0.

You do not say what your objective is, making it hard to help.


Rodger said:
Greetings,

I am trying to write an edit check for an accounting worksheet. For
example, cash could be negative (a credit) but would normally be positive (a
debit). The debits are in one column and the credits in another. Here is the
formula I am trying to use:
 

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

Macro Help 1
Year End totals 7
The If function 4
excel 2003 1
Vlookup? 1
IF function question 9
Nested IF 2
Two Calculations in one column 4

Top