| Thread | Last Post | Replies |
|
| How do I turn a VBA script on and off with an entry in a cell | 17 Feb 2006 00:52 GMT | 2 |
I am am trying to cause the below script to populate the date and time fields when F8 is set to Y and not when it is set to N and to turn on and off as that field changes without having to restart Excel each time. Any help would be greatly appreciated.
|
| Excel VBA Lookup Functions | 17 Feb 2006 00:47 GMT | 1 |
I have created a function using VBA (below) which assigns a vlookup value in the calling cell. Code is below. Function CreateHierachy(AccountParentID As String) As Variant CreateHierachy = "=vlookup(" & AccountParentID & ",
|
| Application Event in Class Module | 17 Feb 2006 00:45 GMT | 9 |
I am trying to trigger a right click menu within an XLA file. My code in my class module is as follows below. My class module is named "EventClass". I can't seem to get the menu to trigger of the right click. The subs that get called are in a regular module. And I currently ...
|
| Stop the loop when found. | 16 Feb 2006 23:57 GMT | 1 |
I have the below comparison between two columns. Where the cells match, and a different comparison of an different cell pair on the same row also matches, it highlights a row and fills in a cell using data from its matching cell. My problem is that, I want it so that once it's ...
|
| Open dialogue box and importing text files | 16 Feb 2006 23:29 GMT | 2 |
I am designing a macro that displays an Open dialogue box that asks a user to select a filename to open (in this case it’s a text file that I am importing into Excel) Application.Dialogs(xlDialogOpen).Show
|
| default = vbNo in Msgbox | 16 Feb 2006 23:24 GMT | 1 |
Does anyone know how to have vbNo button selected by default when the Msgbox open ? rep1 = MsgBox("Would you like to add a line?", vbYesNo) Thanks !
|
| Overridding the "already exists" message with the SaveAs method | 16 Feb 2006 23:22 GMT | 4 |
I'm using Excel 2002 SP3. I have a list of 66 password protected Excel spread sheets that I need to open, delete the top two lines, then save it removing the password, and then move the file to a different folder.
|
| Returning Values | 16 Feb 2006 22:23 GMT | 7 |
Hello there, I have a UserForm on which there is 1 ComboBox (ComboBox1) and 3 TextBoxes (Textboxes 1,2,3). The values for ComboBox1 and the TextBoxes are stored in multiple columns on a sheet within the workbook. (Sheet1) (Columns A,B,C,D) What I would like to do is this: When a ...
|
| Creating an Excel Database in Separate Workbook | 16 Feb 2006 22:17 GMT | 17 |
I'm trying to take data from a spreadsheet by copying it, and then open a new spreadsheet (that is saved on the c:\ drive), find the last row of data in the spreadsheet, paste the data from the original spreadsheet, and then save and close the database sheet.
|
| Basic question....syntax on active cells from a filter | 16 Feb 2006 22:14 GMT | 3 |
If I filter and then want to select only those cells showing and give them a range name, what's the syntax? I tried xllastrow but that gives everything. I also tried putting something like ...for every activecell in range but that also gave me everything.
|
| Why is Application.CutCopyMode False? | 16 Feb 2006 22:08 GMT | 2 |
In the following example: Sub macromaster() Call Macro1 MsgBox (Application.CutCopyMode)
|
| How to highlight Top 10 and Bottom 10 Amounts in a Column | 16 Feb 2006 21:55 GMT | 1 |
Can anyone help me find out How to highlight the Top 10 and Bottom 10 Amounts in a Column? Ideally I would like one color for the top 10 and a different color for the bottom 10. Thank you very much!!
|
| ReDim Variant array for worksheet copy | 16 Feb 2006 21:52 GMT | 1 |
I am trying to create a variant array from multiple data sources then plop that array into a worksheet. Dim vaCounts() as Variant ReDim vaCounts(1 To 1, 1 To 3) As Variant
|
| Is it possible to add a tab to the Options section in the Tools Menu? | 16 Feb 2006 21:39 GMT | 1 |
I am programming an Addin for Excel in VB and wondered if it was possible to add a tab to the Options dialog that you access from the tools menu. None of the previous addins I have seen show this functionality, so I am guessing it's not possible?
|
| Difference btween Automatic and Manual calculations. | 16 Feb 2006 21:26 GMT | 3 |
I have a macro that is running and it is running slow since it has to wait for the spreadsheet to do updates. I switch the calculations and it runs faster. I am wondering if there is loss of anything. What is the difference between the two and how does that affect calculations. ...
|