| Thread | Last Post | Replies |
|
| Activating an open file with a variable name | 21 Dec 2007 18:32 GMT | 4 |
I have 2 files open that I need to go back and forth with. File 1 is defined with a variable name oWB. File 2 is called Update.xls When I am in Update.xls and want to go back to oWB, how to I do that?
|
| Write Additional Data within a txt File | 21 Dec 2007 18:05 GMT | 5 |
I want to open a txt file, read it until I find a line that contains certain info and then append additional data on to that line. The line may be in the middle of the file. How can I do this?
|
| pop up calender in a userform | 21 Dec 2007 17:55 GMT | 4 |
I know this has been done ad nausiam but can someone give me the code, that when a user clicks into a textbox the calender should pop up so as to enter the date? This will be done in the form and not in the worksheet Thanks
|
| Retriving value from multiple sources | 21 Dec 2007 17:31 GMT | 2 |
I have two workbooks (wb1, wb2). wb1 looks like this A B 2 CAT1 cust1
|
| ComboBox.visible = False or True | 21 Dec 2007 17:30 GMT | 7 |
This code shows updates the worksheet cell when ComboBox1 is changed. Then it updates CombBox2 to reflect this new change. Private Sub ComboBox1_Change() Worksheets("sheet1").Range("C16") = Me.ComboBox1.Value
|
| Using variable to identify a workbook | 21 Dec 2007 17:19 GMT | 3 |
I hope I can explain this coherantly. We have put together a small trading system which we plan to send out to users. In order to accommodate future updates, we want to be able to take the name of the user's file (which we don't know for sure) and identify that name so that we ...
|
| moving to next cell without keyboard | 21 Dec 2007 17:09 GMT | 2 |
I would like a way to be able to scan a bar code into a cell then have the cursor move automatically to the next cell to the right, or go to beginning of next row, without having to press the "enter" or "tab" keys. I am using Excel 2003
|
| Variable Case issue | 21 Dec 2007 16:41 GMT | 6 |
I have a sheet where I originally created a global const as: Global Const RAMPUP = "RU" Well I decided that rather than that I wanted to do an enumeration. So I deleted the global const and created:
|
| combobox doesn't load cell value at startup | 21 Dec 2007 16:31 GMT | 1 |
I've got my combobox to apply the change made to it immediately with: Private Sub ComboBox1_Change() Worksheets("sheet1").Range("C16") = Me.ComboBox1.Value End Sub
|
| Sumif function problem | 21 Dec 2007 15:57 GMT | 3 |
Could somebody can provide with a formula to sum Column B data for all the data that start with "009" in column A Ex - The formula should give me 100 as answer. Column A Column B
|
| autofilter row count | 21 Dec 2007 15:03 GMT | 3 |
Hi Experts, I have the following code toset a filer on a sheet called "datadga" Private Sub but_filter_click() Dim choice As String
|
| copying many controls | 21 Dec 2007 14:48 GMT | 1 |
I'm going to have many controls that get their values from sheet1, all on a multipage. Then I'll have sheet2, & sheet3, and also pages on the multipage that are identical to the first page, except they get their data from sheet2, sheet3. Their are 40-50 controls each page, each ...
|
| Error 55 File Already Open | 21 Dec 2007 13:56 GMT | 4 |
Why would I get a "false" error 55, file already open when doing this: Open ThisWorkbook.Path & "\logdtls.log" For Append As #1 I am careful to always issue this: Close #1
|
| add lines to a order list | 21 Dec 2007 13:23 GMT | 2 |
Hello i am hoping that you can provide some help. I have a workbook with 2 worksheets - Workbook A contains a record of custoemr orders - one order per row - columns H to M contains the qty of a specifec product (each column
|
| splitting a file into two before importing it to excel | 21 Dec 2007 13:17 GMT | 1 |
Just wonder anyone could advise of any code to split a file into two before importing the files into excel....this is because the file data has exceeded the limitation of excel(too many lines). I am looking for a way to split a file into two(one with 30000 line of data) while ...
|