Jan 20, 2006 #1 josephwc Programmer Oct 13, 2005 83 US In a Microsoft Access XP query how do I remove the last 8 characters of the Field record values. Example: Field 1 Monday Forecast Tuesday Forecast Change to Field 1 Monday Tuesday
In a Microsoft Access XP query how do I remove the last 8 characters of the Field record values. Example: Field 1 Monday Forecast Tuesday Forecast Change to Field 1 Monday Tuesday
Jan 20, 2006 1 #2 Golom Programmer Sep 1, 2003 5,595 CA Code: UPDATE myTable SET Field1 = Left(Field1, Len(Field1) - 8 ) Upvote 0 Downvote