Someone, please help with this simple macro...stucked..!!! Thanks

pedie

Well-known Member
Joined
Apr 28, 2010
Messages
3,875
Sub Selection_proper()
Range("a1").Select
Selection.Value = Proper
End Sub

I have this code which doesn't work instead it deletes the contant in a1.

I want the value of a1 to be Proper when i run the macro.

THanks!!
 
Probably because VB thinks 'proper' is a variable in this context and since it hasn't been defined, it will return the default value of null. This results in your data being deleted.

Code:
With selection
.value=worksheetfunction.proper(.value)
end with
Ought to work

One way to avoid this problem in the future is to always start off your macro projects with "Option Explicit"

Gene Klein
 
Upvote 0

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

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