| Thread | Last Post | Replies |
|
| delete checkboxs | 27 Dec 2007 00:28 GMT | 7 |
I am trying to write a program to add checkboxes and delete certain checkboxes in a row. How do I delete certain checkboxes. Thanks
|
| Truncate Left Characters in Cell Value | 26 Dec 2007 23:00 GMT | 4 |
I have a number of text cells and I need to be able to truncate a number of characters from the left hand side of the value. eg. MB99_Prod_PGP_Trans needs to be truncated to "_Prod_PGP_Trans" I am having trouble trying to find the VBA code to do this.
|
| Renaming files in a directory | 26 Dec 2007 22:57 GMT | 2 |
In a spreadsheet called FileList I have a list of files in Col A like this: C:\Documents and Settings\##My Documents\My Things\Blah Blah Blah\Folder_2\01 Filename In Col B I have the new file names like this:
|
| Substitute worksheet function considered harmful: can create unopenable workbooks with cell values greater than 32k | 26 Dec 2007 22:41 GMT | 4 |
The following macro will create a value in cell A2 that has more than 32k characters. Sub foo() Range("A1").Value = String$(2 ^ 15 - 1, "a")
|
| Pivot Table based on data in protected cells | 26 Dec 2007 22:38 GMT | 1 |
Good afternoon -- I have a template workbook that I want to release to a lot of users. Much of the template is protected, but I want to add an unprotected page that has a pivot table, based on a large table on a protected page.
|
| Add record to end of list, variables table | 26 Dec 2007 22:19 GMT | 3 |
I currently have (script below) macro which adds a record (from "CashEntry" sheet, cells $C$2:$P$3) to the bottom of a list (on another sheet ""CashTransferRecord") . My Request: I would now like the ability to add the record to one of four
|
| Copying data | 26 Dec 2007 21:39 GMT | 6 |
I want to copy data from one sheet to another. I have to select Col A and as many rows that have data in it (from A1 to A32), but this has to be dynamic becuase the rows might change. I then have to copy these selected cells to sheet 1. I nedd the code for this. I knw the ...
|
| Excel Justify | 26 Dec 2007 21:29 GMT | 5 |
It is my understanding that Excel will not Justify if the range has equations in it - True? Assuming that my previous statement is true I was going to have a helper column in "A" and have my output in "L" and then put in the following logic
|
| Remove extra space within text | 26 Dec 2007 21:08 GMT | 20 |
I just had some really great help with some Excel files from this group where the formatting was done by various people over the last 15-20 years. These are names for genealogy, and I am loading many Excel files into Access so people can search by name and soundex. I don't know ...
|
| A "chessboard" problem | 26 Dec 2007 20:35 GMT | 6 |
Say I have a chessboard (8x8=64 tiles, of course) and e.g. 22 pieces; tiles are numbered 1 through 64); I want to deploy these 22 pieces throughout the chessboard (black or white tiles don't matter); every time I do this I get a set of 22 numbers (numbers of the tiles the pieces ...
|
| Passing Variables between Workbooks | 26 Dec 2007 19:56 GMT | 3 |
Does anyone know how to pass/call a global variable between two workbooks? Both workbooks have a Global variable declared in module1 called wkName. Any thoughts? Set wbResults2 = ActiveWorkbook
|
| toggle between autofilter Criteria1:= "*" and "all" | 26 Dec 2007 19:02 GMT | 2 |
I'm using autofilter to collapse and expand a range based on value of Criteria1 I would like to use code to be able to alternate between Criteria1:="1" and Criteria1:="All" This is the code that i thought would work but hasn't -
|
| date format conversion | 26 Dec 2007 18:54 GMT | 2 |
I have date data entered in a cell as general format like 24/12/07 (in general format left side aligned) I have to change this date to date format. How to change this through macro?
|
| Last Used Cell in a row?? | 26 Dec 2007 17:59 GMT | 6 |
I hope someone could help me this time, too. I need to find the last used cell (that is, not empty, contains some data) in a Row and to get the column number, witch contains that cell. E.G. such rows
|
| renaming a page doesn't stick | 26 Dec 2007 17:50 GMT | 1 |
This code below will rename the Active Page on my multipage. But it doesn't stay named. The next time I use the form, it's lost it's name. I've done this similar thing for labels, and their caption will stick, why wn't this? Private Sub cmRename_Click()
|