Please help on IF formula

  • Thread starter Thread starter Nickie
  • Start date Start date
N

Nickie

I need a formula to produce a true or false result based on if a cell H71
(with a formular similar to this =(G71*$I$1)+G71 matches the figure in
another cell J71

I tried the following but i keep getting a false result even though the
totals of the cells match

=if((H71*$I$1)+H71=J71,"True","false")

G H I J
1 17.5%
..
..
71 21,101.00 24,793.68 24,793.68

Any help much appreciated
 
False is correct because they do not match. Your calculation in H71 is
24,793.675 and your display is to 2 dp so shows 24,793.68
I assume you have manually typed in J71
Try
=IF(TEXT(H71,"######.##")=TEXT(J71,"######.##"),"True","False")
 
Another alternative is to try ROUNDUP on your calculation
=ROUNDUP((G71*$I$1)+G71),2)
then your original check for true or false should work
 

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

Back
Top