Where do I paste in VBA?

lukerees83

Board Regular
Joined
Mar 28, 2011
Messages
59
I have never used VBA in my life before, and someone has given me a solution to one of my problems in the form of VBA code:

With Range("A1")
.Value = Replace(.Value, "+", ":")
End With


How do I apply this, is there a box to simply paste VBA into?

(Excel 2011 Mac)
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
-hit alt+f11
-when vba window shows up, in the insert menu, select module
-name the sub (type in "sub rep_plus_sign" on the first line of the module)
-hit enter (end sub statement should be created automatically)
-between the two statements, paste your code
-running - hit alt+f8, select your macro, and run
 
Upvote 0
Hi,

Press Alt + F11 to open the VB screen. You should see the code window in the middle (where you write/paste code) and the project explorer on the left (this is where you can change which sheet/module you are working on).

I suggest looking here: http://www.vbtutor.net/VBA/vba_chp1.htm

P.S. That code can be done by selecting cell A1 and pressing CTRL + H.
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,634
Members
452,934
Latest member
Jdsonne31

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