Simple Excel if and Function formula help

Jyotirmaya

Board Regular
Joined
Dec 2, 2015
Messages
204
Office Version
  1. 2019
Platform
  1. Windows
I want a formula that If sum of H1 & I1 less than or equal to 2 and if I1 is greater than 0 then H1*1000+I1*500 else H1*1000+I1*500
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Both the True and False part of your proposed formula are the same i.e. H1*1000+I1*500? If this is correct you don't need an IF statement?
 
Upvote 0
I want a formula that If sum of H1 & I1 less than or equal to 2 and if I1 is greater than 0 then H1*1000+I1*500 else H1*1000+I1*500

Yes but if i1 is greater than 0 then h1*1000+i1*500 & if i1 is more than 0 then also h*1000+i1*500
 
Upvote 0
I still think this is flawed as the calculation will happen regardless of whether the IF statement is True or False but anyway:

=IF(AND(SUM($H$1:$I$1)<=2,I1>0),H1*1000+I1*500,H1*1000+I1*500)
 
Upvote 0
I still think this is flawed as the calculation will happen regardless of whether the IF statement is True or False but anyway:

=IF(AND(SUM($H$1:$I$1)<=2,I1>0),H1*1000+I1*500,H1*1000+I1*500)

I wanted that if the SUM of H1&I1 less then or equal to 2 the code should work but the code is working even if the area is more than that.
 
Upvote 0
That's what I was trying to say - regardless of what condition the formula will be returned as both the True and False part of the IF statement are the same :confused:

So in words if the sum of cells H1 and I1 and I1 is greater than 0 what do you want to return (True part of IF statement)? If these conditions are not meet what should be returned (False part of IF statement)?
 
Upvote 0
That's what I was trying to say - regardless of what condition the formula will be returned as both the True and False part of the IF statement are the same :confused:

So in words if the sum of cells H1 and I1 and I1 is greater than 0 what do you want to return (True part of IF statement)? If these conditions are not meet what should be returned (False part of IF statement)?


=IF(AND(SUM($H$1:$I$1)<=2,I1>0),H1*1000+I1*500,H1*1000+I1*500)


If these conditions are not made then I want that If H:I value is more than 2 then it should check How much value is more,
if H column itself is more than or equal to 2 then direct formula will apply that H1*1000
if both H & I column sum value is more than 2 then it will check how much H column value & How much I column value ? for example if H=1.8 & I =1.5 then the Formula should be like 1.8*1000+0.2*500 Because in my data base 2 (1.8+0.2) is the maximum number on which my calculation are dependent.
Similarly If H is having value 1 & i is 2 then the formula will be 1*1000+1*500. H will be the priority in the calculation to achive value 2.
Hence only SUM of $H$1:$I$1 shouldn't be more than 2.
Kindly suggest
 
Upvote 0
Hi,

Please try to explain what results are desired for the following examples:


h = 2, i = 0


i = 2, h = 0


h = 1.8, i = 0


h = 3, i = 3


h = 3, i = 1.5


h = 3, i = 0
 
Upvote 0
Hi,

Please try to explain what results are desired for the following examples:


h = 2, i = 0


i = 2, h = 0


h = 1.8, i = 0


h = 3, i = 3


h = 3, i = 1.5


h = 3, i = 0


h = 2, i = 0 2*1000


i = 2, h = 0. 2*500


h = 1.8, i = 0. 1.8*1000


h = 3, i = 3. 2*1000


h = 3, i = 1.5. 2*1000


h = 3, i = 0. 2*1000

The value for H column is 1000 & for I column is 500
 
Upvote 0

Forum statistics

Threads
1,214,568
Messages
6,120,278
Members
448,953
Latest member
Dutchie_1

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