| Thread | Last Post | Replies |
|
| Variable Range, Control ToolBox ComboBox | 27 Mar 2008 16:58 GMT | 3 |
Is it possible to assign a variable range to an Embeded Control Toolbox ComboBox? If so, how? Here's the code I've been trying to get to work. Private Sub Workbook_Open() Dim IMDS As Worksheet
|
| Date sensitive workbook. | 27 Mar 2008 16:48 GMT | 6 |
I have a spreadsheet which needs to be refreshed with current data periodically. This spreadsheet is used by people at remote sites that are not connected to our companies data. So I email them the raw data and they import this data to the spreadsheet through VB code.
|
| Run-time error '1004' with ActiveWorkbook.Save | 27 Mar 2008 16:25 GMT | 2 |
My code works fine until it hits the command ActiveWorkbook.Save. That's when I get teh error: Run-time error '1004': Methond 'Save' of object '_Workbook' failed This code was working fine, but now all of a suddent doesn't work fine in
|
| Working with Cell Comments - VBA | 27 Mar 2008 16:03 GMT | 14 |
Thanks to peoplehere, I have a script that's working great for me but it involves settings comments for cells. I want to to some more advanced things with the Comments box but don't know how. 1) How can I add a Line Return in the comments box when adding text to the
|
| Reading numbers as text | 27 Mar 2008 16:03 GMT | 2 |
I'm using TextToColumns in a macro to convert several huge text files to a spreadsheet. Some of the raw data is numbers but I need everything to be copied as text. I found this question numerous times in this forum but none with the answer I'm looking for.
|
| XlBuiltInDialog.xlDialogPatterns | 27 Mar 2008 15:44 GMT | 3 |
I am trying to show the format shape dialog in Excel 2007 programatically when a line is selected, but the below code does not show the form or throw an exception either, anyone have any ideas? I have tried setting screen updating to true.
|
| Show all, but leave the cursor where it is | 27 Mar 2008 15:35 GMT | 2 |
I used the macro below to hide columns, but want to add code that says unhide all columns and leave the cursor where it is before the below code is run. How would I add that into this macro? (I don't want to use 'custom view' because the cursor is left exactly where the view was ...
|
| Open Workbook Read Only and hide select worksheets | 27 Mar 2008 15:33 GMT | 10 |
Something I thought would be so simple has turned into a nightmare. I need to open a workbook named index.xls Read Only and then hide 25 of the 26 worksheets. Yes, I tried to create a new workbook and paste link of the one worksheet I need, but the workbook is heavy laden with
|
| General Programming question | 27 Mar 2008 15:23 GMT | 2 |
I have a 24meg excel file. I was wondering if using VBA can reduce the size of the file and make the file calculate quicker? Thanks
|
| How to safe as draft email created by macro | 27 Mar 2008 15:12 GMT | 1 |
I know how to create email and send it or just display, but i can not find any info how safe this email as draft, without sending. BR JBLPL
|
| Turn +ve to -ve & vice versa. | 27 Mar 2008 14:54 GMT | 4 |
How do I do that in VB? For each value 'abc' is found in columnL starting from cell L2 then turn values in columnE starting C2 positive to negative (vice versa) Thanks
|
| VB compiler does not recognize VB functions. | 27 Mar 2008 14:38 GMT | 1 |
VB compiler does not recognize the Vb String function yielding a "Can't find project or library" error.
|
| Issue with Shape(text box) | 27 Mar 2008 13:58 GMT | 3 |
I have macro in my workbook (Excel2003) which breaks formula links for text boxes present in the workbook. The code used for the same is "shp.DrawingObject.Formula = Empty" This works perfectly fine in Excle 2003 but, when run in Excel 2007 all the
|
| On Error - Only executing once. | 27 Mar 2008 13:54 GMT | 8 |
Hello I have a On Error Goto statement, yet it only works once, then It just ignores and tries to execute although this causes it to crash. I'm attempting to grab stuff from a collection Set tmp = lookUpCollection.Item("Monkey"), there is no object with the key
|
| How do I split one table in multiple tables base on condition? | 27 Mar 2008 13:52 GMT | 1 |
I have set of data in two columns. This data should get segregated in different tables which will further be used for plotting graphs (depending on the number of tables the data is segregated/ sorted in. The data is like this: 1-2, 2-3, 3-4, 4-5, 4-6,6-7. Here note that the first ...
|