Tagged Questions
The Excel-2003 tag is used for referencing the Excel Version 2003 spreadsheet application from Microsoft. The version independent Tag is "excel". If your question is about VBA then also tag it VBA. If it is about an Excel formula or worksheet function, then tag it worksheet-function.
9
votes
1answer
112 views
Language independent way to get “My Documents” folder in VBA Excel 2003
I need a Language independent way to get "My Documents" folder in VBA Excel 2003.
What I have:
Public Function MyDocsPath() As String
MyDocsPath = Environ$("USERPROFILE") & "\My Documents\"
...
9
votes
3answers
368 views
Timed Alarm in Excel VBA
I made a calendar (to track stuff to do) in Excel 2003.
What I need is to be able to set a timer via VBA. Something like:
run_in_x_secs ( timetowait, function to exec)
Is there a way to do that in ...
7
votes
2answers
110 views
Migrating from VBA Excel 2003
I have a series of big excel files that work like a program, but I hate beeing tied up (stuck in VBA for excel 2003), so...
Whats the best way to implement a gui over a excel vba program (office ...
6
votes
2answers
86 views
Excel 2003 VBA - kernel32 functions - and other libs
I've been programming in VBA for Excel 2003 for some years now, and only recently I've been introduced to:
Declare Sub AAAA Lib "kernel32" Alias "AAAA"
By an answer here in stackoverflow.
What ...
5
votes
2answers
347 views
Upload file via FTP from excel VBA
Need to upload a file (file.txt) to a server (ftp.server.com) from excel VBA.
(does not have to be necessarily ftp, just need to be able to put the file there and get it back, and I've got a server on ...
5
votes
1answer
678 views
Excel 2003 - How to build my own XLA?
How can you make the .xla file if you want to create your own xla? I have the code, classes, shapes, etc....what is the process to making an xla file to point to? I know that I have to put it in my ...
5
votes
2answers
15k views
Loop through each row of a range in Excel
This is one of those things that I'm sure there's a built-in function for (and I may well have been told it in the past), but I'm scratching my head to remember it.
How do I loop through each row of ...
4
votes
1answer
97 views
Embed EXE file in the Excel file
I use:
retVal = Shell("program.EXE " & filename, vbNormalFocus)
To execute a program need for my excel spreadsheet.
Is it possible to embed the EXE file in the excel file itself?
And how ...
4
votes
3answers
292 views
How do I remove the characters in VBA?
How do I remove special chracters and alphabets in a string ?
qwert1234*90)! ' this might be my cell value
I have to convert it to
123490 ' I mean I have to remove everything but keep only ...
4
votes
7answers
289 views
Need a better optimized code?
Need a much Optimized code.Well I Got a Project and I have Succefully made it work with the vba (Mostly helped by the stackoverflow programmers Thanks for that)
But Today I got a Feedback. Its ...
4
votes
2answers
168 views
How to show current user name in a cell?
In most of the online resource I can find usually show me how to retrieve this information in VBA. Is there any direct way to get this information in a cell?
For example as simple as =ENVIRON('User') ...
3
votes
1answer
125 views
Validate IBAN in Excel
Is there any ready excel sheet to validate the IBAN? I will enter the IBAN and it will show valid or invalid.
I have searched for a number of Adds In and found this one
But I don't know how to open ...
3
votes
1answer
70 views
Set returned Range object from the Copy() method in VBA?
I have used the Copy() method on a filtered List range in Excel 2003 using a macro and I want to grab the returned range and count the rows (so I can check I've copied more than one row. However I get ...
3
votes
1answer
101 views
Import/Export sheet from excel 2003 using VBA
Need to export and import a sheet from my workbook using VBA.
What's the easier way to do it?
Export as CSV?
Export as txt?
Can I save the object (the copy/paste object) to a file and then ...
3
votes
2answers
128 views
In excel: How to determine if 01/01/1900 then print out empty string, otherwise show the date
I'm trying to show all dates except for 01/01/1900. In excel, how do I first check for 01/01/1900 and then replace only that date with empty string or "", but leave any other dates alone? I also need ...
3
votes
2answers
114 views
How do I insert the formula into the cell when the formula keeps changing with an increase in row?
I have entered these formula in the second row of the Pth column:
=(COUNTIF(A$1:A1,A2)=0)+(COUNTIF(B$1:B1,B2)=0)+(COUNTIF(F$1:F1,F2)=0)
When I drag it to the third row of the Pth column, it gets ...
3
votes
1answer
206 views
Excel: Break on Error doesn't work in user-defined function
It seems that when VBA code is called from a cell formula (ie. a "User Defined Function" or UDF), the usual VBA Break On Error doesn't work.
The only place I can find this behavior documented is a ...
3
votes
2answers
292 views
Excel: Check Sheet Dependencies within a Workbook?
I'm in the process of refactoring a huge workbook woth a lot of legacy parts, redundant computations, cross-dependencies etc.
Basically, I'm trying to remove unneeded sheets and implement some ...
3
votes
2answers
1k views
How to limit cell value in Excel to options from another sheet?
In Excel (2003), I want to limit the selection of values in a cell to allowable values from another spreadsheet.
For example, in the sheet "Currencies" I have
EUR,1.1
GBP,1.0
USD,1.5
(That's two ...
3
votes
4answers
1k views
VBA Handle Empty Array Error
I am writing a script that will loop through me excell spreadsheet and find if there are any duplicates of the selected cells. if there are dups then the function will return an array of which rows ...
3
votes
2answers
387 views
C# app that uses Excel Interop, easy switch between 2003 2007?
I have an app written that just does really basic I/O on a spreadsheet. Read in a bunch of cells, do some sorting, and dump the output back into another spreadsheet. Works great on my machine. I have ...
3
votes
4answers
586 views
What is the maximum number of controls that a VBA form can hold?
I'm currently building an Excel 2003 app that requires a horribly complex form and am worried about limitations on the number of controls. It currently has 154 controls (counted using ...
3
votes
2answers
6k views
PHPExcel how to set cell value dynamically
How to set cell/column value dynamically using PHPExcel library?
I am fetching result set from MySQL database and I want to write data in excel format using PHPExcel library. Looking at example
...
3
votes
5answers
2k views
Bugs in Excel's ActiveX combo boxes?
I have noticed that I get all sorts of annoying errors when:
I have ActiveX comboboxes on a worksheet (not an excel form)
The comboboxes have event code linked to them (eg, onchange events)
I use ...
3
votes
2answers
455 views
What are pros & cons of Passed Arrays vs Global Arrays in Excel VBA
Ok, 2nd attempt at writing a Stack Overflow Question, so forgive me if this seems familiar.
I am rewriting an Excel Macro that was built over a 2 1/2 year period, frankenstein style (added to ...
3
votes
2answers
864 views
How to use an specific version of Excel in a C# program
For many reasons, I have installed on my laptop MSExcel 2003 and MSExcel 2007. I need both versions to develop specific projects for each version (Document level projects and Application level ...
3
votes
1answer
2k views
Copy Excel worksheets, macros, and graphs from one workbook to another, moving links to the new workbook
I have an Excel workbook with a number of features:
One main user-facing sheet
One summary sheet based on the user-facing sheet's data
A number of graphs based on the user-facing sheet's data (as ...
3
votes
1answer
1k views
Best content-type and extension for web delivered Excel 2003 SpreadsheetML file
I am working with an API that has a report URL call. The report has an "Excel 2003 XML" format option. When that is selected they deliver it as:
Content-Type: application/vnd.ms-excel
...
2
votes
2answers
62 views
How to instance a named Excel.Application object to allow for post-macro garbage collection after the unexpected
I'm a relative VBA novice, and designing a fairly complex macro that can run for anything between 10 seconds and 10 minutes, which does most of its work in another invisible instance of Excel created ...
2
votes
2answers
39 views
Excel 2003 Document Level Customization and Excel 2010 Compatibility
Does anyone know if there is a way to make an Excel 2003 Document Level Customization work with Excel 2010? When I try to execute this document level customization built on Excel 2003 and VSTO 2005 ...
2
votes
3answers
60 views
How to: Excel 2003 macro to sum visible values only?
at the moment, I have a very large spreadsheet (40k+ rows), the data includes columns for "name", "date" and "value". the format is uniform.
I want to be able to sum all "values" with the same "name" ...
2
votes
1answer
533 views
Excel: Working with named Range.NumberFormat in VBA: “General” vs. “Standard”
A couple questions about Range.NumberFormat here--hopefully someone has ready answers they can provide, as searching the web is tough with all the generic terms.
A little background: I'm trying to ...
2
votes
2answers
49 views
Excel search for cell references in formulas
I inherited a big model and have been trying to reverse engineer some of the formulas. There are a lot of fields. I am not sure if everyone of them is necessary.
Is it possible to search an Excel ...
2
votes
1answer
130 views
Converting unicode fraction characters (vulgar fractions) to decimals in Excel 2003
I'm trying to convert the following text to a decimal number in excel 2003:
"93⅛"
The output should be: 93.125
I've gotten this to work with ¼, ½, ¾ by using the Replace function in VBA:
For ...
2
votes
1answer
106 views
Disable excel prompt about quality loss when saving
I am working on macro for my proffesion in the army - I make graphs of air force saftey.
I want to make my job easy so I want that the macro will change somethings - which it does right now and it ...
2
votes
1answer
89 views
Excel 2003 DSUM not working
A client of mine has a major application written and running in excel 2003 ( I know, and they know, that it is a mistake, and they are waiting for it to be properly incorporated into their SAP ...
2
votes
1answer
501 views
How to open Excel file written with incorrect character encoding in VBA
I read an Excel 2003 file with a text editor to see some markup language.
When I open the file in Excel it displays incorrect characters. On inspection of the file I see that the encoding is Windows ...
2
votes
2answers
231 views
Password-protect the macros of a second workbook from a first using VBA
I have a workbook, which creates a second workbook (using ThisWorkbook.SaveCopyAs) to present the data nicely to users. It relies on macros for part of the processing.
However, I've been asked to ...
2
votes
2answers
727 views
Excel Workbook Open Event macro doesn't always run
I've got a Workbook_Open event macro (and it's in ThisWorkbook) that doesn't always run.
If Excel is closed and I double-click the .xls file from Windows Explorer, it does run.
If I launch Excel ...
2
votes
2answers
392 views
How to call web service from excel Macro
I need to call an webservice method from my excel macro. can any on suggest me how can i do that. I don't want to use soap related thing durin calling the webservice in macro code.
Thanks in advance.
...
2
votes
3answers
615 views
using a sheet in an excel user defined function
The VBA I'm trying to write is fairly simple but Ive never written VBA and coming from the visual studio & C# world, this truly is hell!!
So I'll really be grateful for any help/pointers/hints ...
2
votes
2answers
2k views
Get User Selected Range in VBA
How can I get a range of cells that where selected via user mouse input for further processing using VBA.
2
votes
1answer
641 views
vba: return dictionary from function
this outlines what i am trying to do.
this is not working for me, and it is unclear why.
thank you in advance for any and all help.
Sub mySub()
dim myDict as Dictionary
...
2
votes
1answer
155 views
How to make wpf application as ole server
I would like to insert my wpf application in excel sheet just like an OLE object. Is it possible? If yes, how we can do this.
In Excel 2003 when we click Insert->Object menu item, we get the 'Object' ...
2
votes
1answer
175 views
Excel 2003 Workbook Form Controls sometimes resize when viewed through a Virtual Machine
I develop for clients who are still using Excel 2003 on Windows XP systems. Therefore we develop within a Virtual Machine running XP and Office 2003.
I often create menu or control sheets within ...
2
votes
2answers
604 views
Deleting hidden name definitions with invalid names in Excel 2003
I am using this macro:
http://support.microsoft.com/kb/119826
to try and clean up hidden names in my excel file. It works for most of the hidden names, but not for a few _123Graph names. I'm not ...
2
votes
1answer
125 views
Excel Reference COM vs .NET
What is the difference between adding a reference to Excel 11.0 from .NET vs COM?
(In C# if that even matters)
-Edit-
To clarify,
I am talking about the .NET and COM tabs in the Add Reference ...
2
votes
1answer
127 views
How do I ignore certain events in Excel VBA for App_SheetChange?
I have an App_SheetChange() handler in an add-in that does some processing as modify their spreadsheets.
I've already optimized the handler to only perform the processing if the user's update happens ...
2
votes
2answers
416 views
Use a named range in an excel worksheet to propagate a listbox
So I have a number of namedRanges in an excel worksheet. I would like to use these to fill in comboboxes on a user form in the same WorkBook.
I have tried:
cboMember.DataSource = ...
2
votes
2answers
159 views
Fast third party library to merge excel files (.Net)?
i am looking for a 3rd party utility pack sort of library for .Net to handle excel merging with formating, formulas, charts and etc. which does its job well and if possible fast.