Calculating

L

Link

I need a formula that can calculate the following:

If month($B$2) equal month (D10) the maximum it can calculate to is 1,
otherwise add D11+D12-D13
The formula is in D14. So one month that correspond with B2 is going to
have a value of 1 or less when you add row 11and 12 then minus13. while the
other will have the right result.
 
F

FSt1

hi
i might be a tad slow but..
If month($B$2) equal month (D10) the maximum it can calculate to is 1,
otherwise add D11+D12-D13
assuming that B2 and D10 are real dates....
=if(month($B$2)=Month(D10),1 ,sum(D11+D12-D13))

or did i miss something? or did you leave out something?

regards
FSt1
 
J

JoeU2004

Link said:
I need a formula that can calculate the following:
If month($B$2) equal month (D10) the maximum it can calculate to is 1,
otherwise add D11+D12-D13
The formula is in D14. So one month that correspond with B2 is going to
have a value of 1 or less when you add row 11and 12 then minus13. while
the other will have the right result.

I do not understand your description. But by any chance, is the following
what you want:

=if(month($B$2)=month(D10), min(1,D11+D12-D13), D11+D12-D13)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top