Formatting a cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I formatt a cell or row of cells to return a minus number that will
calculate as minus if I just enter a number? Example= 45.95 returned as
-45.95
Thanks to anyone.
 
You can *display* it as negative number through custom
formatting, but the number will still be positive. To
convert it to negative upon cell entry requires VBA.
Something like:

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo Exit_Sub
Application.EnableEvents = False
With Target
If Not Intersect(.Cells, Range("A:A")) Is Nothing Then
.Value = .Value * -1
End If
End With
Exit_Sub:
Application.EnableEvents = True
End Sub

---
Right-click on the worksheet tab, View Code, and insert
the code above. The example converts any number entered
into col. A.

HTH
Jason
Atlanta, GA
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top