Tagged Questions
Visual Basic for Applications (VBA) is an event-driven programming language which was first introduced by Microsoft in 1993 to give Excel 5.0 a more robust object-oriented language for writing macros and automating the use of Excel. It is now used for the entire Office suite. If your question is specifically about programming Excel, Access, Word or Outlook, use the appropriate tag: excel-vba, access-vba, word-vba or outlook-vba.
34
votes
9answers
3k views
Is VB Really Case Insensitive?
I'm not trying to start an argument here, but for whatever reason it's typically stated that VB is case insensitive and C languages aren't (and somehow that is a good thing).
But here's my question: ...
30
votes
6answers
8k views
Difference between Visual Basic and VBA
What is the difference between the two. I always thought VBA is somewhat 'crippled' version of VB, but when a friend asked me the other day I had no idea what the actual differences are.
Also, when ...
29
votes
17answers
6k views
Hidden features of VBA
Which features of the VBA language are either poorly documented, or simply not often used?
27
votes
14answers
595 views
How to get started with Visual Basic for Applications?
I'm a little intimidated by the wealth of knowledge displayed on the front page of this website, but it gives me hope that I'm talking to the right people. I had a pretty rotten experience with one ...
27
votes
6answers
22k views
20
votes
1answer
3k views
How to install a Vimball plugin (with .vba extension)?
How to install a Vimball plugin (with .vba extension)?
The documentation just says:
install details
Edit the vba file and type:
:so %
the vimball documentation says:
All
a user needs to do with a ...
18
votes
2answers
1k views
Parsing JSON in Excel VBA
I have the same issue as in Excel VBA: Parsed JSON Object Loop but cannot find any solution. My JSON has nested objects so suggested solution like VBJSON and vba-json do not work for me. I also fixed ...
18
votes
4answers
30k views
How can I send an HTTP POST request to a server from Excel using VBA?
What VBA code is required to peform an HTTP POST from an Excel spreadsheet?
Accepted Answer Note: For greater control over the HTTP request you can use "WinHttp.WinHttpRequest.5.1" in place of ...
16
votes
6answers
57k views
How to parse XML in VBA
I work in VBA, and want to parse a string eg
<PointN xsi:type='typens:PointN'
xmlns:xsi='<http://www.w3.org/2001/XMLSchema-instance>'
...
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 ...
14
votes
2answers
408 views
How to invoke an action during powerpoint slideshow programmatically?
I am automating a Powerpoint scenario using Coded UI & VSTO. In my powerpoint presentation I have created an 'Action' setting on a shape to launch notepad. During slideshow I need to invoke this ...
14
votes
3answers
3k views
What are the differences between VBA 6.0 and VBA 7.0?
I noticed that Office 2010 comes with Visual Basic for Applications 7.0. However I can't seem to find much documentation on what changes were made. Does anyone have a summary of the changes, or any ...
14
votes
5answers
21k views
VBA array sort function?
I'm looking for a decent sort implementation for arrays in VBA. A Quicksort would be preferred. Or any other sort algorithm other than bubble or merge would suffice.
Please note that this is to work ...
14
votes
5answers
21k views
Macro to save each sheet in an Excel workbook to separate CSV files
How do I save each sheet in an Excel workbook to separate CSV files with a macro?
I have an excel with multiple sheets and I was looking for a macro that will save each sheet to a separate CSV (comma ...
14
votes
9answers
3k views
Best way to test a MS Access application?
With the code, forms and data inside the same database I am wondering what are the best practices to design a suite of tests for a Microsoft Access application (say for Access 2007).
One of the main ...
13
votes
5answers
2k views
Using Python to program MS Office macros?
I've recently taken it as a project to teach myself how to program in Python. Overall, I must say that I'm impressed with it.
In the past I've typically stuck to programming in VBA mostly for MS ...
13
votes
9answers
16k views
When to use a Class in VBA?
When is it appropriate to use a class in Visual Basic for Applications (VBA)?
I'm assuming the accelerated development and reduction of introducing bugs is a common benefit for most languages that ...
12
votes
1answer
245 views
Is there a method for getting the Excel VBA IDE working with TFS 2010?
I have team members that need to be able to checkin VBA modules/classes created in Excel 2007/2010.
I want to be able to use some TFS functionality, ideally from within the VBA IDE.
I don't want to ...
12
votes
3answers
4k views
Is there a JSON parser for VB6 / VBA?
I'm trying to consume a web service in VB6. The service (which I control) currently can return a SOAP/XML message or JSON. I'm having a really difficult time figuring out if VB6's SOAP type (version ...
12
votes
5answers
2k views
How to Pretty print VBA code?
I need to "pretty print" VBA code into a Word document, retaining the color scheme from the VBE editor. I've been looking for free programs or methods to do this, but found nothing usable so far. Any ...
12
votes
3answers
3k views
Excel VBA SVN Client / Integration
Can anyone recommend an SVN client for use in Excel with VBA (code modules only). Ideally, I would also like SVN to ignore case when diffing prior to committing changes so as to avoid excessive churn ...
12
votes
3answers
15k views
Password hash function for Excel VBA
I need a function written in Excel VBA that will hash passwords using a standard algorithm such as SHA-1. Something with a simple interface like:
Public Function CreateHash(Value As String) As ...
11
votes
10answers
719 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 ...
11
votes
1answer
425 views
Programmatically rebuild .exd-files when loading VBA
After updating Microsoft Office 2007 to Office 2010 some custom VBA scripts embedded in our software failed to compile with the following error message:
Object library invalid or contains
...
11
votes
8answers
3k views
Building SQL strings in Access/VBA
Occasionally, I have had to build a SQL string in VBA and execute it with Docmd.RunSql(). I have always built these strings by concatenating variables into the string, e.g:
Dim mysqlstring as String
...
11
votes
5answers
798 views
Finding similar sounding text in VBA
My manager tells me that there is a way to evaluate names that are spelled differently but sound similar in the way they are pronounced. Ideally, we want to be able to evaluate a user-entered search ...
11
votes
6answers
21k views
VBA: How to round to nearest 5? (or 10 or X)
Given numbers like 499, 73433, 2348 what VBA can I use to round to the nearest 5 or 10? or an abitrary number?
By 5:
499 -> 500
2348 -> 2350
7343 -> 7345
By 10:
499 -> 500
2348 ...
11
votes
5answers
56k views
How can I refresh all the pivot tables in my excel workbook with a macro?
I have a workbook with 20 different pivot tables. Is there any easy way to find all the pivot tables and refresh them in VB?
10
votes
2answers
290 views
Embed an R process in a VBA macro
the title exactly -- is there a way to call an r process from an excel macro?
10
votes
8answers
489 views
What if any links exist to free Excel “helper” class libraries for C#?
I'm looking for any available free Excel "helper" classes that are written for .net (doesn't have to be C#).
I'd like to evaluate what others consider to be useful and generic static (and non static) ...
10
votes
4answers
12k views
Hash Table/Associative Array in VBA
I can't seem to find the documentation explaining how to create a hash table or associative array in VBA. Is it even possible?
Can you link to an article or better yet post the code?
Thanks!!!
10
votes
6answers
11k views
VBA Error Handling
I am relatively new to VBA (Java/Python are more my thing, along with Haskell). One thing that has shocked and surprised me about VBA is the lack of any "obvious" way to do proper structured error ...
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 ...
10
votes
6answers
27k views
How to check for empty array in vba macro
I want to check for empty arrays. Google gave me varied solutions but nothing worked. Maybe I am not applying them correctly.
Function GetBoiler(ByVal sFile As String) As String
'Email Signature
...
10
votes
2answers
2k views
Word Automation: Write RTF text without going through clipboard
I am trying to replace the current selection in Word (2003/2007) by some RTF string stored in a variable.
Here is the current code:
Clipboard.SetText(strRTFString, TextDataFormat.Rtf)
...
9
votes
1answer
115 views
Language independent way to get “My Documents” folder in VBA Excel 2003
I need a Language independent way to get "My Documents" folder in VBA Excel 2003.
What I have:
Public Function MyDocsPath() As String
MyDocsPath = Environ$("USERPROFILE") & "\My Documents\"
...
9
votes
4answers
221 views
Locate triangle containing arbitrary point in Delaunay-triangulated surface
I'm looking to do a linear interpolation of a irregularly sampled function z(x,y) based on a Delaunay triangulation. Say I have a hill for which I have obtained a Delaunay triangulation:
I know ...
9
votes
2answers
170 views
Finding the English definition of a word
So, in Excel, if I enter the word "PIZZA" into a cell, select it, and SHIFT+F7, I can get a nice English dictionary definition of my favorite food. Pretty cool.
But I'd like a function that does this. ...
9
votes
3answers
372 views
Timed Alarm in Excel VBA
I made a calendar (to track stuff to do) in Excel 2003.
What I need is to be able to set a timer via VBA. Something like:
run_in_x_secs ( timetowait, function to exec)
Is there a way to do that in ...
9
votes
2answers
3k views
Regular Expression Rules in Outlook 2007?
Is it possible to create rules in Outlook 2007 based on a regex string?
I'm trying to add a filter for messages containing a string such as: 4000-10, a four digit number followed by a dash and then ...
9
votes
20answers
1k views
How do I convince a manager we need bug tracking software?
Good day all, I'm the "lead developer" for a major Excel based application that handles the production of a few mine sites. It talks to a bunch of databases, tries its best to help out users, and ...
9
votes
8answers
11k views
Determining whether an object is a member of a collection in VBA
How do I determine whether an object is a member of a collection in VBA? Specifically, I need to find out whether a table definition is a member of the TableDefs collection.
9
votes
4answers
6k views
Function Overloading in Excel VBA
I'm using Excel VBA to a write a UDF. I would like to overload my own UDF with a couple of different versions so that different arguments will call different functions.
As VBA doesn't seem to ...
8
votes
1answer
122 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
5answers
108 views
MS Access VBA Brain Teaser
Explain why Access.Application.Eval() (commonly abbreviated as Eval()) produces a different result than just evaluating the original expression in this case:
Debug.Print Round(.575 * 100)
57
...
8
votes
1answer
521 views
VBA Round Function
In one of my programs I need to calculate the average on a range of numbers. The problem is that sometimes the answer comes out to a huge decimal and I need to try and get that down to two decimal ...
8
votes
2answers
366 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
324 views
VBA: What is causing this string argument passed to ParamArray to get changed to a number (that looks suspiciously like a pointer)?
FINAL EDIT: It does indeed appear to be a compiler bug - see the accepted answer.
Using VBA within Excel 2007, I have the following code in 'Class1':
Option Explicit
Public Function strange(dummy ...
8
votes
12answers
869 views
smallest learning curve language to work with CSV files
VBA is not cutting it for me anymore. i have lots of huge excel files to which i need to make lots of calculations and break them down into other excel/csv files.
i need a language that i can pick up ...
8
votes
2answers
375 views
Excel VBA development best practises
We are an ISV with experience developing and distributing desktop applications written in VB6. We are now developing tools as Excel spreadsheets containing VBA code. These will be downloadable free ...