Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have numbers in column A like this
A B C -60.0 -60 -60.9 -60.9 55.0 55 -63.7 -63.7 25.0 25 -71.0 -71 35.0 35 I need to sort out only negative numbers in column C and Positve numbers to Column B using some formula or function, can anyone help me in this i will be really grateful. Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming that the first value (-120) is in cell A2.
Insert following formula in B2:- =IF(A2=0,A2,"") Insert following formula in C2:- =IF(A2<0,A2,"") Copy the formulas down. Note: The first formula will include zero as a positive. -- Regards, OssieMac "srpavar" wrote: I have numbers in column A like this A B C -60.0 -60 -60.9 -60.9 55.0 55 -63.7 -63.7 25.0 25 -71.0 -71 35.0 35 I need to sort out only negative numbers in column C and Positve numbers to Column B using some formula or function, can anyone help me in this i will be really grateful. Thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Jul 21, 12:59 am, OssieMac
wrote: Assuming that the first value (-120) is in cell A2. Insert following formula in B2:- =IF(A2=0,A2,"") Insert following formula in C2:- =IF(A2<0,A2,"") I might add: If B and C are accounting columns, you won't want the minus sign showing in Col C. So change that formula to: =IF(A2<0,ABS(A2),"") |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2002 : Convert Positive Numbers to Negative Numbers ? | Excel Discussion (Misc queries) | |||
Set negative numbers to zero. Do not calculate with negative valu | Excel Discussion (Misc queries) | |||
change 2000 cells (negative numbers) into positive numbers | Excel Worksheet Functions | |||
sorting/grouping positive and negative numbers | Excel Discussion (Misc queries) | |||
Excel Formula - Add column of numbers but ignore negative numbers | Excel Worksheet Functions |