Thread: Calculating
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
joeu2004 joeu2004 is offline
external usenet poster
 
Posts: 2,059
Default Calculating

"Link" wrote:
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)