Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Problem:
Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Enter in D1
=-C1 Regards, Stefi €˛gma€¯ ezt Ć*rta: Problem: Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hey stefi
thanks...that worked, now how do i get rid of the "#value!" thats shows in cell D1 if cell C1 has no value? "Stefi" wrote: Enter in D1 =-C1 Regards, Stefi €˛gma€¯ ezt Ć*rta: Problem: Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(C1="","",-C1)
The above will work if by "no value" you mean an empty text string, but if you have other text you may have problems. You could use =IF(ISNUMBER(C1),-C1,"") or =IF(C1="","",IF(ISNUMBER(C1),-C1,"invalid input")) -- David Biddulph "gma" wrote in message ... hey stefi thanks...that worked, now how do i get rid of the "#value!" thats shows in cell D1 if cell C1 has no value? "Stefi" wrote: Enter in D1 =-C1 Regards, Stefi "gma" ezt ķrta: Problem: Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
David
Thanks a bunch...that worked. "David Biddulph" wrote: =IF(C1="","",-C1) The above will work if by "no value" you mean an empty text string, but if you have other text you may have problems. You could use =IF(ISNUMBER(C1),-C1,"") or =IF(C1="","",IF(ISNUMBER(C1),-C1,"invalid input")) -- David Biddulph "gma" wrote in message ... hey stefi thanks...that worked, now how do i get rid of the "#value!" thats shows in cell D1 if cell C1 has no value? "Stefi" wrote: Enter in D1 =-C1 Regards, Stefi "gma" ezt Ć*rta: Problem: Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The following formula will display 0 if C1 is blank:
=-N(C1) If you want to leave the cell blank then you should use the more complex: =IF(C1<"",-C1,"") HTH Kostis Vezerides On Oct 21, 6:46*pm, gma wrote: hey stefi thanks...that worked, now how do i get rid of the "#value!" thats shows in cell D1 if cell C1 has no value? "Stefi" wrote: Enter in D1 =-C1 Regards, Stefi „gma” ezt ķrta: Problem: Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this
=-C1 Mike "gma" wrote: Problem: Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
in cell D1
=C1*-1 -- John C "gma" wrote: Problem: Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I know this is a really bad work around, but how about :
(In D1) = (C1-C1-C1) Kev "gma" wrote: Problem: Say I have a number in cell C1 and I want that number in cell D1 but with a - sign in front of it exp: 20% in cell C1 in D1 I want -20%. CAn anyone help me with this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to make text in a cell equal a number | Excel Discussion (Misc queries) | |||
Make a cell not equal less than a certain number | Excel Worksheet Functions | |||
If number in cell does not equal 6 digits, add zeros to the left | Excel Discussion (Misc queries) | |||
Cell can only equal Whole Number | Excel Discussion (Misc queries) | |||
How do I get a letter in one cell ito equal a number in anotherl.. | Excel Discussion (Misc queries) |