VBA to make a cell always uppercase

smking204

New Member
Joined
Jan 28, 2021
Messages
32
Office Version
  1. 365
Platform
  1. Windows
I'm familiar with recording macros, and I've dabbled with manually editing macros.

Now what I want is something different: a script that will always convert the contents of a cell (B3 in this case) to uppercase. Been googling it, but all I can find are different versions of creating a macro, i.e., something that I need to run by clicking a button, etc. But I want the cell effectively permanently formatted, as soon as the text is entered. I think this means NOT using a subroutine ("sub" / "End sub") but I'm not immersed enough in coding to know if that's a key part of this or not. Thanks in advance!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
You will need a macro, but a specialized one called an event handler. It triggers when a specific event occurs, in this case when the value of B3 changes. To try it, open a copy of your workbook. On the sheet with the cell you want monitored, right click the sheet tab and select View Code. In the window that opens, paste this code:

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)

    If Target.Address = "$B$3" Then
        Application.EnableEvents = False
        Target.Value = UCase(Target.Value)
        Application.EnableEvents = True
    End If
   
End Sub

Return to Excel and try it.
 
Upvote 0
Solution
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$B$3" Then Application.EnableEvents = False Target.Value = UCase(Target.Value) Application.EnableEvents = True End If End Sub
ha, yep. That does it. That's more code than I thought it would take. Maybe I can parse through this to understand it better. Thanks!
 
Upvote 0
ha, yep. That does it. That's more code than I thought it would take. Maybe I can parse through this to understand it better. Thanks!
That is really very short, succinct code. There really isn't much going on.

The first line if just checking the cell address to limit it to run just against B53.
This is the only line making the update, converting the new entry to all upper case:
VBA Code:
Target.Value = UCase(Target.Value)

The other two rows are important rows that you often must use when creating "Worksheet_Change" event procedure code.
"Worksheet_Change" procedure code is VBA code that runs automatically when cells are manually changed (when I saw manually, I mean not by formula or link, but rather hard-coded).
However, since your code itself is making a change to the cell, that change would call the code again (the code would be calling itself)!
If not careful, you can get caught in an infinite loop and crash your system (as every change calls the code to run again!).

To prevent that from happening, you add a line like this just before the row that makes the change:
VBA Code:
Application.EnableEvents = False
That will temporarily disable the automated events from running (so changes would call the code to run again).

Then, after the change is complete, you will want to turn events back on, so the code can run again in the future should another change happen later on.
So you add this code:
VBA Code:
Application.EnableEvents = True

Hope that help clarifies what Eric's code is doing.
 
Upvote 1

Forum statistics

Threads
1,215,214
Messages
6,123,664
Members
449,114
Latest member
aides

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top