Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Automatic Negative Column

Is there a way to "format" a cell so if i enter a positive value, it converts
to a negative amount? No formulas pleez as I cannot insert a column (it's a
financial thing).
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default Automatic Negative Column

On Mar 21, 10:38 pm, Mrs. Rathbone <Mrs.
wrote:
Is there a way to "format" a cell so if i enter a positive value, it converts
to a negative amount? No formulas pleez as I cannot insert a column (it's a
financial thing).


If you don't want formulas you'll need a macro, this one should do it:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then ' Change 1 to something else if you don't
want it to check column A.
If Target.Value 0 Then
Target.Value = Target.Value * -1
End If
End If
End Sub

Per Erik
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Automatic Negative Column

What does "format" mean? Show positives as negatives and negatives as
positives without actually changing the cell values? If so, use custom
formatting.

Tyro

"Mrs. Rathbone" <Mrs. wrote in message
...
Is there a way to "format" a cell so if i enter a positive value, it
converts
to a negative amount? No formulas pleez as I cannot insert a column (it's
a
financial thing).



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Negative Column - Is this possible? DB[_3_] Excel Discussion (Misc queries) 4 July 8th 07 03:28 PM
Negative Column ???? DB[_3_] Excel Worksheet Functions 5 July 8th 07 12:30 PM
Set Column Negative Michael Laferriere Excel Worksheet Functions 3 March 6th 07 06:44 PM
Negative column haigh New Users to Excel 7 December 9th 06 10:13 AM
Negative Number column go New Users to Excel 1 November 28th 05 01:10 AM


All times are GMT +1. The time now is 06:20 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"