If function issue:

FGaxha

Board Regular
Joined
Jan 10, 2023
Messages
221
Office Version
  1. 365
Platform
  1. Windows
Need to remove false:
=if(E3=“TIAA”,if(and(d3>=4.5),d3<=5.25),if(n3=“12/1/2018”,D3/100,D3*F3/100)),0)
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
you have an extra close paren in the and statement (after the 4.5).
this is an updated formula: =IF(E3="TIAA",IF(AND(D3>=4.5,D3<=5.25),IF(N3="12/1/2018",D3/100,D3*F3/100)))
I think you will get a false if the value in D3 is outside of your range.
This may take that FALSE out and replaces it with a 0.
=IF(E3="TIAA",IF(AND(D3>=4.5,D3<=5.25),IF(N3="12/1/2018",D3/100,D3*F3/100),0),0)
 
Upvote 1
Thank you,
I haven’t tried yet but your function looks completely.
I appreciate it.
 
Upvote 0
Sir,
It removes the False, but:
For some reason this function is to counting the date 12/1/2018. It is taking all datas 2017 and 2016.
Pleade help
=IF(E3="TIAA",IF(AND(D3>=4.5,D3<=5.25),IF(N3="12/1/2018",D3/100,D3*F3/100),0),0)
 
Upvote 0
Well, you have a text value for date, I'm not sure why you had that. I used a text version of your date.
You didn't post a copy of your spreadsheet (see the xl2bb tool that is available here).

Here is something I would do. Fill in your limits in the section above. And then calculate based on those variables. I use a LET function, but that is probably not needed.
Some Mr Excel Questions.xlsx
ABCDE
8Target CompanyTIAA
9Min Rate4.5
10Max Rate5.25
11Target Date2/12/2018
12
13
14CompanyRateDateMultiplierCalculation
15TIAA52/12/201820.05
Sheet5
Cell Formulas
RangeFormula
E15E15=LET( c,$C$8,minr,$C$9,maxr,$C$10,tdt,$C$11, IF(A15=c,IF(AND(B15>=minr,B15<=maxr),IF(C15=tdt,B15/100,B15*D15/100),0),0) )
 
Upvote 1
You're welcome. If not already done, please mark the thread solved/answered.
 
Upvote 0

Forum statistics

Threads
1,214,535
Messages
6,120,090
Members
448,944
Latest member
sharmarick

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