Nov 12, 2001 #1 billcub Technical User Nov 12, 2001 1 GB In Access 97 can I remove the last letter of a Field [field1] using a query ?
Nov 12, 2001 #2 GingerR MIS Apr 17, 2001 3,134 US yes. in a blank column in the query put this: NewText: Left([Field1],Len([Field1])-1) this determines the length of your field (LEN), and subtracts 1 from that length. then takes the left part of the field that many characters (LEFT). g Upvote 0 Downvote
yes. in a blank column in the query put this: NewText: Left([Field1],Len([Field1])-1) this determines the length of your field (LEN), and subtracts 1 from that length. then takes the left part of the field that many characters (LEFT). g
Nov 13, 2001 #3 MichaelRed Programmer Dec 22, 1999 8,410 US Hmmmmmmmmmmmmmmmmmmmmmm, Only if " ... last letter ... " == Any Character AND the field is in fact a string field. MichaelRed m.red@att.net There is never time to do it right but there is always time to do it over Upvote 0 Downvote
Hmmmmmmmmmmmmmmmmmmmmmm, Only if " ... last letter ... " == Any Character AND the field is in fact a string field. MichaelRed m.red@att.net There is never time to do it right but there is always time to do it over