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.
I'm sure the eval is not correct...running out of ideas.
Any help would be great.
Thanks.
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.