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 ...
0
votes
1answer
35 views
Control already created Outlook message from excel VBA
longtime reader, first time messenger (not my first time making a bad joke though),
I would like to know if it is possible to gain control of an Outlook email message that has already been created. ...
2
votes
1answer
35 views
Using VBA to count number of unhidden (visible) worksheets to the left of the active sheet (excel)?
I'm building a questionnaire within excel, and have been asked to include a "You are on sheet X out of Y" type indicator on each page.
The number of visible sheets varies depending on answer to some ...
0
votes
1answer
43 views
Word VBA macro to insert file and merge formatting
I have a template with a header/footer and text formatting. I would like to write a macro to fill this template with the contents of an .rtf or .doc file. Also, I would like to merge the formatting so ...
0
votes
1answer
25 views
VBA Call a Variable Range
I am trying to calculate a moving average (i.e. the average of B2:b4, b3:b5, etc.) but I cannot figure out how to call a variable range. How do I do tihs?
Sub SMA()
Dim SMA As Double
For Each cell ...
0
votes
2answers
66 views
compare huge text files using vba
I gotta serious problem here.. any kind of help is much appreciated!!
I have two huge text files (130 MB)each with thousands of records in each. I need to compare the two files using vba or by any ...
2
votes
1answer
33 views
Power Method - Non converging system
I am creating a risk parity process, where I need to use a Power method, it is an iterative process to find the eigen values of a system.
The aim is to find to the weight in eaach asset that you are ...
-1
votes
0answers
20 views
Is any certification exam available for VBA ? any reply is highly appeciated. [closed]
Is any certification exam available for VBA (Macros) ?
any reply is highly appeciated.
0
votes
1answer
54 views
Extract All Excel Function Types From A String using Regex in VB
How can i extract excel functions (only their names) from a string in visual basic?
For example i have: Sin(B6)*Sum(A2:A4) So i want to find a way to have "Sin" and "Sum" from this.
Note: I already ...
0
votes
0answers
33 views
Creating Language Option In Visual Basic For Applicaiton (VBA) in Microssoft Access 2007
I am developing a database application for a client. This application is expected to be used in various offices across the African continent and hence, it is expected that the application will have an ...
0
votes
2answers
25 views
i get a run time error 1004 while running vba
i am really knew to excel and am having some problems. i am trying to create an attendance sheet where for safety reasons which gets updated periodically throughout the day. on a sheet with all the ...
-1
votes
0answers
27 views
Could not find installable ISAM query
I came across and issue that it seems very classic,
I got a table in an Excel sheet that i want to load into SQL DB,it gave me an error of could not find installable ISAM. I maybe missed something in ...
-1
votes
1answer
43 views
Can You Access the Excel VBE Selection Programatically?
If I have some VB Component open in the Excel VBE, with some text highlighted as shown,
Is there a way to programmatically grab the text
"zBool"?
Preferrably NOT using Sendkeys
6x New Zealand ...
8
votes
1answer
67 views
Why doesn't Option Explicit catch ReDim <undeclared>?
Does anyone know why this doesn't throw a Variable not defined error when I compile it?
'Class1.cls'
Option Explicit
Public Sub foo()
ReDim fubar(1 To 2, 1 To 1)
End Sub
Am I misunderstanding ...
1
vote
2answers
65 views
For Each loop not going through all the data
I have a simple macro that goes through a series of sheets, gathering names based on a data inputted, then puts it all in a nicely formatted Word document. I have most of it figured out, but one bug ...
-3
votes
0answers
19 views
Convert text file for use with Access import [closed]
I have a text file like
<Date> <Time> <Open> <High> <Low> <Close> <Volume>
03.01.2010 15:01:00 1.1648 1.1648 1.1622 1.1646 8
03.01.2010 15:02:00 1.1648 ...
0
votes
1answer
43 views
Terminate Recursive Directory Search using good ol' FSO
Cross posted here:
http://www.vbforums.com/showthread.php?721189-Terminate-Recursive-Directory-Search-using-good-ol-FSO&p=4411543#post4411543
We have a recurring problem of folders getting moved ...
0
votes
0answers
50 views
VBA Macro- PivotTble Auto-Filter Combo-Box - CurretnPage Issue
I am creating a dashboard with multiple pivot tables and have run into a problem that I cant seem to overcome. I have a primary worksheet where all the data will be displayed with direct references to ...
0
votes
1answer
50 views
Union ALL query failed in VBA but ok in SQL Developer
I have a very long query which contains 10 Union ALL statements, the whole query was fine in Oracle SQL Developer but failed in Excel VBA.
I tested the VBA code by removing the Union ALL statements ...
1
vote
1answer
42 views
Fixing date in sheet (searching for string)
I have two columns with values such as:
5 - 11 octubre 2011
5 - 11 octubre 2011
5 - 11 octubre 2011
12 - 18 ...
0
votes
0answers
23 views
Run-time error '438' Access 2007
I really don't know why, but now, when I try to execute my project, I get this error:
Error 438 "object doesn't support this object or method."
The debug is saying the problem is in this line ...
0
votes
1answer
53 views
Need SQL to update table with data from another table (adding another column to one already done)
I recently asked this question below
Need SQL to update table with data from another table IF numbers match
I have it working but trying to add something else now.
I wanted to bring another column ...
0
votes
0answers
38 views
Code for Automatic Entry in Excel
I am currently analyzing an excel spreadsheet with online membership data, however, until the Gender column some of the cells are empty. If it’s at all possible, I would like to be able to write a ...
2
votes
1answer
37 views
Syntax for a cell in vba
I ma just starting up with VBA and I have come into quite a bit of trouble with the Syntax. Is the format for a cell in vba, (column, row) or (row,column)?
Is there a conclusive API for VBA similar ...
0
votes
0answers
33 views
Setting the control source of a text box
What I am trying to achieve is to have a combo box determine what table the subform boxs are bound to, I have 4 tables with all the same coloumns and I want to be able to create a record and save it ...
0
votes
0answers
36 views
vba remove expontential symbol/show real number?
I would like to read numbers from a sheet and write these numbers to a log. However, at the moment the numbers are going into the log as 0.xxx or 3.xxxE-20 etc.
I would like the numbers to be ...
2
votes
1answer
34 views
Error 1004 - This selection is not valid on Range.Insert
I am getting a runtime error 1004 - this selection is not valid error, when attempting to run a VBA amcro in excel.
I have looked around for solutions, and all the ones I have tried have so far been ...
-3
votes
0answers
18 views
connecting vba to local database
pls help me with this...i dont know what to search..and where to start searching...
Identify the different keywords used in connecting vba to your local database.
Give example codes for the ...
-3
votes
0answers
21 views
DLL that pushes multi line data to excel [closed]
Is it possible to create a DLL that has a timer-based loop that constantly writes to multiple cells in Excel?
2
votes
3answers
61 views
How to create an Access DB with vba / c# (DBMS) [closed]
I have seen some tutorials but everything that I am trying is not working.
I want a simple project with just one textbox (where the name of the database goes) and a button that creates theAccess DB ...
3
votes
2answers
51 views
Copying a discontinuous range from one sheet to another
VBA rookie here (and first-time poster) with what is probably a pretty basic question. However, I haven't found an answer anywhere on the internet (or in the reference books I have) so I'm pretty ...
2
votes
0answers
38 views
Outlook Get Other Emails in Email Thread
I am using VBA to format all outbound email messages in a certain way before sending. For example, I want to remove the first column from all tables which are embedded in the email. I use the ...
1
vote
1answer
35 views
Conditional formatting on entire sheet via Macro
Need your help. In my Spreadsheet there is a macro that when activated test to see if a cell color in the entire set of data is pink. If one is found then the fist cell is marked pink, alerting me to ...
0
votes
3answers
60 views
Endless Loop - VBA Script That Runs when MailItem is Added to Sent Folder, then Creates Copy
I recently completed an outlook vba script that will scan the subject line of each mailitem added to the sent folder, looking for a project number in the subject. When detected, the script extracts ...
1
vote
1answer
24 views
Data validity checks
I have a document that I want to check a number of columns to see if they are formatted correctly. For the values that are incorrect I want to have a msgbox that displays the values and locations ...
1
vote
2answers
33 views
Check if field contains any numbers?
Hi I'm trying to write some VBA so that it checks whether one of my text boxes contains a number. The text box is called: CustomerName. Here's the code I am currently using:
Function ...
1
vote
1answer
27 views
Weird Excel bug when deleting sheet with named ranges?
I have an excel workbook that includes 2 worskheets, wkshtA and wkshtB. They both have local named ranges (the scope of each named range is just the parent sheet). Some cells in wksht B reference ...
0
votes
0answers
19 views
Access Graph dropping series (and how to repair programatically)
I'm having a very strange problem with some graphs. There are 4 columns, the first column is the X-Data, the following 3 columns are y-data (Y1, Y2, Y3)
When I go to display the data it ignores the ...
2
votes
2answers
98 views
VBA - open excel, find and replace, delete row, save as csv
I am trying to write a program in VBA so that I can remotely manipulate an excel file from SAS (a statistical programming software). I want the program to accomplish the following:
open the ...
0
votes
2answers
81 views
Copy a column from one table into another table
I have tried this with ALTER TABLE to create the column followed by INSERT INTO. This kind of works, except each subsequent column starts after the previous column has ended. I guess this is how ...
1
vote
1answer
52 views
Need SQL to update table with data from another table IF numbers match
I have this function below that is letting user choose excel file and it imports the data into a table(MyTable). Its just a single column excel file. The table it imports into contains 2 ...
-2
votes
0answers
26 views
date rangy with sum quantity macro [closed]
Hi friends i have one doubt i have date range like 1-7,8-14 and so on,and i want sum of quantity month wise and grand total also,i do`t know how to create macro,please send me the code!
Output
Date ...
0
votes
1answer
36 views
Insert Image as a shape in Visio - VBA
I want to be able to import an image as a shape in Visio using VBA. I've tried to insert an image using the following, but it doesn't work...
myShape.Import(imagePath)
However, ...
0
votes
1answer
23 views
VBA hide columns between pivot table and data in specific column [closed]
PR1. I have a report, based on pivot tables, that can be anywhere from 8 (A:H) to 146 (A:EV) columns wide. Different users in the company will be able to look at the data and input information into ...
0
votes
0answers
27 views
Excel Pivot Chart Help - Pulling names that contributed to count (VBA?)
I am looking to develop a pivotchart of meaningful data related to employees. Lets say it's a graph of employees with infractions by month.
We have a graph that graphs it based on the COUNT of ...
0
votes
1answer
43 views
No existing macros availble when Excel is opened from Outlook macro
I have a macro in Outlook, and I have it opening an Excel file that is saved on my desktop. Once the file is open, I would like to run a macro that I have written in excel, but none of my excel ...
0
votes
1answer
40 views
Unable to set range when using XPath with predicate /closed/
Closed the question as it wasn't an error - it just isn't possible
I am trying to return a range that contains all elements in a listobject/xmlmap where a sibling element meets some criteria (a ...
1
vote
0answers
29 views
How to upload file using vba with Access 2010
I am trying to use vba/XMLHTTP in an Access 2010 database to upload a file. While it is going through the process and I'm not receiving any errors, nothing ends up on my web site.
Here's the code ...
0
votes
0answers
27 views
MS Access: Update (place 'Tick' in) a checkbox on an MS Access form
I'm using Access to audition potential products from a supplier to be accepted into my eCommerce store.
I have set up the form fine to determine whether a product is "accepted" or "rejected", edit ...
0
votes
0answers
53 views
MS-Access SQL / VBA with field > 256 chars
I'm using VBA and Access 2003 and I have the following query to get the full path of a folder (only the IDs, parent IDs and folder names are stored in my table):
Table Folder
ObjId
ParentID
Name
...
1
vote
1answer
37 views
Creating a union in access with multiple tables and field on one table being the same as multiple fields on others
Here is my current query
Screenshot of my form:
SELECT * FROM jdsubs
INNER JOIN amipartnumbers ON amipartnumbers.oemitem = jdsubs.oempartnumber
WHERE ((([txtEnterNumber])
In ...


