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
20 views
Using .Rows In Excel VBA
I'm having problems making copy/pasting clean. Currently I have this:
If distanceValue <= distanceParameter Then
sh2.Rows(i).Copy _
sh3.Rows(i).Offset(0, 1)
End If
sh2 and sh3 are ...
0
votes
3answers
24 views
Worksheet not being protected
I have the following code that copies one worksheet to another and pastes only values however the code that protects the sheet is not working? what am I doing wrong here?
Sub GetQuote()
...
0
votes
0answers
17 views
VB.net how to make a reference from Excel Cell to a textbox?
in my vb.net Application I'm creating an Excel document with 2 sheets.
One of them keeps some data and the other shows a chart pie.
In Addition to the chart I added a texbox label, which i want to ...
1
vote
2answers
33 views
Excel 2010 VBA: How to store an array of worksheets as a variable?
I am trying to have several arrays of my worksheets that I can call up in my code using.
ThisWorkbook.Sheets(Array("Sheet1", "Sheet3"))
ThisWorkbook.Sheets(Array("Sheet2", "Sheet5"))
I am wondering ...
1
vote
1answer
27 views
VBA Excel - If Then
I have a VBA code on loop and now I've come to deadstill because I cant figure out how to check something. I have a command button then when clicked I want it to perform an if then statement.
...
0
votes
1answer
25 views
VBA: Paste chart with a different name
I use VBA to copy and paste a chart.
ActiveSheet.ChartObjects("Chart1").Activate
ActiveChart.ChartArea.Copy
ActiveSheet.PasteSpecial Format:="Microsoft Office Drawing Object", Link:= _
...
-9
votes
1answer
103 views
Combo box access not displaying anything [closed]
I'm using VBA with Microsoft Access. I don't know why a simple combo box is not displaying anything on my form. This is the code I currently have:
Private Sub Combo8_Click()
Combo8.Items.Add ...
1
vote
1answer
19 views
Auto create Excel sheets from Array values
I am relatively new to vba. I have used VB a long time ago so I derive a lot of info from that experience. Though now I'm facing a harder task and I don't quite know how to do it.
I have got a data ...
0
votes
1answer
25 views
Unknown issue with insert statment
I have a sub form with staff records on it within a main form. I am trying to allow the user to select a record from the sub form and add it to a table, here is my code which, to me, looks correct. ...
-1
votes
3answers
39 views
How do I remove references from a workbook to another [duplicate]
I have a sheet(Questions) in a workbook(Rating) that has a button at the bottom of the Questions sheet that copies sheet 2(quote) from the Rating workbook and pastes it in a new workbook that is named ...
-1
votes
0answers
33 views
Copy paste from different sheet if the title match using excel macro
I want to copy the numbers from sheet 2 (Highlighted in Green Color) and paste it in table 1 (highlighted in blue) based on the country and segment "SB" or if it is "MB" like that. How can I do this.
...
0
votes
0answers
8 views
VBA macros for excel to perform mail merge using DDE to open data source
I want to use a macros to do mail merge running from the same excel workbook.I would need to use DDE as data source because I want to keep the format. However, this macros runs forever finally froze ...
1
vote
1answer
14 views
Errors with linked tables and Ms Access ( Run-time error '3622' : dbSeeChanges/Identity column )
I am trying to output the name of all linked tables, including their fields which are Date/Time, and that fields values.
The following code can output the first table, field name and their first ...
0
votes
0answers
23 views
how to save a pdf without path in vba
I have opened a pdf file who was embedded from powerpoint presentation using the following code line:
ActivePresentation.Slides(1).Shapes(1).OLEFormat.DoVerb
So it really doesn't have a path that I ...
0
votes
2answers
29 views
How do I remove links from a workbook linked to another
I have a sheet(Questions) in a workbook(Rating) that has a button at the bottom of the Questions sheet that copies sheet 2(quote) from the Rating workbook and pastes it in a new workbook that is named ...
0
votes
1answer
18 views
How to select a chart by iterating through all the charts
I need to iterate and modify properties of some charts one by one, but for that I use ActiveChart ex.:
Target_str = ActiveChart.SeriesCollection(2).DataLabels.Item(1).Caption
Target = ...
1
vote
3answers
16 views
exel vba - compare date in cell to current date
(Excel 2010 VBA)
I have a cell (A1) containing a date in the format of mmm-yy ("Custom" category).
Foe example, if I enter 1/6/13 the cell shows June-13. That's fine.
In my VB macro I need to check ...
0
votes
2answers
12 views
VBA Powerpoint Grouping Array?
I'm very new to vba coding so bear with me.
I want to create a code that will resize a selected image, position it accordingly, create 2 text boxes beneath it, and finally group the image and 2 text ...
0
votes
1answer
18 views
VBA Sort creates error using relative references but not absolute references
I've run into the strangest error that has me stumped. I'm sorting through VBA, and I want to use relative references such that I can effectively sort multiple areas of the spreadsheet at once.
...
-1
votes
0answers
28 views
Ping values from excel [duplicate]
I have a worksheet of about 600 IP addresses and I was wondering if there was a way I can write something in VBA that would allow me to ping them straight from my worksheet, and mark if they're ...
1
vote
1answer
20 views
How to test if some of the optional parameters of an excel-VBA procedure is supplied?
I am trying to write a VBA macro to AutoFilter a table using the users input. I need the user to indicate the columns to filter and also the Criteria for that field. Therefore I thought to define a ...
-1
votes
0answers
8 views
Using recordset referece i,j as a matrix in access vba
I would like to reference my recordset as a matrix with the i,j indexex, where i is the line and j is the column. This is my code:
Dim db As Database
Dim tb As Recordset
Set db = CurrentDb()
Set tb ...
0
votes
1answer
29 views
Destroying Custom Objects in VBA for Excel
I am making a mock trading program in which I have created a Class called "Order." When a user in the program decides to cancel an order, I need the instance of the "Order" class that they are ...
0
votes
1answer
30 views
Extract data from a website using VBA
I am trying to extract the data from the webpage http://www.fdci.org/Member.aspx?mid=-1634884325&cat=1 and many others similar to this.
I need to get the Profile, Name, Address, Email, phone,fax, ...
0
votes
3answers
24 views
Syntax error with paste special
Cells(R, DataCol).Resize(, ColumnCount).Copy Cells(R, DataCol) _
.Offset(RowOffset * (R - StartRow), ColOffset).PasteSpecial xlValues
Can anyone tell me why the statement above is a syntax error, ...
1
vote
1answer
18 views
Cannot initialize the value of an array in VBA
I am still new to VBA. here is the code:
Sub Macro1()
Dim NumberSeq() As Integer = {1,2,3,4}
End Sub
It's just the initialization of an array and I saw it work for others. But I always get the ...
3
votes
1answer
25 views
How to make WinHttpCrackUrl work in 64-bit
I have Visual Basic for Applications code that uses WinHttp and works flawlessly with 32-bit Office 2010 running on 32-bit Windows XP. The same code fails to run properly on 64-bit Office 2013 on ...
0
votes
1answer
21 views
Copy varying columns to single excel sheet using a macro
I am trying to write and excel macro that will copy data from an excel file with multiple sheets. Each column will have different lengths and the name of the sheet will not always be known. I want it ...
0
votes
1answer
14 views
moving range copy paste
I have a data set of 24 hours of demand (rows) by 365 days (columns) and I need to convert this to one continuous vertical data series. In other words create a macro that copies the second day's data ...
0
votes
1answer
35 views
Excel 2010 VBA: Save file using value from cell to determine path and filename
I am trying to write some code that will save several tabs as a pdf document in folder specified by files within excell. I would like for cells within the document to dictate where this file is saved. ...
2
votes
1answer
25 views
VBA - Version System
I have a visual basic app, and I have a file in my host called version.txt.
I want to connect it to my vba app and whenever I change the number written in version.txt, the app warns the user to ...
0
votes
0answers
29 views
Excel VBA: Automation error- Remote procedure call failed
I am extracting certain data from a website. I have to do this task for at least million rows from a table. I am using excel VBA to connect with MySQL.
Using MySQL to connect with excel VBA, I am ...
0
votes
1answer
36 views
VBA Macro to automate histogram throwing error 400
I wrote a macro to produce a histogram, given a certain selection. The code for the macro looks like this
Sub HistogramHelper(M As Range)
Dim src_sheet As Worksheet
Dim new_sheet As Worksheet
Dim ...
0
votes
3answers
32 views
How to Loop Through 5 Cells in a Row Using Excel VBA
I want to loop through 5 cells, Q5 - U5.
With each cell I want to check if the value is equal to "Y", and if yes, highlight the cell to make it green.
How may I do so? Can't seem to figure it out.
...
0
votes
1answer
21 views
Excel VBA - Import or copy columns to another worbook in a different order
I am trying to import an excel file having headers as A1, B1, C1, D1, A2, B2, C2, D2, A3, B3, ...D4 and each of the headers having data for 150 rows. I have to import this data set to another workbook ...
0
votes
1answer
26 views
Deleting Rows meeting certain criteria in excel using vba (autofilter)
I am attempting to delete rows based on criteria using an autofilter.. as there is a lot of data in the worksheet that I am working with. As seen below, I found a code on this site that I edited to ...
2
votes
1answer
24 views
Flag Records From A Filtered Form
I have my Form set to filter to make sure that only clients who need to be mailed are loaded into this form.
[Complete]=No And [Call 1]="Wrong Number" Or [Complete]=No And [Call 2]="Wrong Number" ...
0
votes
1answer
39 views
Worksheet_Change not working correctly in VBA
Function Censor(ByVal str As String) As String
str = Replace(str,"Wazzle","Wa**le")
Censor = str
End Function
Private Sub Worksheet_Change(ByVal Target as Range)
For each cl. In Target.Cells
...
-2
votes
0answers
23 views
finish a loop and go to next vba
I have a problem at hand
i hav 4 columns
In one sheet:
class name no remark
2 a 2 good
b 3 bad
c 4 good
3 d 8 good
another sheet:
good ...
-2
votes
0answers
15 views
Combo Box using Recordset select statement query [closed]
Guys can you please give me an example of a Combo Box code in MS Access VB, where it displays the Query result in the combo box, using select statement and Recordset? Until now no one have been able ...
2
votes
2answers
63 views
How to read e & é as the same thing using search macro in excel
I'm not entirely sure how to word this but, I have an Excel macro that enables a search functionality within my workbook. My issue is that I need the search to understand 'é' as 'e'. So that if I ...
0
votes
1answer
23 views
VBA script in Excel to populate the .from field from a cell in the worksheet
I have sucessfully configured a VBA script based on an example from http://www.rondebruin.nl to send a copy of an active worsheet in excel as an attachment using a gmail account and CDO.
What I would ...
0
votes
1answer
28 views
Update Data in Other Excel Sheets of a Workbook
This is a direct reference to a previously asked and answered question located here: Automatically Update Data in Other Excel Sheets of a Workbook
That script works fine, but for some reason, it ...
0
votes
0answers
30 views
Convert this Macro to run automatically
Below is a code that I now have working, It takes the sheet "INITIATING DEVICES" and searches for column "G" if column "G" has a value of "Yes" then it will copy that row, only columns "A, B, C" to ...
0
votes
1answer
28 views
Passing a global variable in vba to a function
So i have this number of different two dimensional arrays that contain different physical attributes of a flow (mach number, temperature, etc). i need to plot these values in excel and calculate ...
2
votes
3answers
29 views
Having an MS Office UserForm detect which subroutine called it
In a VBA project of mine I am/will be using a series of reasonably complex userforms, many of which are visually identical but have different subroutines attached to the buttons. As a result I'm not ...
-2
votes
1answer
30 views
Selecting data from Excel based on value
I have an Excel sheet with data such as date, time, and some other numbers.
What I want to do is create a macro that goes and selects all the data that falls in a certain time range.
For example, I ...
0
votes
2answers
31 views
Delete ALL duplicate rows based on multiple columns
The code below is currently deleting all duplicate occurances, including the original, found in column A. I would like to modify the code below to delete all duplicates based on columns A, B, C & ...
1
vote
0answers
14 views
Updating specifics rows in a RecordSource of a Sub-Form by using textbox
I am on Office Access 2007, i've been working on a Race Timer for school during vacations.
I already know that Access is not the best for this sort of software but the previous developer been using ...
0
votes
2answers
15 views
Change cell color based on value of another cell
I'm trying to run a code that upon pressing a button, finds a cell from a column ("H") in another sheet (labeled "MFG PNs") and matches its value with what is entered in cell "Z21" on my sheet labeled ...


