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
27 views
Update PowerPoint pictures using VBA
My day to day work involves creating powerpoints for clients highlighting their campaign performance. Most of the charts have been linked to excel, which saves me a ton of time but I end up spending ...
-2
votes
0answers
19 views
Excel giving an item from a list to multiple users from 1 sheet
I'm hoping someone can help.
I've got a unique problem and I've looked but can't find an answer.
i have upward of 200 users and I need them all to work from a list in order and update the starting ...
0
votes
0answers
16 views
Macro to AutoFilter and paste results to different parts of a different absolute worksheet
I've done the super-long version, so here's the super short. This is how I'd like it to run:
Any cells in B3:B26 that = "1G", then copy that entire row (which goes A:Q), and paste it into the A2 of ...
0
votes
1answer
43 views
VBA: lists group items of a PivotTable report
how can I get the list of grouped items in a pivot table with VBA ?
For example, from ...
0
votes
0answers
31 views
Want to extract text without class or element tags from a website into excel with VBA
I've watched a few VBA video tutorials explaining how to extract text from a website, but all of the examples showed webpage text that was associated with a specific class or element. However, I don't ...
0
votes
1answer
36 views
Importing Access query output into Excel using VBA
I am trying to get this code to work, but it doesn't seem to want to pull the string from the getopenfilename command, so I thought I would see if anybody has any ideas on how to reconfigure this code ...
0
votes
1answer
20 views
VBA runtime error 91 even though variable is set
I am struggling with a piece of code that places a custom class in a collection. Every time I run the code I get a runtime error 91. The error is occuring on the Set pjt = New CProject line.
Dim ...
0
votes
1answer
33 views
vba write numeric data as text into excel
I am writing data into an excel spreadsheet. The data comes from an Access Database. Code like the line below works:
xl.cells(5,5)="joe"
but code like the line below does not:
...
2
votes
1answer
42 views
Inserting into an Excel VBA string
In JAVA or C++, we can do something along the line of myString.insert(position, word). Is there a way we can do the same in Excel VBA's string? In my worksheet, I have a string looks like this: 01 / ...
1
vote
1answer
18 views
In Excel, how to scan for Duplicate in Column A. Place info in another sheet
Here is my issue. I have a WorkSheet Named Cost Data
In Column A which is named HEITEM
I have for example
7658798
7513807
789456
7513807
Note:7513807 is a duplicate
In Columns B - AG I have data ...
0
votes
1answer
25 views
run time error 3061 - ms access
I am relatively new to MS Access and VBA. I am trying to do a bit of code for this DB and get error message 'Run Time Error 3061. Too Few parameters. Expected 1" when it gets to the OpenRecordSet ...
0
votes
1answer
31 views
Unable to populate PowerPoint TextBox with value in Excel cell using VBA
It's all fixed now..I had forgotten I had used an activex control textbox not the "normal" PPT textbox. This is the correct basic code to populate a single textbox.
Thanks to David Zemens I got ...
0
votes
2answers
39 views
Excel VBA connect to SQL Server Login Error
I am a beginner in Excel VBA and faced a problem: I can connect to remote SQL Server through Management Studio, but got error when connecting through Excel VBA.
Below is my connection string and the ...
0
votes
1answer
22 views
VBA to C++ dll function call, how to have missing argoument
I have function that I compiled with C++ as dll. I access it via vba no problem everything works great.
I want to have one of the arguments to be set to a specific value if the user does not specify ...
1
vote
1answer
20 views
How to change multiple comboboxes with little code
Here's my problem.
I have a userform with 10 comboBoxes.
Instead of Select Case al those comboboxes one by one is
there a smart way to change multiple combobox properties such as backcolor or ...
-1
votes
0answers
47 views
Need VBA code to save list of data to new workbooks [closed]
I have a list of data that could be anywhere from 1,000 rows to 60,000+. I need to break them up into lists of 100 records plus the header row (1).
I'd like to specify the file name incrementally as ...
0
votes
2answers
42 views
Excel VBA transpose with characters
I have a range with 918 cells (A1:A918). Each cell has one string. I need vba code to surround each cell with quotes (" ") and add a comma (,) at the end. Then Transpose the list. I cannot add those ...
1
vote
2answers
52 views
Recorded macro does not work on chart object
I recorded the following macro :
Sheets("Rejets Techniques TGC").Select
ActiveSheet.ChartObjects("Graphique 1").Activate
ActiveChart.Axes(xlCategory).Select
ActiveChart.SeriesCollection(1).Values = ...
0
votes
0answers
11 views
VBA - How to put a value in a box from a site?
I'm accessing a company's website, in which I log and after I need to populate a field with the date for extracting reports.
I need to insert a date in both fields.
How do I do this via a command in ...
0
votes
0answers
20 views
Export to Excel from Access stalls
I am running a few queries which alters data in tables then exporting the final alterred table to an excel spreadsheet.
The code looks something like this....
Do.Cmd.OpenQuery "Query 1"
...
2
votes
3answers
33 views
ByRef arugment type mismatch in Excel VBA
I am new to VBA, I wrote a user define function that takes a string, process it and return a cleaned string. I am not sure what is wrong with it. I am not able to call it and ask it to process my ...
0
votes
1answer
19 views
Converting variant into array in VBA
I am trying to use the Excel built-in function SumProduct in VBA but keep getting errors. The code snippet looks as follows
Dim X As Variant
'x is input value, given as Range
X = x.Value
Dim Y() As ...
0
votes
1answer
20 views
How to create a checkbox/options button and change its values in VBA?
I create an OptionButton with
For Each c In Selection
Dim right As Range
Set right = c.Offset(0, 1)
Button = ActiveSheet.OptionButtons.Add(c.Left, c.Top, c.Width, c.Height)
With ...
1
vote
0answers
24 views
Difference Between ApplyFilter and SetFilter
What is the difference between the DoCmd.ApplyFilter and DoCmd.SetFilter methods? I looked them up on msdn and I don't see the difference. They even have the same arguements.
-3
votes
0answers
22 views
VBA Efficient way to refer to data stored in another file path
I'm looking for the most efficient way to refer to data in workbooks stored in various file paths.
Most of our spreadsheets have about 1000 cells that refer to data stored in spreadsheets in various ...
0
votes
2answers
33 views
Filtering rows based on content from multiple columns
I am stuck writing a macro that filters a list.
I am getting some results, but not the ones i need.
Here is some speudocode that describes what i want.
Sub Filter1()
____Dim listOfRows As ...
1
vote
2answers
23 views
VBA Excel WebBrowser how to reset ReadyState before .Click from the code?
I have similar code in Excel VBA with WebBrowser control inserted in a form:
basePath = "http://www.amazon.co.uk/"
' Open main website (Home page)
WebBrowser.Navigate basePath
PauseTime = 30 ' Set ...
1
vote
1answer
15 views
recognize a interior highlight
Okay so I´m trying to recognize everything highlighted with the Dark Blue text 2 lighter 60% and for each value where its true in my range I want to make the cell 2 spaces to the right = 1. I have the ...
-1
votes
0answers
23 views
VBA new excel plot
I have never did a plot in VBA, so I'll need your help.
I want to write a code that makes a scatter line plot of:
Range A2:A30 - the y axis, Name of the axis in A1
Range B2:B30 - the x axis, Name ...
0
votes
1answer
27 views
Int to numeric conversion error in SQL Server
I have a question with converting data. I have a select query made in VBA, how can I convert from varchar value column to nvarchar.
I get this error:
Arithmetic overflow error converting numeric ...
1
vote
1answer
37 views
Excel VBA Set Auto Filtering
I am learning VBA for Excel and really strugling to do it. Right now I am doing coding to set a filter for a data chart.
Basically i dont know how to post the data sheet up here so just try to type ...
2
votes
2answers
80 views
GoTo <Line number> in VBA
From the VBA help file:
GoTo Statement
Branches unconditionally to a specified line within a procedure.
Syntax
GoTo _line_
The required line argument can be any line label or ...
-1
votes
2answers
40 views
Deleting all columns except columns with certain headings
I am trying to format exported data and need to delete several columns. I want to keep columns with certain headings. For convenience if I have 15 columns and want to keep columns with the following ...
-1
votes
1answer
40 views
Getting error message : You tried to execute a query that does not include the specified expression 'CS' as an aggregate function for an UPDATE query
I am trying to execute the below update query but it throws an error stating 'CS' is not part of an aggregate function. No clue as to what the error could be.
UPDATE [Control Shipping Summary Report] ...
1
vote
1answer
62 views
How to simplify this insert statement
So I'm trying to insert 120 rows into a new table and it keeps throwing "Query too complex" errors at me. It works fine upto 90 rows.
This is the query:
SQL = "INSERT INTO " & newtable & " ...
1
vote
1answer
32 views
Passing a row range to Excel User Define Function and assign it to an array
I am trying to
pass two ranges - multiple column single row - to a user defined function in Excel 2007,
then assigning it to an array for processing.
Function MAE(actualData As Range, forecastData ...
0
votes
1answer
42 views
How do I get the paragraph number of the currently selected paragraph in Microsoft Word into an AppleScript variable?
This is intended as an extension of the original question, The number of the current paragraph? How can I get it?, which does a nice job answering the question for iWork Pages. ...
1
vote
2answers
31 views
Select Columns using single integer in Excel VBA
How can I loop through Excel columns using a single integer as input such that if
myInteger = 1
then
X = ThisWorkbook.Sheets("Sheet").Range("B3:B253")
Y = ...
0
votes
0answers
10 views
EDF #NAME Error but works with Sub
I have exhausted EVERY piece of reference and I can't seem to figure out why this function isn't working. I'm new to creating UDFs so here's my problem: I get a #NAME error when I try to call the ...
2
votes
1answer
30 views
1004 error when trying to set name on xls worksheet
I'm trying to create worksheets with name taken from "sheet1" cells, but I 'm always getting 1004 error when executing Worksheets(Worksheets.Count).name = companyName
I tried setting the sheets name ...
1
vote
0answers
15 views
Rules and scripting -> Script not run immediately
I am assigning a category to a certain e-mail that then triggers a rule to run a script (in outlook). Everything works fine, I just cannot understand why the script does not run immediately after ...
0
votes
2answers
47 views
Excel 2003 - Macro to delete multiple rows by cell value
Goal: I am looking for a macro that can delete multiple rows based on cell criteria in one column, but I want the macro to ask for a value each time it is run rather than having a set value included ...
0
votes
2answers
41 views
Code replaces table headers and will not merge rows
I am sorting this table by metric tons per hour, and the code I have so far deletes the headers(the second row down is just shifted up) and I can't figure out how to make this not happen. Also, I want ...
0
votes
0answers
28 views
VBA on incoming email in Outlook and appending to subject line
Hopefully this is a fairly easy one, here's what I'm trying to do:
I work for an exam marking board, and we have examiners who email us directly with different queries through the day. We are ...
0
votes
2answers
32 views
Is there a way to track mass emails confirming products received in outlook 2010
My company receives email confirmations of our products being received for inventory purposes. We received over 1000 a month, we have one employee (hate her job) that goes through each and every ...
0
votes
0answers
27 views
VBA get object type and library for LDAP
does anyone know a way simmilar to TypeName() to get the name of the object? For example:
Dim obj
Set obj = GetObject("ADODB.Connection")
Debug.Print ObjectType(obj)
I would like this to print out ...
0
votes
1answer
23 views
Plot multiple embedded charts on separate sheets from shared data
my semi-working code below plots data from my "sheet1" to a chart, then moves it to its own sheet and embeds it there. All data is on "sheet1". Each chart needs its own new page. Every iteration uses ...
-1
votes
0answers
9 views
VBA script to periodically check for outlook messages not received
I would like to automate Outlook to check every 8 hours to see if message from a specific sender has been received or saying another way, if the most recent message from that sender is more than 8 ...
0
votes
2answers
32 views
VBA suddenly decides it needs declarations
I've been using a few macros I wrote for a few days now without issue. Upon restarting my computer, whenever I go to use a macro with a variable that hasn't been declared, an error message pops up. ...
0
votes
2answers
143 views
Writing Excel VBA code/macro to populate Powerpoint Text boxes with Excel cell values
I'm attempting to take the value in Excel cells and value PowerPoint text boxes. I don't want to link a PowerPoint table to an Excel spreadsheet because the spreadsheet is constantly changing..values ...


