+ Reply to Thread
Results 1 to 6 of 6

Macro to add character to selected cell

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-05-2008
    Location
    UK
    Posts
    103

    Macro to add character to selected cell

    Hi

    I am trying to create a button that when clicked it will add a character to the existing cell. Eg if cell had LDs and I click button I like it show LDs₂

    The ₂ is character code 2082 if that helps

    Any help much appreciated.

    Thanks
    Last edited by welshman010; 06-03-2014 at 02:48 PM.

  2. #2
    Registered User
    Join Date
    11-16-2013
    Location
    OK
    MS-Off Ver
    Excel 2013
    Posts
    33

    Re: Macro to add character to selected cell

    Create a button that calls the following:

    Sub addcharacter()
    
    Dim cell As Range
    
    For Each cell In Selection
        cell = cell.Value & "2"
        cell.Characters(Start:=Len(cell.Value), Length:=1).Font.Subscript = True
    Next
    
    End Sub
    EDIT: Updated for your request for the subscript.
    Last edited by emp1346; 06-03-2014 at 03:04 PM.

  3. #3
    Forum Contributor
    Join Date
    09-05-2008
    Location
    UK
    Posts
    103

    Re: Macro to add character to selected cell

    Thanks for reply. Its probably something I am doing wrong but nothing happened when I clicked button, It probably me, I pretty new to this, I went to developer tab click command button view code and pasted the above.

    Also would that just paste the number 2. Was hoping 2 in subscript "₂"

  4. #4
    Forum Contributor
    Join Date
    09-05-2008
    Location
    UK
    Posts
    103

    Re: Macro to add character to selected cell

    Thanks for update. I still can get this working. Nothing happens when I click button.

    My bad got it working some how. Thanks again
    Last edited by welshman010; 06-03-2014 at 03:23 PM.

  5. #5
    Forum Contributor
    Join Date
    09-05-2008
    Location
    UK
    Posts
    103

    Re: Macro to add character to selected cell

    Trying to update this for two other buttons. one is to add text n number eg OT20 and one for wingding symbol.

  6. #6
    Registered User
    Join Date
    11-16-2013
    Location
    OK
    MS-Off Ver
    Excel 2013
    Posts
    33

    Re: Macro to add character to selected cell

    You would just modify the code above, so to add "OT20" with no subscript it would be:

    Sub addcharacter()
    
    Dim cell As Range
    
    For Each cell In Selection
        cell = cell.Value & "OT20"
    Next
    
    End Sub
    And to add the Wingding symbol (assuming it was the last character) you would do:

    Sub addcharacter()
    
    Dim cell As Range
    
    For Each cell In Selection
        cell = cell.Value & "g" '<---- use whatever the keyboard equivalent is for your wingding symbol
        cell.Characters(Start:=Len(cell.Value), Length:=1).Font.Name = "Wingdings"
    Next
    
    End Sub

+ 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. Display in a textbox, the character count of a cell, when the cell is selected
    By Pavan Renjal in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 01-13-2013, 07:11 AM
  2. [SOLVED] How to Susbtitute all instance(s) of the selected character in any cell using Formulas/VBA
    By e4excel in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-04-2012, 01:45 PM
  3. Macro to find character and delete all text in cell after the character
    By SpencerRichman in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-01-2012, 06:08 PM
  4. Macro help deleting rows with selected character strings
    By rliccion in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-27-2009, 01:45 PM
  5. [SOLVED] Macro to take selected cells times a selected cell
    By Craig in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-23-2005, 08: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