| Thread | Last Post | Replies |
|
| programaticly filling a cell with a formula | 11 Jan 2007 15:45 GMT | 4 |
hello all... i have sheet with 6 columns abcdef. in colum f (row 2)i have the formula =A2&TEXT(B2,"mmm-yy") i use this for a refrence in another sheet in the book.
|
| Dataform opening on startup, and validation list in form? | 11 Jan 2007 14:37 GMT | 2 |
Is there a way to have the DataForm command activate when the file is opened ? I tried the following worksheet event, but nothing happens: Private Sub Worksheet_Activate() ActiveSheet.ShowDataForm
|
| how to list calls to macros? | 11 Jan 2007 13:49 GMT | 1 |
I am trying to sort out some files containing many macros, which were written originally (not by myself) for a previous version of Excel. Some of the files contain macro code which is not relevant to that file, because the file has been created from another file, and then
|
| Macro Button reference | 11 Jan 2007 13:49 GMT | 2 |
I have a VBA macro (macro1) in "Master.xls" in which I created a button to run the macro. The macro runs and does it's thing. When it is done I do a File Save-As "Test.XLS". I exit Excel and DO NOT save changes to "Master.xls" (I have
|
| Fonts and Userform and VBA | 11 Jan 2007 13:39 GMT | 2 |
I have a listbox that contains four items, AAA, BBB, CCC and DDD (for example). I have a textbox that would contain one of those four values. What I would like to do is: If Textbox.value (i.e. BBB) = Listbox.value (i.e. found in or
|
| Dynamic Graph | 11 Jan 2007 13:33 GMT | 15 |
I have a worksheet that contains numerical data in cells F5 to something like F20 or similar (depending on the event). The data is refreshed from an external source (the time interval can be adjusted by me).
|
| Cells with Values Edit | 11 Jan 2007 12:12 GMT | 2 |
I wish to place the following values into a single row: 148 407 118 10003 169 364 15 222
|
| Macro Issue with loop | 11 Jan 2007 11:39 GMT | 7 |
I got this macro, to delete duplicate data, from this newsgroup last week. I am facing an issue with the same as it start checking again from the column1 once a duplicate is deleted. Can anyone help me to sort out
|
| 2007: Chartwizard bugs | 11 Jan 2007 09:38 GMT | 3 |
Problems with the Chartwizard: - If you select a range with two columns and use it as the source with the ActiveChart.ChartWizard method, for an xlXYScatter chart, you'll get two series, while you had one previously (and that was LOGICAL).
|
| Populating Comboboxes | 11 Jan 2007 09:29 GMT | 2 |
I have an excel template which has some userforms in it. On one of the userforms are 9 combo boxes, all of which need to display the same data from another workbook. Problem is I don't have a clue how to achieve this, can anyone help?
|
| automatically updation of the excelsheet if i add new files in a . | 11 Jan 2007 08:58 GMT | 1 |
how can i automatically update the excel sheet if new files are added in a folder.(that folder contains various files which are entered there in the folder)
|
| find doc | 11 Jan 2007 07:15 GMT | 6 |
Dim WRDAPP, WRDDOC Set WRDAPP = CreateObject("Word.Application") Set WRDDOC = WRDAPP.Documents.Open("A:\card.doc") Knowing file is in location. Why do I get cannot find?
|
| Insert picture based on cell value (unlimited) | 11 Jan 2007 05:40 GMT | 4 |
I am looking to insert a picture based on a cell value. The exact application is to insert the picture of a person based on choosing their name from a drop-down list. Anybody have any suggestions; VBA or other? Thank you in advance for the help.
|
| Counting workbooks.xlfDocuments returns incorrect count | 11 Jan 2007 04:08 GMT | 1 |
In C++, I am using xlfDocuments to return the count of open workbooks. I need to make sure that there are no workbooks open. So i do the following: bool IsAWorksheetOpen(){
|
| Changing the name of a variable using code | 11 Jan 2007 03:19 GMT | 3 |
I have an array that is two wide and an undefined length. The first column is a name of a variable and the second column is the value of that variable. How can i define all the items as there name = value? i.e array(1,0) = X array(1,1) = 23 make it so that X = 23. This is
|