0
votes
1answer
20 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
45 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 …
0
votes
2answers
23 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?
-1
votes
5answers
79 views
How to write formula in Excel for my requirement
my requirement as follows:
if a5 = 'a' then b5 = 1
if a5 = 'b' then b5 = 2
if a5 = 'c' then b5 = 3
if a5 = 'd' then b5 = 4
if a5 = 'e' then b5 = 5
else enter correct letter
tot …
0
votes
2answers
23 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
2answers
71 views
How do I set Excel formulas with Win32::OLE?
Hello, can anybody tell me, why the "...->{FormulaR1C1} = '=SUMME( "R[-3]C:R[-1]C" )';" doesn't work. In the Cell where should appear the result I get "#Wert!" ( maybe "Value" in E …
0
votes
1answer
13 views
Reading data from an Excel document stored in Sharepoint?
How can I 'read' an excel 2003 document stored as a sharepoint spfile? I can retrieve the document from the library with no problems using the SPFile.OpenBinary() and then putting …
0
votes
1answer
22 views
Filtering and then counting distinct values
I've been tasked with counting distinct records after I have filtered the data. I have 330 rows with column A containing the 'name' and in Column B I have the name of a test that …
0
votes
1answer
58 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
5answers
81 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 …
3
votes
1answer
39 views
Downloading a file over https in IE8, using ASP.NET
I'm trying to make it possible for the user to download an Excel spreadsheet from our site, by having a button that redirect through this:
Response.Redirect(string.Format("../exce …
0
votes
1answer
30 views
Running Excel Solver Macro in Coldfusion
Hi guys,
I'm trying to run the excel solver in Coldfusion. However i'm running into issues like, the page hangs as if loading forever, similar to this.
Is it possible to run exce …
0
votes
0answers
13 views
Collapsing cell rows
I have list of 20 or so questions I have created in excel 2007. Under each question is the possible selections tothe right of the selections is the quantitiy. Because the list is r …
0
votes
3answers
20 views
[VB.NET] Better Way of Getting the Text Value of Cells in an Excel (*.xls) File
I'm trying to write an import function for getting data out of an excel file. How I currently do it is as follows:
Private Sub ReadExcel(ByVal childform As PhoneDiag.frmData, ByV …
1
vote
1answer
20 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 …
