Hi.. Thanks for the input. Can we change the cells to read A>B, B>D, and
C>F...
I require that the birthdate cell (B5) be MM/dd/yy format, "October 01,
1947". Could another cell (ie; B10) read (B5), and then B10 is used in the
formula?
I would really prefer to have the results printed as MM/dd/yyyy in F5. Can
we do the calculation elsewhere and read/copy the result back t o F5?
> For the following formula format your cells as follows:
> Column A - Birthdate - Format as Text
[quoted text clipped - 9 lines]
>
> If you want to "add" more "time" to the expire date - just change "+5"
wjohnson - 26 Jan 2006 16:27 GMT
Not sure what you want with MM/DD/yyyy
Is the MM for January "JA or 01," but if you change the "MID" number
you can get anything you want.
Example: If cell A1 has January and you want to see Jan in Cell B
using the MID Function
it would be MID(B5,1,3), it reads as follows: B5 is the Cell, 1 is th
position of the first character you want to read, 3 is how many.
Just "play around" with the set of numbers following the MID and i
will give you an idea of how it works.
=CONCATENATE(MID(B5,1,6),MID(D5,7,4)+5)
B______________D____________F
Birth date________Issue Date____Expires
05/01/1947_______06/20/2005_____05/01/2010
For the A>B, B>D, and C>F... - you can create a "AND" statement in
Cell say "G" which will give you a TRUE or False and would loo
something like:
=AND(A1>B1,B1>D1,C1>F1
Cutter - 26 Jan 2006 16:42 GMT
Using the cells from your example simply use this in F5:
=DATE(YEAR(D5)+5,MONTH(B5),DAY(B5))
Format it to your liking

Signature
Cutter