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)

0
votes
0answers
7 views

script to edit multiple emails then forward to an address in outlook

I am receiving alerts that have a standard format, I need a script that will execute on the emails that I selected. Basically, Alerts/email comes in user selects the email that needs to be ...
1
vote
0answers
7 views

Unable to Group some shapes in Powerpoint 2010

I am having some difficulty using the .Group method on a ShapeRange. For example, I am not able to Group a table with a textbox, nor am I able to group the slide's title shape with a textbox, etc. I ...
0
votes
0answers
21 views

Code Coverage of VBA Code

is there a tools or an approach to perform a statistical analysis (Code Coverage) of VBA code? I like to answers questions like: How many per cent of the code covered by a test macro. Thanks for ...
1
vote
0answers
20 views

Single cell array for vba TTest

I am trying to run a TTest which requires me to compare one mean of ranges to another. However, my excel file is populated by means already, so I do not need to average ranges as excel is forcing me ...
0
votes
2answers
28 views

Testing if a cell is empty in VBA

I'm trying to write a module in VBA to take a worksheet containing the structure of a website and output into a worksheet two columns which have (column 1) the name of a page, and (column 2) the ...
0
votes
1answer
13 views

Outlook : How to automate task

I have been given a task in which in Outlook I have 1000 of "Tasks" and "Appointments" created for testing purposes. They all are copied and pasted from one message that I have created manually hence ...
1
vote
1answer
21 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
1answer
19 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 ...
-3
votes
0answers
13 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
2answers
25 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
0answers
17 views

Frozen panes overload excel during data processing (VBA)

The background information: I'm writing some VBA code at work for data evaluation and processing. What I'm doing is basically reading a bunch of huge (about 20-30MB) TXT files with lots and lots of ...
0
votes
1answer
20 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
6 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 ...
0
votes
1answer
44 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, ...
1
vote
1answer
23 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 ...
1
vote
1answer
30 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 ...
0
votes
1answer
20 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
0answers
26 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 ...
0
votes
0answers
27 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" ...
1
vote
2answers
32 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 ...
-1
votes
0answers
25 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
19 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 ...
0
votes
0answers
19 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:" ...
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 " & ...
0
votes
1answer
29 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
21 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 ...
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 ...
0
votes
1answer
23 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 ...
2
votes
2answers
25 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. ...
1
vote
0answers
19 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
23 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
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
2answers
43 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
0answers
31 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 ...
1
vote
2answers
21 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
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 ...
0
votes
1answer
37 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
35 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 ...
-3
votes
1answer
18 views

Getting a jar file directory. Visual-Basic [closed]

So i have been looking around for a while now and haven't found anything that helps me out with what i need. I want to use a button to allow a user of my program to browse for a specific .jar file ...
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 ...
0
votes
0answers
27 views

Writting in a textbox with VBA crashes the program

I have a VBA program which draws a wheel and a bunch of other shapes.It rotates the wheel by 3 degrees after each 50 milliseconds and moves other shapes around. I also have a form which has a textbox ...
0
votes
1answer
27 views

Open HTML files in microsot WORD without internet connection, How to exclude popup alerts?

I've write an automated application in VB6 (and also in VB.NET) that opens an HTML documents for printing. My function works fine, without human interaction. Now we have put application machine ...
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 ...
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, ...
-2
votes
0answers
15 views

Auto remove and re-add network (password) printers [closed]

I have a network printer set up on my laptop for my work network. However, every time I disconnect and reconnect (leave the office say), the printer remains offline. All I can do to connect again is ...
-3
votes
1answer
38 views

how to remove EOF, which is getting appended to last word

I would like to remove only the EOF character from the last word in paragraph of text. The EOF is getting appended to the last word and we are unable to read the entire text. Is there any workaround ...
0
votes
2answers
47 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
vote
2answers
24 views

Copy three columns into one column in Excel VBA

I need help to create a Excel VBA macro. I have a workbook contains 4 worksheets. Coulmn "A" in worksheet number 1, 2 and 3 are filled with data. I need to copy these data into Sheet 4 Column "A". I ...
0
votes
1answer
21 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 ...

1 2 3 4 5 295