Yes, it's odd that Access can't recognize an Excel number format like (1234.56) as a negative, but, that's what makes life interesting.
You'll need to import the field as pure text, then run an update query to strip off the parentheticals and add a dash to the front and then you can go in to table design to convert the field back to a Number datatype.
The tricky part is stripping off the two parens. I'll assume that they are the FIRST and LAST characters of the field..
Your update query will need a function like this:
MyNumber = "-" & Mid(MyNumber, 2, Len(MyNumber)-1)
Before: MyNumber = (1234.56)
After: MyNumber = -1234.56
Place the above expression in the UPDATE TO line of your query, and you should be set.
Remember, you're unique -
![[smile] [smile] [smile]](/data/assets/smilies/smile.gif)
- just like everyone else
Another free Access forum: