View Single Post
  #2   Report Post  
JE McGimpsey
 
Posts: n/a
Default

One way:

=TEXT(LEFT(A1,FIND(" to",A1)-1)+7,"m/d/yy to ") &
TEXT(MID(A1,FIND("to",A1)+3,255)+7,"m/d/yy")


In article ,
cwwolfdog wrote:

I have a bunch of workbooks that contain the following information.

Cell A1: 1/2/05 to 1/8/05

I want to be able to copy this to Cell A2 looking like 1/9/05 to 1/15/05.

When I do it know it says 1/2/05 to 1/9/05 only changing the seconds date's
day.

Is it possible?