VBA - Change from "PROPER" to Upper or Lower Case?

mjmartin

New Member
Joined
Mar 10, 2017
Messages
7
Hey all - Can someone tell me how to alter this line of VBA code so the data being pushed to my destination sheet is displayed in Upper Case (or Lower Case in other instances)

Sheet3.Range("a1000000").End(xlUp).Offset(0, 1).Value = Application.WorksheetFunction.Proper(UserForm1.TextBox2.Value)

I tried changing Proper to UCase or LCase - but got errors. For the sake of full disclosure I'm changing several similar lines, with some data coming from a TextBox and some from a ComboBox - I'm not sure if that makes a difference in the answer...
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
How about
VBA Code:
Sheet3.Range("a1000000").End(xlUp).Offset(0, 1).Value = Ucase(UserForm1.TextBox2.Value)
 
Upvote 0
Both UCase & LCase are VBA functions, whereas Proper is an Excel function
Your only need to use WorksheetFunction when calling an Excel function
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,638
Members
449,093
Latest member
Ahmad123098

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