Tagged Questions
0
votes
0answers
4 views
get in type mismatch with the .find in a IF condition
I am getting a type missmatch for the following code could some one help please
If (Range("C:C").Find(What:=last_received, After:=ActiveCell, LookIn:= _
xlFormulas, LookAt:=xlPart, ...
0
votes
0answers
22 views
Microsoft Excel Data Connections - Alter Connection String through VBA
I have a fairly straightforward question. I am trying to find a way to alter and change a connection string for an existing data connection in an excel workbook through VBA (macro code). The main ...
0
votes
0answers
19 views
skydrive excel web app
I've made a calculator which calculates gross and net value depending on tax. Something like this:
Gross | Tax | Net
--------------------------
100 | 10% | is calculated when gross ...
-4
votes
0answers
31 views
Excel macro : search a cell then write formulas
I want VBA macro code on excel to do the following:
for example i have column "C" that contains some cells with value and what else is empty
so , i want by macro , select column "C" , then looking to ...
1
vote
0answers
15 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
1answer
28 views
Excel: Search for all zip files inside a folder
I have a macro (Loop through files in a folder using VBA?) that looks inside a folder for zip files, but the problem is that the last zip file has an empty string as a name. How can I avoid that ...
0
votes
2answers
30 views
DIR function in vba works diffrent when passing a value directly and by a variable
Hi i have some files ina paticular folder in my system when i use th ebelow code it gives all the files in that folder (passing the path directly)
filenm = Dir("C:\Documents and ...
0
votes
1answer
21 views
Excel Macro to prefill online form using IE?
I am in need of assistance. I am trying to write a macro that would take the value in column A and place it on an online form in an input element with no ID but the name ("OldUrl"). Then the macro ...
1
vote
0answers
35 views
Opening an MS-Access database from the command line without running any of the startup macros?
Is there a way to open an MS-Access 2003 database from the command line without running any of the startup macros or displaying any errors?
I looked at the command line arguments for MS Access and ...
0
votes
0answers
35 views
Automate Source Data in Excel
I have two sheets in my excel file. One contains a pivot chart("pivot") while the other one contains data("Data"). What I want is after filling up a column from "Data Sheet", the pivot chart will be ...
-1
votes
2answers
33 views
vba macro: Which table my cursor is in?
Writing a macro I found out that I need to skip the table contents and place my cursor right after that, for this I am using a code as
Selection.Tables(cnt).Select
Selection.Collapse ...
1
vote
1answer
27 views
do while loop based on a value available in cell (find) in vba
Hi i am writing a code in vb to check a particular value in a sheet, if the value is not available then it should go back to another sheet to take new value to find, if the value is found i have to do ...
-1
votes
1answer
46 views
Location of .txt file within an .xls [closed]
Can anybody with Excel knowledge help me? The nomenclature surrounding excel and its macros means I've hit a brick wall investigating this by myself.
In the spreadsheet available here ...
-1
votes
1answer
38 views
Macro code need advise
My presentation is like this: There are around 500 slides in the presentation, the first slide is an introduction, second slide is for instructions with the action button for the Start_time macro - ...
1
vote
2answers
29 views
Visual basic macro- changing the colour of specific text
Im very new to visual basic and macros. what i have been trying to do is create a macro that will look through the whole document and check to see if any of the font is red;if it is red then i want to ...
-2
votes
0answers
20 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 ...
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 ...
2
votes
2answers
83 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 ...
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 ...
0
votes
0answers
29 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
161 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 ...
0
votes
3answers
37 views
Excel crashes while trying to run a loop to delete rows without specific words
So having a nightmare, the syntax and all is correct but the logic seems to be flawed :S
This code is meant to delete rows that do not contain the words
Facility
and
Government
From all cells ...
0
votes
1answer
24 views
Macro That Takes MS word Files in a folder And Runs Them Through Another Macro
I need to make a macro that takes MS word files in a specific folder and
runs them through another macro. i already have the 2nd macro
done and it is working perfectly i just need to know how to make ...
0
votes
0answers
10 views
Combine 2 field information to 1 field with VBA Access 2007
I use access 2007
I have 1 table wich is called 'Planning'
In this table is a field called 'history'. In this field (Memofield) I keep track of all things that are happened to 1 item.
I also have a ...
-1
votes
2answers
50 views
excel VBA trying to get my macro to run faster [closed]
I am trying to get my macro to run a bit faster and i was wondering which way is the fastest:
1)
Set cell2 = Range("F" & CurrentRow)
Set Columns = Range(cell2, cell2.Offset(0, LastColumn - 6))
i ...
0
votes
0answers
59 views
Excel: Search multiple sheets and copy rows containing criteria to new worksheet
I've finally had to throw the towel in and seek help.
This question seems to have been asked time and time again but with slight variations. Despite this i have struggled for over a week to try and ...
0
votes
2answers
32 views
Excel macro input type not returning correct value
I'm trying to delete all cells that have the same interior color in an Excel 2010 worksheet using the following code:
Dim myRange As Range
Set myRange = Application.InputBox("Select a cell to remove ...
0
votes
1answer
22 views
Call a concatenate function into an active cell
I have a concatenate function (ConcatenateRange) which works fine on a variable 2 dimension array. I can call this function directly from excel without a problem in the cell required as follows:
...
-1
votes
1answer
39 views
C# Add-in vs VBA Macro for Excel functionality
We would like to give users of our system the opportunity to drag some of the data from a database into Excel. (Only reading data, no chance of writing any data back to the DB). The users do not have ...
0
votes
0answers
54 views
Fetch data from a Website into an Excel file with the hyperlinks in it
When I fetch data from a webpage to an Excel file using Macro it saves the data in the Excel file as it is supposed to be. My requirement is that it should save the data in the Excel with the ...
0
votes
1answer
38 views
Export all but certain excel sheets to CSV via VBA?
Based on some other stuff I found here, I have made the following script to do almost exactly what I want. It will export all but 4 specific sheets in an excel file to CSV files, append dates to ...
0
votes
1answer
22 views
must remove first character of cell if not #3Created loop never ends
So basically, I need to remove all records that don't have 3 as the 2nd digit in the primary key field which for example can either look like this
#39001
Or without the #3
What I want is that all ...
0
votes
1answer
58 views
A macro that create worksheets based on a master worksheet and then renames each tab
I need help with a macro. I need excel to create worksheets from a master according to a list of "projects" from a different worksheet, and when a new worksheet is created I want it to be renamed as ...
1
vote
2answers
40 views
Remove all rows that don't have #3 as the beginning in primary key
So basically,
I need to remove all records that don't have 3 as the 2nd digit in the primary key field which for example can either look like this
#39001
Or without the #3
What I want is that all ...
0
votes
1answer
18 views
How to concatenate 2 cells at the top of a filtered list? (EXCEL macros)
So i've searched for hours now, and can't seem to find a solution to my problem.
I have a list of 13000+ rows, but I have auto filtered it down to about 200, now what I want is that, lets assume, the ...
0
votes
1answer
35 views
Multiple SQL query ouput in one Worksheet
Hope some one will help me with the problem i am facing. The issue is I am having difficulties in getting multiple SQL queries output in same excel worksheet.
Through below code i am able to get ...
0
votes
2answers
63 views
Out of range error for Windows().Activate
I have a bit of code in my macro which is as follows
ChDir File_pth
Workbooks.Open filename:= File_pth & "\" & open_tkt
Workbooks.Open filename:= File_pth & "\" & closed_tkt
...
0
votes
0answers
20 views
Trying to violate referential transparency in an excel UDF [duplicate]
I'm doing some tests to work out what you can and can't do with excel macros. The situation is that I want to call the following UDF from a cell and have it evaluate to "hotdawg" while also having the ...
3
votes
1answer
42 views
Excel 2007 Macro ,VBAProject can put a configuration file?
Firstly, I'm a newer to Excel Macro.
I have read some articles and done some work these days.
But now I'm so hesitant.Can .txt or .xml file be placed into VBAProject?If yes,how place and how to get ...
1
vote
2answers
33 views
Showing the updates being performed by macro
So I have seen all the ways to hide the screen updating in excel, what I'm looking for is a data problem, so I WANT to see the screen update. Is there a way to code the screen to update during the ...
-2
votes
1answer
90 views
Excel VBA Insert a row(s) based on specific cell value
Would like to first state my experience level:
Excel = Intermediate
VBA Background = Beginner
Here's my situation: I am trying to write a VBA code in excel to automatically insert new rows based on ...
-1
votes
0answers
20 views
Is any certification exam available for VBA ? any reply is highly appeciated. [closed]
Is any certification exam available for VBA (Macros) ?
any reply is highly appeciated.
0
votes
0answers
69 views
VBA Macro- PivotTble Auto-Filter Combo-Box - CurretnPage Issue
I am creating a dashboard with multiple pivot tables and have run into a problem that I cant seem to overcome. I have a primary worksheet where all the data will be displayed with direct references to ...
-2
votes
0answers
31 views
i want sum or item(5) individually…how to run loop [closed]
sql4 = "SELECT OLTC,OLYY,OLNO,OLSR,OLSRNO,OLMCD,OLQW,SUM(OLSALVAL),odsalprc FROM ORDLAB " & _
"INNER JOIN ORDDSG ON OLTC=ODTC AND OLYY=ODYY AND OLCHR=ODCHR AND OLNO=ODNO AND OLSR=ODSR " ...
-2
votes
0answers
54 views
Macro: search across two columns and copy the entire row if 2 values match
I have a quick question regarding macros. I have three sheets, the macro sheet, the master list sheet and a report sheet. I would like a macro (in the macro sheet) to search across two columns in the ...
0
votes
1answer
56 views
Hide AutoExec() and AutoNew() macros from the macro list yet still have them run?
I'm trying to keep certain macros running when Word fires up or opens another document, but I want them removed from the list of macros the user can access (alt+f8).
I've tried adding 'private' ...
0
votes
0answers
37 views
Error Help: Adding to ranges using Application.Union
I am attempting to loop through a large list rows searching a specific column for values based on the values in another tab. I had it working for one value but as soon as I add a second criteria I am ...
0
votes
1answer
27 views
Excel: simple macro to paste as text returns error 1004: Could not run the paste method of worksheet class
When I try to copy any text from another application to a cell in Excel 2010 (Win 7 64bits) using this macro:
ActiveSheet.PasteSpecial Format:="Text", Link:=False, DisplayAsIcon:=False
I get this ...
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 ...
2
votes
2answers
72 views
VBA Excel Won't Change Cell to the Right Color
I am new with using VBA macros in excel, and I am trying to change the background color of a cell based on the condition that another cell is not empty. I thought I had it figured out, but I must be ...

