Results 1 to 4 of 4

Change event to Convert (calculate) user input if user types % sign

Threaded View

  1. #1
    Registered User
    Join Date
    07-06-2011
    Location
    usa
    MS-Off Ver
    Excel 2003
    Posts
    4

    Change event to Convert (calculate) user input if user types % sign

    How can I convert a user's input from the input value to something else IF the user typed a value and % sign? In other words, user types 10% in A1, which i capture in the change event. Since user typed % sign, I want to change the original input (10%) to the result of 10% * A2. The problem is for this to work the cell numberFormat MUST be accounting and two decimals. I want the cell format to be 0 instead of 0.00 though.

    Below is what I have that works only if the format per below (accounting). It basically takes the user's input and recalculates it as a percent of the amount in the adjacent column..if the user types 10%. Keep in mind the target numberFormat must remain as 0 (and not 0% nor 0.00, which is what the below code must do to work). Any tips are greatly appreciated!

    To rephrase:
    1. Target must be formatted as a number, eg., 0.
    2. If user inputs target value with a % (eg, 10%), recalculate input as 10% * adjacent column. Retain original format as 0.
    3. If user inputs a number target value (eg 10), no action to take. Retain format as 0.

    Private Sub Worksheet_Change(ByVal Target As Range)
    
    
    Dim r1 As Range, r2 As Range
    
    Application.EnableEvents = False
    
    Set r1 = Target
    Set r2 = Target.Offset(0, -1)
    
    'calc delta using pct.. Only works if target is accounting format.. Why? 
    If Right(r1.Text, 1) = "%" Then: _
    r1 = r2 * r1
    
    'set cell format so this works again
    'This is the "accounting" format
    r1.NumberFormat = _
    "_(* #,##0.00_);_(* (#,##0.00);_(* " & """" & "-" & """" & "??_);_(@_)"
    
    Application.EnableEvents = True
    
    End Sub
    Last edited by soundneedle; 04-18-2016 at 10:57 AM.

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: 08-04-2015, 12:09 PM
  2. Need an event when user types in a cell?
    By RustyNail in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-29-2015, 03:41 PM
  3. Change output after list selection and force user to sign name
    By switzd0d in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 03-03-2015, 04:48 PM
  4. [SOLVED] Use Change Event only if the value of the drop down is changed by the user
    By marreco in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-15-2013, 11:27 AM
  5. change event macro to evaluate windows user who initiated the change then send email
    By pmanoloff in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-23-2012, 03:31 PM
  6. How to trigger a macro on a worksheet on the event of user-input?
    By fiven in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-20-2005, 11:38 PM
  7. How to auto-trigger a macro on a worksheet on the event of user-input?
    By fiven in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-19-2005, 11:23 AM

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