VBA adding a formula in vba code

Leske

Active Member
Joined
Aug 26, 2008
Messages
297
Hi,

Atm i have this code

PHP:
.to = sh.Range("b2").Value

and would like to add the excel fomula -> =proper(b2)

I don't know how to intigrate this together, so any help would be great and some explenation would be appriciated as well.

Kind regards,

Les
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Les

Do you mean you want to convert the value from B2 to proper case in your code?

If you do there are 2 options really:

1 Use Application.Proper, which basically replicates the PROPER worksheet function.
Code:
.to = Application.Proper(sh.Range("b2").Value)

2 Use VBA's StrConv function with the vbProperCase option.
Code:
.to = StrConv(sh.Range("b2").Value, vbProperCase

Not sure if there's much difference, if any, between the two so it's your choice really.:)
 
Last edited:
Upvote 0
Hello Norie,
Indeed that is what i want and it works well :)
many thx for you quick respons
 
Upvote 0
Oops, typo in the 2nd code I posted.:eek:

Should be this.
Code:
.to = StrConv(sh.Range("b2").Value, vbProperCase)
 
Upvote 0

Forum statistics

Threads
1,215,461
Messages
6,124,952
Members
449,198
Latest member
MhammadishaqKhan

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