V vojinb Registered User. Local time Today, 17:30 Joined Jul 25, 2011 Messages 38 Aug 19, 2011 #1 Hi, I have table with imported negative sign on right side, like 23234,45- How to switch minus to left, to have -23234,45?
Hi, I have table with imported negative sign on right side, like 23234,45- How to switch minus to left, to have -23234,45?
T Taruz Registered User. Local time Today, 16:30 Joined Apr 10, 2009 Messages 168 Aug 20, 2011 #2 Hi.. This can be useful..: Code: update tabloname set fieldname = "-" & left([fieldname],len([fieldname])-1) where right([fieldname],1)="-"
Hi.. This can be useful..: Code: update tabloname set fieldname = "-" & left([fieldname],len([fieldname])-1) where right([fieldname],1)="-"
V vojinb Registered User. Local time Today, 17:30 Joined Jul 25, 2011 Messages 38 Aug 20, 2011 #3 Hi, Thanks but when I try it gives me error "wrong number of arguments.."
stopher AWF VIP Local time Today, 16:30 Joined Feb 1, 2006 Messages 2,395 Aug 20, 2011 #4 Can you copy and paste the exact SQL you have entered. Chris
V vojinb Registered User. Local time Today, 17:30 Joined Jul 25, 2011 Messages 38 Aug 20, 2011 #5 Hi, the sql is same as in example above: Update bilansuspjeha set OPENING_BALANCE = "-" & left([OPENING_BALANCE],len([OPENING_BALANCE])-1) where right([OPENING_BALANCE],1)="-"
Hi, the sql is same as in example above: Update bilansuspjeha set OPENING_BALANCE = "-" & left([OPENING_BALANCE],len([OPENING_BALANCE])-1) where right([OPENING_BALANCE],1)="-"
V vojinb Registered User. Local time Today, 17:30 Joined Jul 25, 2011 Messages 38 Aug 20, 2011 #6 Hi, stupid me, it is working ) i was missed one bracket in query, I just saw it Thanks once again