Visual Basic for Applications (VBA) is an event-driven, object-oriented programming language for writing macros, 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 ...

learn more… | top users | synonyms (1)

63
votes
6answers
31k 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 ...
53
votes
6answers
50k views

Does VBA have Dictionary Structure?

Does VBA have dictionary structure? Like key<>value array?
53
votes
11answers
9k views

Is VB really case insensitive?

I'm not trying to start an argument here, but for whatever reason it's typically stated that Visual Basic is case insensitive and C languages aren't (and somehow that is a good thing). But here's my ...
35
votes
4answers
51k 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 ...
31
votes
6answers
47k views

What does the keyword Set actually do in VBA?

Hopefully an easy question, but I'd quite like a technical answer to this! What's the difference between: i = 4 and set i = 4 in VBA? I know that the latter will throw an error, but I don't ...
28
votes
14answers
997 views

How to get started with Visual Basic for Applications? [closed]

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 ...
28
votes
6answers
42k 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 ...
27
votes
5answers
104k 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>' ...
27
votes
9answers
5k 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 ...
27
votes
1answer
11k 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 ...
24
votes
2answers
495 views

Controlling Excel via Midi controller

I've got one of these and wanted to use the sliders on it to control Excel, just like one of the Excel form control scroll bars. I've managed to modify this code for VBA, but it is extremely ...
23
votes
7answers
48k views

Deleting a file in VBA

Using VBA, how can I (a) test whether a file exists, and if so, (b) delete it?
23
votes
7answers
76k 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 ...
22
votes
10answers
25k 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 ...
22
votes
2answers
754 views

To infinity and beyond in VBA

This post is about .NET NaN's & Inifinite values getting passed back to Excel 2010 VBA. I use a C# method not under my control which (apparently) can return .NET NaN's or Neg,Pos Infinity. The ...
21
votes
5answers
42k 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 ...
21
votes
8answers
43k views

How to round a number in VBA to the 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 ...
21
votes
4answers
26k 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!!!
21
votes
4answers
10k 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 ...
20
votes
6answers
26k views

Good Patterns For VBA Error Handling

What are some good patterns for error handling in VBA? In particular, what should I do in this situation: ... some code ... ... some code where an error might occur ... ... some code ... ... some ...
20
votes
3answers
13k views

Is There a JSON Parser for VB6 / VBA?

I am trying to consume a web service in VB6. The service - which I control - currently can return a SOAP/XML message or JSON. I am having a really difficult time figuring out if VB6's SOAP type ...
19
votes
10answers
1k 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 ...
19
votes
4answers
6k views

How to Pretty print VBA code?

How do you copy VBA code into a Word document and retain the VBA editor color scheme?
18
votes
1answer
17k views

How to add a custom Ribbon tab using VBA?

I am looking for a way to add a custom tab in the Excel ribbon which would carry a few buttons. I chanced on some resources addressing it via Google but all look dodgy and outrageously complicated. ...
18
votes
4answers
6k 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 ...
17
votes
8answers
106k 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 VBA?
16
votes
5answers
28k 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 ...
16
votes
2answers
7k views

Can I simultaneously declare and assign a variable in VBA?

I'm new to VBA and want to know if I can convert the following declaration and assignment into one line: Dim clientToTest As String clientToTest = clientsToTest(i) or Dim clientString As Variant ...
16
votes
1answer
15k views

Where does VBA Debug.Print log to?

how do i get Debug.Print to display? i do not see the output
15
votes
10answers
25k 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.
15
votes
5answers
30k views

How do you test running time of VBA code?

Is there code in VBA I can wrap a function with that will let me know the time it took to run, so that I can compare the different running times of functions?
15
votes
3answers
6k views

html parsing of cricinfo scorecards

Aim I am looking to scrape 20/20 cricket scorecard data from the Cricinfo website, ideally into CSV form for data analysis in Excel As an example the current Australian Big Bash 2011/12 scorecards ...
15
votes
2answers
1k 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 ...
15
votes
3answers
4k 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 ...
14
votes
15answers
2k views

Non-web SQL Injection

There seems to be some hysteria about SQL Injection attacks. Most recently, here http://stackoverflow.com/questions/505838/vba-simple-database-query-from-word If I'm creating a macro in Excel that ...
14
votes
3answers
2k views

Excel macro - Avoiding using Select [closed]

I've heard much about the understandable abhors of using .Select in Excel VBA Macros, but am unsure of how to avoid using them, or a good resource that can shed some light on how to avoid it. I've ...
14
votes
4answers
24k views

How can I URL encode a string in Excel VBA?

Is there a built-in way to URL encode a string in Excel VBA or do I need to hand roll this functionality?
14
votes
8answers
62k views

Row number of last cell with data

column A has data like this (ie frequent blank cells): HEADING <-- this is A1 kfdsl fdjgnm fdkj gdfkj 4353 fdjk <-- this is A9 I would like to be able to get the cell reference of the ...
14
votes
6answers
15k views

Is there an equivalent to Thread.Sleep() in VBA

Is there an equivalent to Thread.Sleep() in Access VBA?
14
votes
5answers
2k 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 ...
14
votes
8answers
4k views

VBA: Resources for Python Programmer [closed]

I have written a lot of code in Python, and I am very used to the syntax, object structure, and so forth of Python because of it. What is the best online guide or resource site to provide me with the ...
14
votes
8answers
62k views

How can I find last row that contains data in the excel sheet with a macro?

How can I find the last row that contains data in a specific column and on a specific sheet?
14
votes
3answers
684 views

VBA: What happens to Range objects if user deletes cells?

Suppose I have some module in vba with some variable r of type Range. Suppose that, at some point, I store a Range object there (e.g. the active cell). Now my question: What happens to the value of r ...
14
votes
4answers
8k views

Get Name of Current VBA Function

For error handling code, I would like to get the name of the current VBA function (or sub) that the error occurred in. Does anyone know how this could be done? [EDIT] Thanks all, I had hoped that an ...
13
votes
9answers
43k 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 ...
13
votes
4answers
47k views

How to protect cells in Excel but allow these to be modified by VBA script

I am using Excel where certain fields are allowed for user input and other cells are to be protected. I have used Tools Protect sheet, however after doing this I am not able to change the values in ...
13
votes
4answers
72k 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 ...
13
votes
3answers
16k 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 ...
13
votes
1answer
795 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 ...
13
votes
5answers
763 views

How do I associate my application with a pinned program on the Windows 7 taskbar?

We have an application, let's call it MyApp. On installation, we create a desktop icon for MyApp, which basically calls MyLauncher.exe /launch MyApp.exe. MyLauncher does some useful stuff (check for ...

1 2 3 4 5 293