View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom[_2_] Peo Sjoblom[_2_] is offline
external usenet poster
 
Posts: 964
Default Calculating towards a target number

With your start date in A1

=TEXT(EDATE(A1,5)-(5*5),"mm/dd/yyyy")

if you want to use a cell reference when you put the number of months,
assume B1


=TEXT(EDATE(A1,B1)-(B1*5),"mm/dd/yyyy")

--


Regards,


Peo Sjoblom

"Mary" wrote in message
...
Dear Excel Expert,
I am trying to figure out a formula for a prison length. I have a set
sentence length which is a number of months (format 00.0), for example, 5
months. I want to give the prisoner a credit of 5 days a month
(.1645/day).
If I multiply 5 months x 5 days, the prisoner will get 25 days credit.
This
is not correct, because the prisoner is released after 5 months with no
credit. The credited time has to be calculated so that he is released
before
5 months. I don't know how to get the number of months to calculate the 5
day
credit for this - DO YOU? THANK YOU!!!!!!