VBA (Visual Basic for Applications) is the dominant programming language for Excel. Use the "excel-vba" tag for questions about programming Excel in VBA. Use the "excel" tag for worksheet programming.

learn more… | top users | synonyms

37
votes
11answers
77k views

Is there a way to crack the password on an Excel VBA Project?

I've been asked to update some Excel 2003 macros, but the VBA projects are password protected, and it seems there's a lack of documentation... no-one knows the passwords. Is there a way of removing ...
15
votes
6answers
44k views

What does the Excel VBA range.Rows property really do?

OK, I am finishing up an add-on project for a legacy Excel-VBA application, and I have once again run up against the conundrum of the mysterious range.Rows(?) and worksheet.Rows properties. Does ...
11
votes
10answers
712 views

What are common anti-patterns when using VBA

I have being coding a lot in VBA lately (maintenance and new code), specifically with regards to Excel automation etc. = macros. Typically most of this has revolved around copy/paste, send some ...
10
votes
2answers
4k views

How to “flatten” or “collapse” a 2D Excel table into 1D?

I have a two dimensional table with countries and years in Excel. eg. 1961 1962 1963 1964 USA a x g y France u e ...
8
votes
1answer
111 views

Excel 2010 Redim Preserve crash

I am somehow able to crash Excel 2010 by entering the following into the IDE in a brand new workbook: private sub foo redim v(,1 to 3) OK, you're not likely to type that ... but here's what ...
8
votes
2answers
362 views

Is it possible to pass a reference to a pointer from Excel VBA to C++?

