-1
votes
0answers
32 views

Few queries on advanced capabilities of Excel +VBA

I have recently started using Excel and am using VBA quite extensively. I am interested to know whether Excel + VBA has the capability to do the task that I have listed down below. If it does any of ...
0
votes
2answers
21 views

VBA Overflow error after office 2007 to 2010 update

I have a VBA macro that worked correctly in Excel 2007 but after updating to 2010 it throws errors. The Macro basically copies raw data from one sheet to multiple sheets. The error being thrown is ...
1
vote
0answers
16 views

How to display 'Tooltip' for a Group (textbox + images) Assigned to Macro?

Context: I have several groups that I've made in Excel 2007 that each consist of a textbox and image(s) and are each assigned to a macro. What I would like is upon a mouseover/hover of the group, it ...
1
vote
2answers
59 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 = ...
-3
votes
0answers
23 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
0answers
38 views

Automating tables creation with VBA code [closed]

Hi I have a challenge for the VBA savvy geniuses here. I am still a newbie hence here to seek your help. I am automating processes and need a code to automate the tabulation of items in worksheets ...
0
votes
0answers
16 views

Automatically move data between tables on condition

I have an Excel 2007 spreadsheet titled "Generic". It has 3 sheets called "Sheet1", "Sheet2", and "Sheet3". Each sheet has a single table called "Table1", "Table2", and "Table3" respectively. The ...
1
vote
1answer
37 views

what is the value for second parameter for getdevicecaps function?

I am trying to get the physical margins of an active printer. But i am not sure what should i give the values for second parameter for GetDeviceCaps function. Can someone tell me what are the values ...
-1
votes
0answers
25 views

How to deactive the previous action in vba while opening the excel

when i open the excel it perform the last action that means the action before close the excel(when open excel it perform sent_click() automatically without click the button). Can any one help me how ...
-5
votes
2answers
62 views

How to active action in vba while opening the excel [duplicate]

i want to active particular cell using vba while opening the excel. Can anyone guide me how to do it. Thanks Private Sub Send_Click() Dim strURL As String strURL = ...
0
votes
1answer
49 views

how to keep the first cell always active in excel using vba

How to keep the first cell always active when opening the excel sheet. Can any one guide me to how to this. This is my code: Private Sub Send_Click() Dim strURL As String ...
2
votes
1answer
31 views

Compilation Error with small script

I'm trying to write a cls in Excel 2007, here's the code: Dim JiraService As MSXML2.XMLHTTP60 Set JiraService = New MSXML2.XMLHTTP60 JiraService.Open "GET", "URL", False ...
1
vote
1answer
39 views

Using the Offset Function with dynamic Row number

Looking for a way to make this code work: the idea is to paste the block of data dynamically underneath the last used cell of the sheet Specifically I am lookimng for a way to do this dynamically ...
1
vote
2answers
42 views

Comment vba code from another VBA CODE

I would like to comment the lines who contains Msg Box from another code VBA. I'm trying this with the Library VBA EXTENSIBILITY but i doesn't found the solution. Any help is welcome. This is my ...
4
votes
2answers
266 views

Unprotect VBProject from VB code

How can i unprotect my VB project from a vb macro ? i have found this code: Sub UnprotectVBProject(ByRef WB As Workbook, ByVal Password As String) Dim VBProj As Object Set VBProj = ...
0
votes
1answer
99 views

How to manipulate smart art using vba in excel 2007?

I am trying to create smartart org charts using excel 2007 vba. I tried to first record the macro to see what objects are involved but with no luck. Nothing was recorded. There are some examples ...
1
vote
1answer
118 views

How to rename range using VBA in excel 2007

I've 8+ yes professional programming experience in PHP and Java but none in VBA. Learning it right now. I'm trying to make a Home budget sheet (Just for VBA learning purpose). For that, I'd done ...
0
votes
1answer
23 views

Access to worksheet where the macro belongs

I want to access a worksheet where the macro belongs. To do that, I'm using this code snippet. Is there another way to do it without using the name of this file? Workbooks("file.xlsm").Activate Dim ...
2
votes
0answers
58 views

