Changing Negative Sign from Back to Front

  • Thread starter Thread starter dipin.puri
  • Start date Start date
D

dipin.puri

I have a large set of data, most of it being numerical. In one column
however, the data imported was imported with negative values having
the negative placed at the end of the number. (ie 2314-, 543-) as
opposed to (-2314 or -543). Does anyone have a quickfix for this
problem?
 
Backup your database. Do update like this --
"-" & Left([YourField],InStr([YourField],"-")-1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top