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 ...
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 ...
2
votes
1answer
2k views
Error Finding Last Used cell In VBA [duplicate]
Possible Duplicate:
excel vba row number of last cell with data
when finding last Used cell value using
Dim last_row As Integer
Dim LastRow As Long
LastRow = ...
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 ...
53
votes
6answers
50k views
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>'
...
3
votes
2answers
854 views
MS Excel crashes when vba code runs
I am having a problem with excel crashing when i run VBA code on an excel sheet.
I have some code to add a formula to a range of cells as follows:
Private Sub Worksheet_Change(ByVal Target As Range)
...
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 ...
5
votes
5answers
5k views
Combine rows / concatenate rows
I'm looking for an Access 2007 equivalent to SQL Server's COALESCE function.
In SQL Server you could do something like:
---Person---
John
Steve
Richard
DECLARE @PersonList nvarchar(1024)
SELECT ...
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 ...
3
votes
2answers
4k views
Last not empty cell in row; Excel VBA
I have an excel sheet which I need to find the last non empty cell in a row.
How do I do this?
The below will select this for me, but it will select the first not empty cell, I need the last not ...
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 ...
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 ...
5
votes
1answer
1k views
What's the difference between DoCmd.SetWarnings and CurrentDB.Execute
In the comments on this answer, Remou writes that
CurrentDB.Execute "insert sql here"
is better than
DoCmd.SetWarnings = 0
DoCmd.RunSQL "insert sql here"
due to the built-in warnings that ...
12
votes
3answers
6k views
MS-Access, VBA and error handling
This is more an observation than a real question: MS-Access (and VBA in general) is desperately missing a tool where error handling code can be generated automatically, and where the line number can ...
2
votes
3answers
11k views
Detect whether Excel workbook is already open (using VBA)
I have opened a file of MS Excel named as "myWork.XL" through coding. Now I want a syntax of coding that can tell me about its status whether it is opened or not. In other words if I open the same ...
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 ...
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.
...
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 ...
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 ...
8
votes
2answers
2k views
Pop up the Excel Statusbar?
I'm developing an application for excel that takes a long time to run so it would be nice to have a progress bar pop up and give some indication of the progress. I was looking at the Statusbar ...
2
votes
5answers
4k views
Formatting MM/DD/YYYY dates in textbox in VBA
I'm looking for a way to automatically format the date in a VBA text box to a MM/DD/YYYY format, and I want it to format as the user is typing it in. For instance, once the user types in the second ...
0
votes
4answers
13k views
Populate unique values in to VBA array from excel
Can any one give me a quick bit of VBA code that will take a range (row or column) from an excel sheet, and populate a list/array with the unique values
i.e.,
table
table
chair
table
stool
stool
...
11
votes
4answers
64k views
How to show “Open File” Dialog in Access 2007 VBA?
How would I go about showing an open file (or file select) dialog in access 2007 VBA?
I have tried using Application.GetOpenFileName as I would in Excel, but this function doesn't exist in Access.
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!!!
1
vote
2answers
4k views
Excel VBA: writing to mysql database
I would like to write a macro in Excel that will write to a mysql database. Can someone please get me started on this?
8
votes
4answers
24k views
VBA Macro On Timer style to run code every set number of seconds, i.e. 120 seconds
I have a need to run a piece of code every 120 seconds. I am looking for an easy way to do this in VBA. I know that it would be possible to get the timer value from the Auto_Open event to prevent ...
7
votes
7answers
26k views
Want VBA in excel to read very large CSV and create output file of a small subset of the CSV
I have a csv file of 1.2 million records of text. The alphanumeric fields are wrapped in quotation marks, the date/time or numeric fields are not.
For example
"Fred","Smith",01/07/1967,2,"7, The ...
6
votes
4answers
9k views
Getting the headings from a Word document
How do I get a list of all the headings in a word document by using VBA?
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?
3
votes
4answers
22k views
Copy data from another Workbook through VBA
Guys here's what I want to do and I have a little trouble doing it.
I have 1 Workbook where I want to collect data from different files doing something like this.
Do While ...
3
votes
4answers
2k views
VBA: Basic Syntax and Examples Tutorial [closed]
At work I work closely with MS-Office. I have managed to generate some scripts that perform various tasks. While I can port functions to VBA with some difficulty, I do not fully understand the ...
-1
votes
1answer
6k views
Copy column from one Excel sheet to another Excel sheet [closed]
I want to copy particular columns from one Excel sheet to another Excel sheet in a different workbook. How can I use a macro to copy some columns to different Excel sheet?
8
votes
4answers
10k views
How can I use JavaScript within an Excel macro?
There’s a really cool diff class hosted by Google here:
http://code.google.com/p/google-diff-match-patch/
I’ve used it before on a few web sites, but now I need to use it within an Excel macro to ...
10
votes
6answers
45k views
Way to run Excel macros from command line or batch file?
I have an Excel VBA macro which I need to run when accessing the file from a batch file, but not every time I open it (hence not using the open file event). Is there a way to run the macro from the ...
8
votes
4answers
5k 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 ...
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 ...
6
votes
3answers
28k views
Sending formatted Lotus Notes rich text email from Excel VBA
I have little Lotus Script or Notes/Domino knowledge but I have a procedure, copied from somewhere a long time ago, that allows me to email through Notes from VBA. I normally only use this for ...
4
votes
1answer
19k views
Excel column number from column name
How to get the column number from column name in excel using excel macro
3
votes
2answers
11k views
How to copy Outlook mail message into excel using VBA or Macros
This is my first post.
I'm a newbie in VBA and Macros. If someone helps me with VBA code and macros, it will be helpful.
Daily I'll receive around 50-60 mails with one standard subject: "Task ...
1
vote
1answer
2k views
Is this the RegEx for matching any cell reference in an Excel formula?
I have been trying to create a regular expressions pattern that matches any reference in any Excel formula, including absolute, relative, and external references. I need to return the entire ...
7
votes
9answers
15k views
How to Round in MS Access, VBA
Whats the best way to round in VBA Access?
My current method utilizes the Excel method
Excel.WorksheetFunction.Round(...
But I am looking for a means that does not rely on Excel.
6
votes
10answers
9k views
Does MS access(2003) have anything comparable to Stored procedure. I want to run a complex query in MS acceess
I have a table, call it TBL. It has two columns,call them A and B. Now in the query I require one column as A and other column should be a comma seprated list of all B's which are against A in TBL.
...
11
votes
3answers
83k views
How do you get Excel to refresh data on sheet from within VBA?
How do you get spreadsheet data in Excel to recalculate itself from within VBA, without the kluge of just changing a cell value?
8
votes
2answers
8k views
VBA: Using WithEvents on UserForms
I have a Word userform with 60+ controls of varying types. I would like to evaluate the form every time a control_change event is triggered and change the enabled state of the form's submit button. ...
4
votes
8answers
22k views
Error: “Could Not Find Installable ISAM”
I've written some VBA code in an Excel workbook to retrieve data from an Access database in the same directory on a desktop. It works fine on my machine and several other machines running Windows XP, ...
3
votes
3answers
2k views
Return a User Defined Data Type in an Excel Cell
I've searched the web and I've searched the questions here on stackoverflow, but I haven't been able to find a solution.
Here is what I'd like to do:
Suppose I have the following code in a class ...
2
votes
3answers
2k views
using a sheet in an excel user defined function
The VBA I'm trying to write is fairly simple but Ive never written VBA and coming from the visual studio & C# world, this truly is hell!!
So I'll really be grateful for any help/pointers/hints ...
1
vote
1answer
3k views
Selecting columns that have values in Excel Macro (range object in VBA)
How do I modify this line in VBA to only select the columns that have values?
Set rng = Range("A1", Range("A65536").End(xlUp)).SpecialCells(xlCellTypeVisible)
I don't think I'm doing something ...
12
votes
6answers
61k views
How do I remove the password from a VBA project?
How can I programmatically remove a (known) password from an Excel VBA project?
To be clear: I want to remove the password from the VBA Project, not the workbook or any worksheets.
6
votes
5answers
37k views
Accessing SQL Database in Excel-VBA
I am copying an VBA code snippet from MSDN that shows me how to grab results from a SQL query into excel sheet (Excel 2007):
Sub GetDataFromADO()
'Declare variables'
Set objMyConn = New ...