I would like to call my own C++ dll function from excel vba: void my_cpp_fun ( int& n_size, double*& my_array); The C++ function creates an array my_array of variable size n_size (this size ...
8
votes
1answer
1k views

Accessing a VSTO application-addin types from VBA (Excel)

We have a VSTO application-addin (not a document-addin) for Excel, and we want to expose an event to VBA code so that the VBA macro can do some action when this event fires in the addin. How can I ...
8
votes
5answers
1k views

Best short examples of the need for Excel VBA

Here's one for Joel... I am looking for ways to demonstrate to an Excel user (with no programming experience) how learning some Excel VBA can make their life working with Excel a little easier. ...
7
votes
2answers
139 views

Is the poor performance of Excel VBA auto-instancing a myth?

The accepted wisdom is that using a construct like Dim dict As New Dictionary is poorer in performance than Dim dict As Dictionary / Set dict = New Dictionary. The explanation is that the former ...
7
votes
1answer
232 views

Architecture of an Excel application

after 10 years of programming I find myself with the daunting task of creating my first Excel application in Excel 2007. I have programmed in VBA before on MS Access so this is not really a technical ...
7
votes
3answers
2k views

Put Excel-VBA code in module or sheet?

What is good practice and good code hygiene? Putting code in Modules or Sheets? I have this Excel Workbook, with user interfaces in each sheet. Each sheet within the workbook does a different part of ...
7
votes
3answers
137 views

What are the events that I can use in Excel

Where can I find a list of events in Excel? I want to write macros in VBA based on them. I already know of Worksheet_BeforeDoubleClick, but I more or less just discovered that randomly/remembered it ...
7
votes
3answers
1k views

So my Excel-VBA project password can easily be cracked… What are other options?

Now that I know that there is an easy workaround to the standard way of locking and password-protecting VBA code, I'd like to move on to more effective ways of protecting code. I am to deliver an ...
6
votes
2answers
86 views

Excel 2003 VBA - kernel32 functions - and other libs

I've been programming in VBA for Excel 2003 for some years now, and only recently I've been introduced to: Declare Sub AAAA Lib "kernel32" Alias "AAAA" By an answer here in stackoverflow. What ...
6
votes
3answers
501 views

Excel-VBA Named range row sum

I have the following code For i = 1 To DepRng.Rows.Count For j = 1 To DepRng.Columns.Count DepRng.Cells(i, j) = Application.Sum(KidsRng.Row(i)) //Does not work Next j Next i ...
6
votes
3answers
1k views

Can VBA Reach Across Instances of Excel?

Can an Excel VBA macro, running in one instance of Excel, access the workbooks of another running instance of Excel? For example, I would like to create a list of all workbooks that are open in any ...
6
votes
4answers
744 views

Excel - tactics for complex validation

I seem to have a dilemma. I have an EXCEL 2003 template which users should use to fill in tabular information. I have validations on various cells and each row undergoes a rather complex VBA ...
6
votes
7answers
18k views

Excel 2007 conditional formatting - how to get cell color?

Let's assume i have the following range from (a1:c3) A B C 1 -1 1 1 2 -1 0 0 3 0 0 1 Now i have selected the following range, and formatted it using Conditional Formatting (using default red ...
6
votes
6answers
974 views

Is there a tactical (read 'hack') solution to avoid having the VBA code and Excel sheet as one binary file?

As I understand it when I create an Excel sheet with VBA code the VBA code is saved as binary with the sheet. I therefore can't put the code into source control in a useful way, have multiple devs ...
6
votes
4answers
627 views

What is a good up-to-date book for an experienced developer to learn Excel VBA?

I am an experienced developer notably in C#. I need to help a non-programmer friend get thigns done with Excel VBA. What is a good book for me to quickly pick Excel Macros & VBA up so that I can ...
5
votes
4answers
185 views

How to extract text within a string of text

I have a simple problem that I'm hoping to resolve without using VBA but if that's the only way it can be solved, so be it. I have a file with multiple rows (all one column). Each row has data that ...
5
votes
3answers
241 views

Scripting changes to multiple excel workbooks

I've trying to make large changes to a number of excel workbooks(over 20). Each workbook contains about 16 separate sheets, and I want to write a script that will loop through each workbook and the ...
5
votes
1answer
198 views

Maximum String Length of PrintArea in Excel

What is the maximum string length of PrintArea in Excel 2003 and 2010? I have a PrintArea string length of 677. This throws an error in Excel 2003, but not in 2010, so I'd like to know what the ...
5
votes
6answers
850 views

Merging PDFs programatically while maintaining the “Combine files…” bookmark structure?

I originally asked this on Adobe's forums but yet to receive any reponses. I have to merge a set of many (100+) PDF files into a single report on a weekly basis, and so far, I have been doing the ...
5
votes
2answers
346 views

What is the best way to draw in Excel using VBA?

I'm a civil engineer designing a program that allows the user to define number of cross sections of a roadway and then calculate the quantity of the different materials used to build the roadway ...
5
votes
1answer
310 views

How to unit test Excel VBA code

Has anyone got any experience of unit testing Excel VBA code? I want to introduce unit tests into some legacy Excel VBA code as painlessly as possible, so would appreciate some pointers to any ...
5
votes
4answers
2k views

VBA equivalent to Excel's mod function

Is there a vba equivalent to excel's mod function?
5
votes
2answers
1k views

How to put a tooltip on a user-defined function

In Excel 2007, how do I add a description and parameter hints to a user-defined function? When I start typing a function invocation for a built-in function, Excel shows a description and parameter ...
5
votes
1answer
1k views

Connection string syntax for Classic ADO / ODBC / Oracle 10g EZConnect

I'm trying to connect various VBA projects to an Oracle 10g back end using ADO (2.8) and no TNS. After various attempts, we've decided that the simplest series of steps for a clean installation ...
5
votes
3answers
568 views

vba: funny notation with #?

what does this mean? if CDbl(Trim(Range("M" & r).Text)) > 0# then... what does the # do?? and what does cdbl do?
5
votes
1answer
678 views

Excel 2003 - How to build my own XLA?

How can you make the .xla file if you want to create your own xla? I have the code, classes, shapes, etc....what is the process to making an xla file to point to? I know that I have to put it in my ...
5
votes
2answers
427 views

Do I lose the benefits of macro recording if I develop Excel apps in Visual Studio?

I've written lots of Excel macros in the past using the following development process: Record a macro. Open the VBA editor. Edit the macro. I'm now experimenting with a Visual Studio 2008 "Excel ...
5
votes
4answers
2k views

Use Excel VBA to fill out and submit Google Docs form

I'm trying to do something like this post but with Excel VBA. I would like to submit a response on a google docs form each time a button is pressed on an Excel add-in. The addin will be an XLA file ...
5
votes
2answers
2k views

Moving images between cells in VBA

I have an image in cell (3,1) and would like to move the image into cell (1,1). I have this code: ActiveSheet.Cells(1, 1).Value = ActiveSheet.Cells(3, 1).Value ActiveSheet.Cells(3, 1).Value = "" ...
5
votes
2answers
15k views

Loop through each row of a range in Excel

This is one of those things that I'm sure there's a built-in function for (and I may well have been told it in the past), but I'm scratching my head to remember it. How do I loop through each row of ...
5
votes
4answers
5k views

Populating collection with arrays

Dim A As Collection Set A = New Collection Dim Arr2(15, 5) Arr2(1,1) = 0 ' ... A.Add (Arr2) How can I access the Arr2 through A? For example, I want to do the following: A.Item(1) (1,1) = 15 so ...
5
votes
3answers
2k views

Exporting VBA code from Multiple Excel documents to put into version control

Does anyone know a way to export the VBA code from a number of Excel documents, so that the code can be added into a subversion repository? Without having to manually open each document and export the ...
5
votes
2answers
8k views

How do I avoid run-time error when a worksheet is protected in MS-Excel?

The code snippet below changes the data validation state of a cell and runs when the Excel-2003 worksheet is unprotected. However, when I protect the work sheet the macro doesn't run and raises a ...
5
votes
5answers
26k views

automatically execute an Excel macro on a cell change

How can I automatically execute an Excel macro each time a value in a particular cell changes? Right now, my working code is: Private Sub Worksheet_Change(ByVal Target As Range) If Not ...
4
votes
2answers
178 views

VBA Countif with multiple OR criteria

I need to count the number of cells in a column which contain a specific value, I'm currently using: iVal = Application.WorksheetFunction.COUNTIF(Range("A:A"), "SAL") However I now need to count how ...
4
votes
1answer
96 views

Embed EXE file in the Excel file

I use: retVal = Shell("program.EXE " & filename, vbNormalFocus) To execute a program need for my excel spreadsheet. Is it possible to embed the EXE file in the excel file itself? And how ...
4
votes
2answers
141 views

what is the difference between VB vs VBA?

I am working on this project (an AddIn) for Excel 2007. It use aspose cells for this purpose as well as C#. I didn't write the code, but took over the project from somebody else. So I am still ...
4
votes
1answer
83 views

Formatting row by row with conditional formatting in Excel

Let's say I have 2 columns that I'm comparing data in. If both cells match I want both cells to turn green. If they don't match I want them to turn yellow. Is there a formula that will allow me to ...
4
votes
1answer
85 views

Extracting Text Box data from multiple Microsoft Word files

I have a folder with 40-50 Microsoft Word documents. Each Word document is structured as follows: - There are multiple tables with two columns - The second column contains the question, and at the ...
4
votes
2answers
281 views

Excel VBA call function with variable name

I'm trying to call a function with a variable name that is generated at run time based upon a combo box value. This is straightforward in most languages but I can't seem to figure it out in Excel ...
4
votes
3answers
290 views

How do I remove the characters in VBA?

How do I remove special chracters and alphabets in a string ? qwert1234*90)! ' this might be my cell value I have to convert it to 123490 ' I mean I have to remove everything but keep only ...
4
votes
3answers
123 views

Could anyone tell me how to to add VB Excel Script in Excel Generated Jasper Report?

Current Excel Report is created using Jasper Server / Jasper Report 3.8. In my case , I would like to create Pivot Excel automatically using Excel(Since Jasper Report Crosstab is not sufficient for ...
4
votes
7answers
289 views

Need a better optimized code?

Need a much Optimized code.Well I Got a Project and I have Succefully made it work with the vba (Mostly helped by the stackoverflow programmers Thanks for that) But Today I got a Feedback. Its ...
4
votes
1answer
346 views

How to programmatically code an 'undo' function in Excel-Vba?

Rather new in Excel-Vba, so please go easy on me ok.. Does anyone here know is there anyway i can code an undo function onto a CommandButton similar to the Excel's very own undo function ...
4
votes
1answer
656 views

excel vba - how to test if sheet exists

Dim wkbkdestination As Workbook Dim destsheet As Worksheet For Each ThisWorkSheet In wkbkorigin.Worksheets Set destsheet = wkbkdestination.Worksheets(ThisWorkSheet.Name) ' this throws subscript out ...

1 2 3 4 5 49