I have a field named SPNote in a table called Sameord_tbl that may have a leading ',' (comma) or a leading ' ,' (space comma)
that I would like to strip out of this field of all records in this table.
I was able to strip out the leading comma with the following but is there a way to delete either of these
two variations with the same query?
Thanks
that I would like to strip out of this field of all records in this table.
I was able to strip out the leading comma with the following but is there a way to delete either of these
two variations with the same query?
Code:
SPNote:Right([SameOrd_tbl].[SPNote],Len([SameOrd_tbl].[SPNote])-1)
Thanks