Help

eabidh

New Member
Joined
Dec 23, 2018
Messages
7
Hi can you say what I did wrong here

I want to say

if the value in bi is greater than 1384.116 then take bi and minus it from 1384.116 then that result must be multiplied by 70% of the value in c1 then multiply that value by 25%


thanks

tks

Abidh

(IFB1>1384.116, then(b1-1384.116)-(.7*c1)*.25)
 
Last edited by a moderator:

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
It should look something like this:
Code:
[COLOR=#333333][FONT=Verdana]=IF(B1>1384.116,(b1-1384.116)*.7*c1*.25,"")
[/FONT][/COLOR]
Note that you didn't say what you want to happen if if B1 is not greater than 1384.116. We currently have it returning "", but you can replace that with whatever you want.
 
Upvote 0
TKS
BUT
U MISSED OUT THE MINUS SIGN (IFB1>1384.116, then(b1-1384.116)-(.7*c1)*.25)

If the value in bi is greater than 1384.116 then take bi and minus it from 1384.116 then that result must be multiplied by 70% of the value in c1 then multiply that value by 25%

You only have one minus sign in your description (which is in red above) and that is in red in the formula from Joe4 below...
=IF(B1>1384.116,(b1-1384.116)*.7*c1*.25,"").
If you mean the other minus in the formula you posted then you haven't included it in your description so Joe4 hasn't missed it! in fact in your description it says multiply.
must be multiplied by 70% of the value in c1.....
(IFB1>1384.116, then(b1-1384.116)-(.7*c1)*.25)
and so you need to describe how it fits in to the rest of the formula as your formula doesn't work.
P.S. please don't use all capitals as it is interpreted as shouting.
 
Upvote 0
If you mean the other minus in the formula you posted then you haven't included it in your description so Joe4 hasn't missed it! in fact in your description it says multiply.
Exactly. I didn't miss it. I saw it, but I went off off your explanation, not your formula, as the formula wasn't working and had errors in it. So I thought your description would be more reliable than the formula attempt.

Be sure to take the time to explain your problem/question in accurate detail. Otherwise, you get results that do what you asked for, rather than what you actually wanted!;)
 
Upvote 0
Apologies for the caps

apologies for not explaining fully

this is what I came up with and it works for the result I expected

=IF(B1>1384,(B1-1384)-(C1*0.7))*0.25

so if b1 was 1500 my ans is 29

is this the correct way to write te formula or can u improve it / correct it

tks
 
Upvote 0
You haven't put what you want to happen if B1 is less than 1384, at the moment it will give 0.
 
Upvote 0
That's fine then you can leave it as it is or write it as....
=IF(B1>1384,(B1-1384-(C1*0.7))*0.25,0)

(notice that I have removed one set of parentheses, you can leave them in as it doesn't do any harm (and possibly you could argue aids readability) but you don't need them by Excel's rules of precedence).
 
Last edited:
Upvote 0

Excel 2010
BC
115000
229
329
2b
Cell Formulas
RangeFormula
B2=IF(B1>1384,(B1-1384-C1*0.7)*0.25,0)
B3=(B1>1384)*(B1-1384-C1*0.7)*0.25
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

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