Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Folks - I know how to convert positive numbers to negative. The multiply
by -1 works well if you have already entered the values. Is there a way to force negative numbers in a specific column at the time of entry? Thanks. -- Michael |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Michael Laferriere wrote:
Hi Folks - I know how to convert positive numbers to negative. The multiply by -1 works well if you have already entered the values. Is there a way to force negative numbers in a specific column at the time of entry? Thanks. Would you want to use validation where entry < 0? Beege |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Beege - Not really ... I was just getting lazy, hoping there was way to
eliminate the need for me to type a negative sign. Michael "Beege" wrote in message . .. Michael Laferriere wrote: Hi Folks - I know how to convert positive numbers to negative. The multiply by -1 works well if you have already entered the values. Is there a way to force negative numbers in a specific column at the time of entry? Thanks. Would you want to use validation where entry < 0? Beege |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Mar 6, 8:53 pm, "Michael Laferriere" wrote:
Hi Folks - I know how to convert positive numbers to negative. The multiply by -1 works well if you have already entered the values. Is there a way to force negative numbers in a specific column at the time of entry? Thanks. -- Michael Michael, if you want all values in a certain column, say A:A, become negative, you can use the following event procedu Private Sub Worksheet_Change(ByVal Target As Range) TargetCol = 1 'change column number here If Target.Column = TargetCol Then Target.Value = -Abs(Target.Value) End If End Sub To install: Right-click on the sheet-tab of the sheet in question. Choose View COde. Paste the above code. HTH Kostis Vezerides |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
making all the figures in one column appear as a negative | Excel Discussion (Misc queries) | |||
Negative column | New Users to Excel | |||
How can I change all negative values in a column to = 0? | Excel Worksheet Functions | |||
Negative Number column | New Users to Excel | |||
how do i set up a column with negative values automatically? | Excel Discussion (Misc queries) |