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
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.
Create a button that calls the following:
EDIT: Updated for your request for the subscript.![]()
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
Last edited by emp1346; 06-03-2014 at 03:04 PM.
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 "₂"
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.
Trying to update this for two other buttons. one is to add text n number eg OT20 and one for wingding symbol.
You would just modify the code above, so to add "OT20" with no subscript it would be:
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 & "OT20" Next End Sub
![]()
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
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks