+ Reply to Thread
Results 1 to 5 of 5

Automatically change a value in a cell to negative

Hybrid View

  1. #1
    Registered User
    Join Date
    02-19-2013
    Location
    Philippines
    MS-Off Ver
    Excel for Mac 2011
    Posts
    16

    Automatically change a value in a cell to negative

    How do I automatically change a number in a cell (F4) to a negative number if the text in another cell (C4) is "Credit." Is this possible without having to manually put the negative sign every time I enter a number in the Credit category? Thanks!

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Automatically change a value in a cell to negative

    If you are manually entering the values, I think you will just have to use that 1 extra key-stroke for the -
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Registered User
    Join Date
    02-19-2013
    Location
    Philippines
    MS-Off Ver
    Excel for Mac 2011
    Posts
    16

    Re: Automatically change a value in a cell to negative

    I see. I'm just wondering since I'm sharing the workbook (household budget) with someone who might forget to enter that 1 extra key-stroke. It's okay, I just have to double check the entries. Thank you though.

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Automatically change a value in a cell to negative

    Another option might be to have 2 columns - 1 for income, the other for expenses?

  5. #5
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Automatically change a value in a cell to negative

    Or

    Copy the below code and do right click on sheet tab and select view code and paste the below code. Return to excel and check it by doing entry in Column-F

    Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Intersect(Target, Range("F:F")) Is Nothing Then Exit Sub
    
    Application.EnableEvents = False
        If InStr(1, Target.Offset(, -3).Value, "Credit", vbTextCompare) Then Target.Value = -Target.Value
    Application.EnableEvents = True
    
    End Sub


    If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
    Mark your thread as Solved


    If the suggestion helps you, then Click *below to Add Reputation

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 5
    Last Post: 12-12-2013, 10:35 PM
  2. Moving negative numbers to another cell automatically
    By Amaranty in forum Excel - New Users/Basics
    Replies: 5
    Last Post: 09-20-2013, 09:03 PM
  3. Converting A Negative Value Cell to Zero Automatically
    By striker_rage in forum Excel General
    Replies: 7
    Last Post: 07-25-2010, 11:24 AM
  4. trying to change a cells value to negative based on another cell input
    By cjwanat in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-08-2010, 04:37 PM
  5. [SOLVED] change cell from negative to positive
    By Terry in forum Excel General
    Replies: 1
    Last Post: 07-15-2005, 03:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1