Excel IRR: can I use it referencing a combination of cells and fixed numbers? IRR({-10,11+A2})
up vote
0
down vote
favorite
Most Excel users are probably familiar with the syntax of Excel's IRR formula: https://support.office.com/en-us/article/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc
I can use IRR using only fixed numbers, and without referencing cells, e.g.
=IRR({-100,110})
will return 10%. This works regardless of whether I enter it as an array formula (CTRL+SHIFT+ENTER).
However, what I cannot seem to do is using a combination of fixed numbers and cells, e.g.
=IRR({-100,110+a2})
doesn't work: regardless of whether I enter it as an array formula or not, I get the same error message:
we found an error with this formula.
Thoughts?
excel irr
add a comment |
up vote
0
down vote
favorite
Most Excel users are probably familiar with the syntax of Excel's IRR formula: https://support.office.com/en-us/article/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc
I can use IRR using only fixed numbers, and without referencing cells, e.g.
=IRR({-100,110})
will return 10%. This works regardless of whether I enter it as an array formula (CTRL+SHIFT+ENTER).
However, what I cannot seem to do is using a combination of fixed numbers and cells, e.g.
=IRR({-100,110+a2})
doesn't work: regardless of whether I enter it as an array formula or not, I get the same error message:
we found an error with this formula.
Thoughts?
excel irr
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Most Excel users are probably familiar with the syntax of Excel's IRR formula: https://support.office.com/en-us/article/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc
I can use IRR using only fixed numbers, and without referencing cells, e.g.
=IRR({-100,110})
will return 10%. This works regardless of whether I enter it as an array formula (CTRL+SHIFT+ENTER).
However, what I cannot seem to do is using a combination of fixed numbers and cells, e.g.
=IRR({-100,110+a2})
doesn't work: regardless of whether I enter it as an array formula or not, I get the same error message:
we found an error with this formula.
Thoughts?
excel irr
Most Excel users are probably familiar with the syntax of Excel's IRR formula: https://support.office.com/en-us/article/irr-function-64925eaa-9988-495b-b290-3ad0c163c1bc
I can use IRR using only fixed numbers, and without referencing cells, e.g.
=IRR({-100,110})
will return 10%. This works regardless of whether I enter it as an array formula (CTRL+SHIFT+ENTER).
However, what I cannot seem to do is using a combination of fixed numbers and cells, e.g.
=IRR({-100,110+a2})
doesn't work: regardless of whether I enter it as an array formula or not, I get the same error message:
we found an error with this formula.
Thoughts?
excel irr
excel irr
asked Nov 22 at 15:13
Pythonista anonymous
1,34752143
1,34752143
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
Use this:
=IRR(CHOOSE({1,2},-100,110+A2))
add a comment |
up vote
0
down vote
If you try to do to math inside {}
, for example ={1,2+5}
excel does not know what to do.
Does also apply inside formulas.
Try to do the array as a reference i.e
=IRR(B1:C1)
and then do math etc inside the cells referenced.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Use this:
=IRR(CHOOSE({1,2},-100,110+A2))
add a comment |
up vote
1
down vote
Use this:
=IRR(CHOOSE({1,2},-100,110+A2))
add a comment |
up vote
1
down vote
up vote
1
down vote
Use this:
=IRR(CHOOSE({1,2},-100,110+A2))
Use this:
=IRR(CHOOSE({1,2},-100,110+A2))
edited Nov 23 at 4:32
jkdev
4,79942962
4,79942962
answered Nov 22 at 22:45
XOR LX
7,1441913
7,1441913
add a comment |
add a comment |
up vote
0
down vote
If you try to do to math inside {}
, for example ={1,2+5}
excel does not know what to do.
Does also apply inside formulas.
Try to do the array as a reference i.e
=IRR(B1:C1)
and then do math etc inside the cells referenced.
add a comment |
up vote
0
down vote
If you try to do to math inside {}
, for example ={1,2+5}
excel does not know what to do.
Does also apply inside formulas.
Try to do the array as a reference i.e
=IRR(B1:C1)
and then do math etc inside the cells referenced.
add a comment |
up vote
0
down vote
up vote
0
down vote
If you try to do to math inside {}
, for example ={1,2+5}
excel does not know what to do.
Does also apply inside formulas.
Try to do the array as a reference i.e
=IRR(B1:C1)
and then do math etc inside the cells referenced.
If you try to do to math inside {}
, for example ={1,2+5}
excel does not know what to do.
Does also apply inside formulas.
Try to do the array as a reference i.e
=IRR(B1:C1)
and then do math etc inside the cells referenced.
edited Nov 23 at 13:30
answered Nov 22 at 15:42
user 88 91
184
184
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433873%2fexcel-irr-can-i-use-it-referencing-a-combination-of-cells-and-fixed-numbers-ir%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown