Uppercase a Table Column

RamboGT

New Member
Joined
Mar 20, 2014
Messages
3
I have a worksheet that I use to track projects. I want to Uppercase one column in a Table2 in the sheet by pressing a button.

Here is what I have to start with...not much, but that is why I am here.

Code:
Private Sub CommandButton1_Click()
 ActiveSheet.ListObjects("Table2").ListColumns(2).DataBodyRange.Select
    Evaluate ("Upper(Column 2)")
 End Sub

I'm sure the eval is not correct...running out of ideas.

Any help would be great.

Thanks.
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Try this:
Code:
Private Sub CommandButton1_Click()
Dim c As Range
Application.ScreenUpdating = False
For Each c In ActiveSheet.ListObjects("Table2").ListColumns(2).DataBodyRange
    c.Value = UCase(c.Value)
Next c
Application.ScreenUpdating = True
End Sub
 
Upvote 0
This uses Evaluate.
Code:
    Sheets("Sheet1").ListObjects("Table1").ListColumns("Column 2").DataBodyRange.Value = Evaluate("INDEX(Upper(Table1[Column 2]),,1)")
 
Upvote 0

Forum statistics

Threads
1,223,909
Messages
6,175,315
Members
452,634
Latest member
cpostell

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