VBA On.Time() Background Check in Combination with regular Usage

I am currently experiencing an Issue with the On.Time() Command. The Ontime offsetvalue is set to 00:00:10 checking if Files are open. (Sort of a realtime checker). Sub MacroAutoRun1() Dim ...
1
vote
1answer
137 views

excel vba followhyperlink method when no workbook is open

I created a custom UI in excel 2007 as a part of xlam add-in. The custom tab includes a button that opens a website when clicked. I used ThisWorkbook.followHyperlink "address" The add-in is password ...
0
votes
2answers
130 views

Catch the “Data range is too complex” error in VBA

In an excel macro I'm working on I copy filtered data to a new sheet to remove the hidden rows. This allows me to run more complex formulas on the data that the user has filtered. With large data sets ...
0
votes
1answer
325 views

Match Columns on two excel worksheets and copy data

I have two data sheets within the same excel file: Sheet1 as "Data" with 7 columns: The second sheet is "Main" with 5 columns: The same column to match the two files is "name". I want to have a ...
0
votes
1answer
402 views

Excel 2007 VBA CDate method accepted formats

I am developing a change event in VBA for specific cells in Excel 2007. I want to convert dates (with time) with two different formats entered into these cells into one format (American). Here is my ...
4
votes
2answers
597 views

How do I write a VBA Excel Macro that writes a formula depending on another cell value?

I was hoping to write a Macro that does a very repetitive task for me but entering VBA is harder than expected. I will learn how to program macros for excel when I have some time because it seem ...
2
votes
2answers
76 views

Compile error while declaring close

Platform : Microsoft Visual Basic 6.5 and MS Excel 2007 I am trying to do a macro to do some editing to an excel enable file. Done research on how to close the Excel file without saving. The webpage ...
0
votes
1answer
277 views

Excel 2007 VBA to merge multiple sheets to 1 with a column offset

I have found TONS of answers on how to exclude column headings when merging sheets but I can't find any answers on how to exclude column A after the initial sheet is copied. Please help. Warning: I ...
0
votes
1answer
145 views

Copy Headers from an excel file (Excel VBA code)

Good Morning! I am working on an excel file in which I want to copy headers from one sheet and paste it after headers of another sheet. An example is: The sheet 1 has data headers as: Sheet 2 has ...
1
vote
2answers
256 views

How to open a protected workbook from VBA code?

How to open a protected workbook(with password) from VBA code ? I already try this instruction Workbooks.Open Filename:="D:\file.xls", ReadOnly:=False, Password:="semsem" And it doesn't work. Is ...
0
votes
0answers
77 views

How to insert a macro via Word-VBA into an Excel spreadsheet?

I have written a macro that reads out styles and style-parameters from a Word-File into an Excel-spreadsheet, so that they can be systematically reviewed and changed there and be written back by ...
0
votes
1answer
142 views

Import Multiple Pivot tables using VBA

I am trying to automate the import of xml data that forms a pivot table in excel. To import the data a link is read/copied from one sheet and the results are reported on another sheet. The only ...
-1
votes
2answers
379 views

How to auto-update Excel column with current stock prices

I'm currently working on MS Excel spreadsheet that lists stocks, mutual funds, ETFs, etc. but I'm thinking that it would be nice to auto-populate the current price column with the actual stock price ...
0
votes
0answers
118 views

Macro changing “page setup” not working

I have a simple macro that was recorded to format some cells and also setup some some page formatting (margins footer header ect..) The macro runs without errors and it formats the cells just fine but ...
0
votes
1answer
180 views

Method of OLEObject not working in Excel VBA

Any ideas why this works (VBA, Excel 2007): ThisWorkbook.Worksheets("Sheet1").OLEObjects(controlId).ListFillRange = "" but this doesn't: ...
0
votes
2answers
59 views

Calling VBA procedure - error missing =

