Help needed with Excel formula using "IF" "AND"

Michigan1100

New Member
Joined
Apr 16, 2019
Messages
2
I am trying to create a formula that will do the following;

IF H2 is greater than 50% of I2+JK+K2 then return "***"
I am using the following formula but it is not working correctly
=IF(AND(H2>+I2+J2+K2/2),"***")
Any ideas on what I am doing wrong or how to make this work correctly? Thanks for any pointers!!!
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Hi,
=IF(H2>SUM(I2:K2)/2,"***")

that gives you the "***" back when it is true if it is not true then it returns FALSE

HTH
 
Upvote 0
The detail is in the parentheses, you must first do the sum and then the division

=IF(H2>(J2+K2+L2)*0.5,"***","It is not greater")
 
Upvote 0

Forum statistics

Threads
1,215,287
Messages
6,124,075
Members
449,140
Latest member
SheetalDixit

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