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
0answers
11 views
Excel VBA only show labels for each series' max value
I am trying to create a macro which loops through series in a chart and only shows the maximum / minimum label dependent on what the max / min value is.
Some of the series will only have negative ...
0
votes
0answers
10 views
VBA Word macro to stop user input
I'm writing a big macro for MS Word 2013 and one of the parts of it should be sub that prevents user from writing text; user should be able to use hotkey (eg. ctrl+q) to stop (or start) this sub (I ...
2
votes
1answer
23 views
Detect color of font in Internet Explorer
I am currently building a crawler in Excel with VBA to crawl table data from a public website with the help from several references available online.
However, I need an extra step where I need to ...
-3
votes
0answers
9 views
I am looking for VBA code which should extract web content
I am looking for VBA code which should extract web content from a particular site under a particular heading
However the site has user Id and password.
I have supplier name in the excel using this we ...
0
votes
0answers
14 views
How to change the Contents of a msg box
I have a form for creating a record, I also have a button on the top of the form for to return to a form called home. When the form is being viewed and half the information is put in and the home ...
0
votes
3answers
4k views
MS Access how can a subform get the value from another subform?
I have a main form that contains two other child subforms. When a textbox value changes on subform (A) I would like to set the value of a textbox on subform (B) equal to the changed textbox on subform ...
0
votes
0answers
29 views
Modifying code to shorten & make it work
Got a code here I have made to automate processes this end. I need to modify my code to make it shorter and also to make it work.
Also when copying data across to the three spreadsheets ie TOTAL, ...
0
votes
1answer
19 views
VBA Can't write to file
fileName = "result.txt" 'set the file name for the result
fileToWrite = FreeFile() 'assign next free file number to this variable
Open fileName For Output As fileToWrite 'open our file
'write the ...
0
votes
0answers
4 views
Outlook Appointment - ItemChange and ItemRemove Event
I would like to sync appointment items from one Calendar to another. I implemented a ItemChange Handler which updates the Appointments based on a specific UserProperty. Now I thought when I delete an ...
1
vote
1answer
19 views
Macro runs only once
I have a "master" timesheet macro which users open and complete. Upon close I force a macro (in ThisWorkbook) to run and rename the master to a filename held in range save name. This works perfectly ...
0
votes
1answer
21 views
Excel VBA: Unlimited Range Inputs With Versatility (?)
Could someone help me create a function that will handle an unlimited number of diverse ranges? I have tried "Paramarray variables() as Variant" and "variable as Range" in my arguments list but ...
1
vote
2answers
2k views
Excel create outlook meeting request, not able to send
I am working on some code which creates an Outlook Meeting request, and I'd like for it to send to a list of invitees. I'm able to create the Meeting Request, but I am unable to send it. I can see ...
0
votes
1answer
18 views
How to take control of a running Word application from another Word
I would like to grab a running word application and insert some text. The VBA/Macro code is run from another separate Microsoft application such as Word or Excel. Is this possible?
0
votes
1answer
25 views
New to array variables - can I do this without a loop?
I'm using VBA to import data from an Excel spreadsheet into an Access data base. I have an array variable (data) set up with 17 elements and have the following code to import the 17 values from a ...
0
votes
0answers
24 views
VBA Get Object's Methods
Is there any way to get an object's methods and properties? What I have right now is:
set temp = GetObject("LDAP://" & distinguashedname)
msgbox temp.samaccountname
At this point I only know a ...
1
vote
1answer
27 views
Excel VBA Unable to get the TTest property of the WorkSheetFunction class
I would like to run a TTest formula on two points of data, but I keep getting the error "Unable to get the TTest property of the WorksheetFunction class". Here is my code, where am i going wrong?
Sub ...
1
vote
1answer
34 views
Successfully registered COM DLL, but can't use class methods
I registered a COM DLL using regasm.exe, and now I'm trying to write a VBA script that uses a class from the DLL. The DLL is ExcelDataReaderLibrary.dll. In the C# source, the class is described as ...
0
votes
2answers
101 views
VBA Copy used range to text file
I want to run a code in VBA that does the following:
Copies the used range of a sheet called "Kommentar"
Creates a ".txt" file ("Kommentar.txt") in the same directory as ThisWorkbook
Pastes the ...
0
votes
2answers
45 views
Excel VBA - strange behaviour and poor performance when UDF wraps VLOOKUP
I want to write a user defined function that wraps VLOOKUP. All it requires is a reference to the column that data should be imported from, and it will execute a VLOOKUP assuming that the IDs are in ...
-1
votes
0answers
21 views
Copy & paste all rows containing criteria to other sheet, brand them “approved”, then delete these same rows
What I really need is for:
A.) command button #1 "FIND":
Sheets ("ORDERS"): filter data based on the user-entered criteria "First Last" name inside combobox1 on a userform and "date range from" ...
0
votes
0answers
20 views
clicking confirmation button in Google using VBA
I'm trying to automate a step in logging in to Google and am having trouble clicking on the "Okay, got it!" button.
The HTML is:
<div aria-disabled="false" class="c-v-x b-d b-d-nb Am" ...
0
votes
0answers
14 views
Outlook VBA Save Attachment Code failing
I have found code online that I want to use to save attachments from an email folder but it doesn't work. I'm not much of a programmer and this suits my needs it seems like. Would greatly appreciate ...
-1
votes
0answers
24 views
Organize columns by headers
Okay so this is one that I feel has many ways for people to learn
I have a macro in which step one is to copy cells from one workbook to another. from there a large macro runs with various column ...
0
votes
0answers
15 views
i need to extract the body messages to excel spreadsheet and the body msg should be in columns
i found this code to work for me by checking new emails and extract the body msg. but it does not put the body msg into column. i need a way to search through the body msg and look for "first name:" ...
0
votes
1answer
26 views
Extract categories from columns into duplicated rows with new category
I have a table that looks like so:
Group | Name | Comment | Tag 1 | Tag 2 | Tag 3
-------------------------------------------------------------------
gr1 Joe We ...
0
votes
1answer
33 views
Copying data from variable cells and pasting to fixed cells in another spreadsheet
I am looking to build a macro in excel 2013 which can do the following:
Copy data from individual cells in one spreadsheet (spreadsheet 1). The columns will never change but the rows will as it is a ...
0
votes
1answer
19 views
How to dynamically position a text box in Access 2003 report?
I have an Access 2003 project (.ADP) which is a front end to a SQL Server 2005 database.
In this ADP, I have a report, which is a set of 8 unbound text boxes, stacked on top of each other each with ...
1
vote
0answers
14 views
Outlook VBA: Adding browse button to input box to get folder path
I was looking for any options on a browse for folder within Outlook VBA. Currently I have, from a previous search:
Dim save_to_folder As String
save_to_folder = InputBox("Search returned " & ...
1
vote
1answer
188 views
Conditional formatting on non-empty cells - Excel VBA 2010
I have 3 correlation matrices:
Input Correlation:
Acc & Health AE Avemco Aviation Bail
Acc & Health 1 0.15 0.15 0.15
AE ...
2
votes
0answers
43 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 ...
0
votes
1answer
19 views
Draw border around controls on VBA Userform without using a Frame?
I am designing a VBA UserForm (in Excel, if it is relevant) and I would like some controls to be visually grouped together.. but when I put them in a frame, I am getting some undesired results (part ...
2
votes
2answers
24 views
SQL Query in Excel gives “undefined function name” error
I wrote a SQL query in MS Access that uses the MonthName function. In access it works flawlessly. I copied the exact SQL statement into an excel module that I frequently use to query databases. ...
0
votes
2answers
23 views
Excel VBA Type 13 Mismatch using Array containing values and strings
I'm having trouble with a Runtime Error 13 "Type mismatch error". I am trying to take multiple lines of code and condense them into one line that is each row placed side by side. The problem is that ...
1
vote
2answers
42 views
Is there a way to execute VBA code contained in a cell?
I'm building a macro in Excelto run rules against a set of data and output whether each row passes or fails the rules. I want to be able to add, remove, or alter the rules without altering the macro. ...
0
votes
1answer
26 views
How to populate a table in excel using variables for cell (x,y) values
I've been searching stack over flow constantly for the past few weeks as i learn excel vb but finally I'm stumped.
I need to activate a cell using a variable for the x location and a variable for ...
1
vote
3answers
951 views
Count number of arguments to Excel formula in VBA
I need to use VBA to determine the number of arguments passed to an Excel formula. For instance, suppose a cell contains the formula =MyFunc($A$1, "xyz", SUM(1,2,COUNT(C1:C12)), IF(B1>2,1,0)). Then ...
1
vote
0answers
18 views
Excel VBA: Set Specific Picture Color
Have tried recording a macro to get me on the way here, but am not having any luck.
I have a picture and want to use the preset colors to recolor it.
I want a macro that does the effect of Picture ...
0
votes
0answers
19 views
Copying an Excel table into an Outlook mail body via VBA
I want to set a procedure in order to copy an Excel table from Excel to a mail.body. I tried to write a Visual Basic code.
This is what I have written so far:
Sub SendAnEmailWithOutlook()
Dim ...
0
votes
1answer
30 views
Excel to copy realtime data and create a chart out of it
I am very new to VBA programming.
I have a excel sheet where real time data is populated to a cell say for example Sheet1.A6 everysecond.
I am in need of a macro which will run every 1 minute ...
0
votes
0answers
29 views
For Worksheets for cells double loop circular
I have a code that uses a loop through cells to copy and paste according to if they contain the activecell. I want to do this in all sheets, and want to loop through sheets and loop through the cells ...
1
vote
2answers
19 views
Error in using QueryDef to define parameters in a query
I'm working in Access and trying to use a query with parameters in VBA. I have several queries that I need to use, so I added a routine to generalize the process:
Public Function ...
0
votes
0answers
28 views
Vacation Time Calculation
On my Access Database form I have a field that contains a calculation for Vacation time. The current formula is as follows:
Function calcVacEarned(asOfDate As Date, HireDate As Date)
Dim yos As ...
0
votes
1answer
20 views
VBA Filter multiple ctiteria in sting type
I am trying to write a code for a autofilter, the aim is to filter around 10 criteria, each of them is a string such as M1454 (in another word, as long as the data contain M1454) then it will be ...
0
votes
0answers
19 views
Impossible use of aggregate Last in an external aggregate
I've created a simple calculation in SSRS in a textbox. I'm stuck though since I can't use the aggregate Last as a condition in a Sum. I can't use Last either in a variable expression or a parameter ...
2
votes
3answers
284 views
Is there a Matlab conditional IF operator that can be placed INLINE like VBA's IIF
In VBA I can do the following:
A = B + IIF(C>0, C, 0)
so that if C>0 I get A=B+C and C<=0 I get A=B
Is there an operator or function that will let me do these conditionals inline in MATLAB ...
0
votes
1answer
19 views
get in type mismatch with the .find in a IF condition
I am getting a type mismatch error for the following code. Why?
If (Range("C:C").Find(What:=last_received, After:=ActiveCell, LookIn:= _
xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, ...
0
votes
1answer
94 views
Interactive Quiz using ppt
I posted a rubbish question about this before and have gone away and done some work on it to re-ask. Basically I've made a ppt quiz that counts how many correct and incorrect answers a person has ...
0
votes
3answers
31 views
Header gets cut off when I run a macro in Excel
I have a header set up in a master spreadsheet in which I run different macros off of to sort the information differently. When I run the macros, the bottom portion of my header is cut off. My header ...
1
vote
1answer
23 views
Typo doesn't trigger error handling in Acess VBA
After recently adding some new VBA code that referred to a control, my code wouldn't run. On investigation, I found the problem was a typo in the code referring to the control: I'd typed it as ...
2
votes
6answers
12k views
How can I “ReDim Preserve” a 2D Array in Excel 2007 VBA so that I can add rows, not columns, to the array?
I'm working with a dynamic array in Excel VBA. The number of columns (m) is fixed, however, I do not know how many rows (n) will be required.
The help documents state that ReDim Preserve myArray(n, ...




