2
votes
1answer
32 views
C# COM Interop Library
Hey all,
I am currently porting a legacy VBA application to a .Net application. During this process the users of the existing VBA application need to have some features added. So i …
0
votes
1answer
27 views
Copy method fail due to memory
In my workbook, I copy the current sheet to keep as a record of a sale. Eventually, the workbook fills up with sales and at some point throws an error when I try to copy another s …
0
votes
1answer
47 views
Help need Pls… excel macro: compare and copy between worksheets
Heres mine problem
If cell H of worksheet A = cell E of
worksheet B (contain words) and If
cell J of worksheet A = Cell H of
worksheet B (contain numbers) and If
cell K …
1
vote
2answers
36 views
How to rename an Access Table using VBA from Excel?
I´m trying to rename an Access Table using VBA from Excel... any help?
0
votes
2answers
25 views
Excel VBA to SQL Server without SSIS
Excel problem: User clicks a button and VBA parses an input file, putting data into cells in the spreadsheet. Then she mails copies of the spreadsheet to people who do work with …
1
vote
5answers
82 views
Count unique values in Excel
I need to count unique values in range (C2:C2080) in excel. Googled formula:
=SUM(IF(FREQUENCY(MATCH(C2:C2080;C2:C2080;0);MATCH(C2:C280;C2:C2080;0))>0;1))
return incorrect va …
0
votes
1answer
59 views
VBA/ADODB Run-Time Error: 3704
The following VBA subroutine will run most queries just fine. (ie: SELECT * FROM DUAL)
Sub DisplayQuery(QueryString As String)
Dim rs As New ADODB.Recordset
Dim connStr As Str …
1
vote
2answers
24 views
Microsoft VBA idiom (Visio) For Testing Non-Existance of a property?
I need to ensure a Macro which works on Visio 2003 doesn't cause problems on lower versions of Visio: specifically because I'm writing to a property which doesn't exist on lower ve …
0
votes
2answers
22 views
VBA Word Macro doesnt recognize whitespaces or wildcards
Hi guys,
I have a VBA Word Macro that gets words from .txt list and color highlight them in a word .doc document.
The problem is that the script ignores whitespaces and wildcard …
3
votes
3answers
64 views
Range limit conundrum
Hi,
Is there some limit to what I can select in a range via VBA? Basically what I found is that if I were to hide an entire row while in a loop, it takes quite a while if there a …
1
vote
1answer
23 views
MS Excel 2003 VBA - Is there a way to define a group of shapes/object into a “group”
So I have this global mapping scheme, and each country on it are individual shapes. I learned how to manipulate colors/fill based on certain criteria. So the way I do this, or the …
2
votes
4answers
71 views
Excel VBA custom function with sumif-like criteria functionality
In Excel, I'm writing a custom function in VBA that needs to take a criteria string and criteria range like the built-in SUMIF function. Does Excel expose the functionality to test …
0
votes
2answers
35 views
How can I call a VBA macro that is defined in a different file?
The situation is the following:
Macro Foo is defined in File foo.vss
Macro Bar is defined in File bar.vsd.
Bar() is at some point supposed to call Foo().
Is that possible?
If it …
1
vote
1answer
33 views
Unable to set ComboBox.RowSource on continuous form
I am having trouble setting the row source of a certain combo box on my form (viewed as a continuous form, although I also seem to have some problems in single-form mode).
The com …
0
votes
2answers
31 views
How to Print a list of sheets in vba Excel
I make a index of a list of sheets in a workbook, i will like to print some of then (list in column A, a mark in column B the ones i would like to print)
Do you have some code for …
