run code from macro

  1. J

    Running macro every files in a folder

    Sub MacroRun() Dim file Dim path As String path = "C:\Users\Desktop\TEST\" file = Dir(path & "*.xlsm") Do While file <> "" Documents.Open Filename:=path & file Call Format ActiveDocument.Save ActiveDocument.Close file = Dir() Loop End Sub This is my code for running a...
  2. D

    Run continuously

    Hello everyone i have simple vba code to find a word in the worksheet but i have a small issue, when i find the word the cursor moves to the word but the small window where i type the text disappears , i want to run the program continuously until i press the cancel button and below is my code...
  3. V

    Auto run 2nd UserForm code

    Hi , I have made a user form "Userform 1" where I have a button to Pull up "UserForm 2" which is basically a timer display with a lable box to show time elapsed and a command button to stop the timer. Users are required to STOP the timer when they are back from break. I just need to know how...
  4. S

    If cell meets condition then run macro

    Hi all, I have an IF statement where I want code in a different macro executed when a cell is populated with a specific value. My code thus far is below: Sub RUNOPT() Sheets("Main Page").Select If Sheets("Main PAGE").Range("L15") = "A" Then Call RUNA If Sheets("Main PAGE").Range("L15") = "B"...
  5. S

    how to call vba code in a macro

    I have written a code in a Module "ABC" under function "Public Sub CreateRank()" Now I am trying to call "CreateRank()" in my macro but not able to run it. I tried options such as RunCode, openModule but nothing works. Please advice.

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