answersLogoWhite

0

You can open the Macro dialog box by pressin Alt - F8. Then choose the macro you want and click Edit and it will bring you into the code of the macro. You do need to be careful and to be sure you know what you are doing before changing anything.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

HOW CAN MACRO BE STORED?

Macros can be stored in various ways depending on the software being used. In applications like Microsoft Excel, they can be saved within the workbook itself or in a separate macro-enabled file format (e.g., .xlsm). Additionally, macros can be stored in a personal macro workbook, allowing them to be accessible across multiple workbooks. For programming environments, macros may be stored in script files or code libraries.


What is the file extension that indicates an Excel file?

Excel 2003: .xls = Workbook .xla = VBA Add-in .xlb = Toolbar (where custom toolbar settings are stored) .xlc = Chart .xld = Dialog (from older versions of Excel) .xlk = Archive (Excel spreadsheet backup) .xll = DLL Add-in .xlm = Macro .xlt = Template .xlv = VBA Module .xlw = Workspace (collection of multiple Workbooks) Excel 2007 and Excel 2010: .xlsx = Workbook (XML format) .xlsm = Macro-enabled Workbook .xlsb = Excel Binary Workbook (instead of XML format) .xltm = Macro-enabled Template .xlam = Add-in (XML format)


How can you create a macro in Excel that saves the day's income in a workbook and then creates a new workbook every week?

how am i surpose to no?? go on the internet and find out for your self !!


How do you Create Macro on One Workbook and then Let User Choose Location on Another Workbook They Want Macro to Run on?

One way would be to prompt the user to choose a workbook from those currently open (or browse for one that isn't). However, an easier approach is to simply run the macro on the currently active workbook by assigning the macro to a toolbar button.


What's a module in Excel?

VBA is Visual BASIC for Applications. Code can be typed and it is stored in what are known as modules. So a VBA Module is just a file where code is stored that is associated with the workbook you are using. Code within the module can be run through Macros or other methods.


Create date macro in excel?

The following is a record macro copied into the workbook open section of the workbooks properties. Enters date in a1 Private Sub Workbook_Open() Range("a1").Activate ActiveCell.FormulaR1C1 = Now() Selection.NumberFormat = "dd/mm/yyyy;@" End Sub The macro run's it's self when the file opens


How do you get merged cells to auto height with out a macro in Excel?

I don't know about Excel 2007 but in 2003 you cannot do it with a macro. An inherent feature constratint of Excel 2003.


What does the XLSM extension mean?

It is a macro-enabled workbook from Office 2007.


What virus attaches to documents such as word or excel files?

Macro viruses use Microsoft Word and Excel's capabilities to embed code and programs into the document. When the document is opened, the macro virus is executed and infects your computer.


You want to know that where should i get advance excel vba macro and sql computer courses in Mumbai or puna?

Karrox is good in Mumbai for SQL. Also, I heard same about NIIT. For VBA macro, you need personal efforts.


What command interrupts the execution of a macro before completion in excel?

In Excel, you can interrupt the execution of a macro by pressing the "Esc" key. If the macro is running a lengthy operation, pressing "Esc" might prompt a dialog asking if you want to stop the macro. Alternatively, you can press "Ctrl" + "Break" (or "Ctrl" + "Pause") to halt the macro immediately.


What are two words an Excel macro ends with?

End Sub.