I tried to call a VBA procedure named Ins_to_temp but it doesn't work. Strange, as Ins_to_temp is built from the model of another procedure: Truncate_table that DOES work! Can you please help me ...
0
votes
1answer
174 views

Excel VBA - Loop is not properly deleting the last row in a table

I've been working on a macro that deletes the row in a table if the values in the table's Column A do not match any of the values in another separate Column B. Currently, my code isn't deleting the ...
2
votes
2answers
183 views

Loading data from Oracle into Excel via ADODB - performance issue

We have a large Excel application which uses VBA, named ranges, ADODB. It's primary function is to connect to Oracle, load a dataset into Excel, allow the user to edit it and save it back to Oracle. ...
0
votes
2answers
404 views

How to import tab delimited data into Excel using VBA

Given tab delimited data that I am importing from Excel, how do I insert it into the spreadsheet so that it ends up in multiple cells like it does when I paste it. Edit: I have the text in a ...
2
votes
2answers
81 views

Excel-VBA Compatibility Issue

I have used following statement in my Excel Dashboard: HeaderTableSheet.ChartObjects("Header_BreakEvenAnalysis").Copy It works fine everytime on Excel-2007 but gives error "Application-defined or ...
2
votes
1answer
493 views

VBA create a version 10 pivot table in an xls file via Excel 2007

I need to create xlPivotTableVersion10 pivot tables (Excel 2003 compatible) via a macro that I run on my computer which has Excel 2007 on it. I run the macro from a a source file. I have another file ...
1
vote
2answers
528 views

Exporting Some Sheets from Excel Workbook to PDF

I am working on writing a VBA code to export some of the sheets in excel to same PDF. I have several chart sheets in my excel file each of which name ends with "(name)_Chart". I want to export all ...
0
votes
1answer
240 views

VBA Error 1004 - PastSpecial method of Range class

Recently I started getting the error 1004: PasteSpecial method of Range class failed. I know people have said before that it might be that it is trying to paste to the active sheet when there is none, ...
0
votes
1answer
160 views

excel macro calling another excel macro in vba

I have made a macro that calls another macro saved on my shared drive. I have taken the help from the suggestions given in the previous question I asked. It is working on the files that are on my ...
0
votes
1answer
65 views

Delete rows based on Criteria of 30 days

I have an excel sheet with over 50,000 rows I have account access history in the tables and basically if within that client, last activity is >30 days, I need to delete the data prior to it for that ...
0
votes
1answer
142 views

VBA combobox style

I have an Excel small interface. I changed a combobox style from fmStyleDropDownCombo to fmStyleDropDownList (I did this by - right click - Properties - Style). Now, I get an error: "Could not ...
0
votes
1answer
262 views

Getting error in naming series collection in a chart in VBA Excel

I am having some problem in Excel VBA. When I try to run the below code; it says: Error 1004:Unable to get the name property of the series class! This error happens at this line of code : (product ...
4
votes
2answers
1k views

Random Number Generation to Memory from a Distribution using VBA

I want to generate random numbers from a selected distribution in VBA (Excel 2007). I'm currently using the Analysis Toolpak with the following code: Application.Run "ATPVBAEN.XLAM!Random", "", ...
3
votes
1answer
185 views

Excel 2007 Macro move duplicates

I have no clue about Excel Macros first up, so I really don't know what I'm doing on this, but any help would be hugely appreciated. I have a spreadsheet with columns (no headers) in rows A - G. ...
0
votes
1answer
178 views

SMTP Outlook Address via VBA

I am trying to retrieve the SMTP Address via VBA for a set of emails in Outlook 2007. I require the the full SMTP address from the sender. Mainly the address is from an EXCHANGE 2007 server. I have ...
0
votes
2answers
366 views

How to move image in Excel using VBA?

I want to move image from one location in excel to another using VBA. How can we do that?
0
votes
0answers
571 views

excel 2007 pivot table show all in filter

i need a macro to show all in a filter. ive got a Pivot table 8 that has a set of numbers and 0 is exluded, but everytime i update i have to select all then de-select 0 again as the totals change. ...

1 2 3 4 5 9