Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
An excalibur report printed into an excel table displays its negative numbers
with the negative sign at the end of the number. How can I move all of the incorrect negative signs to the front of the number without having to move them all individually? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
See
http://www.mcgimpsey.com/excel/postfixnegatives.html In article , Leighanne0213 wrote: An excalibur report printed into an excel table displays its negative numbers with the negative sign at the end of the number. How can I move all of the incorrect negative signs to the front of the number without having to move them all individually? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
An excalibur report printed into an excel table displays its negative
numbers with the negative sign at the end of the number. How can I move all of the incorrect negative signs to the front of the number without having to move them all individually? Using a worksheet function: put this formula in a temporary "helper column": =IF(RIGHT(A1,1)="-",LEFT(A1,LEN(A1)-1)*-1,A1) (adjust cell ref accordingly) and copy down. Then copy / paste values the cells from the helper column back to the original column. A similar approach could be done with VBA, without having to use a temporary helper column. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
DataText to ColumnsNextNextAdvanced.
Make sure "Trailing minus etc." is checkemarked. Gord Dibben MS Excel MVP On Thu, 3 May 2007 14:31:00 -0700, Leighanne0213 wrote: An excalibur report printed into an excel table displays its negative numbers with the negative sign at the end of the number. How can I move all of the incorrect negative signs to the front of the number without having to move them all individually? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Converting a non recognizable date time | Excel Discussion (Misc queries) | |||
Converting a non recognizable date time | Excel Discussion (Misc queries) | |||
Converting Negative Number to Postive number | Excel Worksheet Functions | |||
Converting a negative number to a positive number | Excel Discussion (Misc queries) | |||
Invalid Number Format in Excel 10 | Excel Programming |