![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Guest
Posts: n/a
|
How do you convert downloaded data where the negative sign appears on the right side of a number as opposed to the left? Excel is recgonizing it as text. I tried to format the cell to a number but excel is still reading it as text. i.e. 92.50- needs to be converted to -92.50.
|
|
|
|
#2 |
|
Guest
Posts: n/a
|
=VALUE("-" & LEFT(A1,LEN(A1)-1))
|
|
|
|
#3 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Denver, CO
Posts: 1,744
|
or
=IF(ISNUMBER(A1),A1,LEFT(A1,LEN(A1)-1)*-1) if you have positives and negatives in your list.
__________________
Give $3 to Mr Excel's Holiday Charity Event! Write Up http://www.mrexcel.com/board/viewtop...0916&forum=9&4 Dontate http://www.mrexcel.com/sunshop/index...bstart=0&id=18 |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|