Use this for the SQL Statement:
SELECT IIf(Left([FieldName],1)="-",Right([FieldName],Len([FieldName])-1),"-" & [FieldName]) AS Result
FROM tblTableName;
Or in the query builder window use this for one of the columns:
Result: IIf(Left([FieldName],1)="-",Right([FieldName],Len([FieldName])-1),"-" & [FieldName])
Pat B