| Thread | Last Post | Replies |
|
| Excel date input inconsistancy | 17 Apr 2007 15:46 GMT | 3 |
I have created a spreadsheet for data collection which is utilising userforms for this purpose. The data is for the last financial year (06-07) and the date options in the combo box reflect this (using month only) When selected though the year changes to 07 from 06 (ie
|
| Drop down menus | 17 Apr 2007 15:40 GMT | 2 |
Can anyone tell me how to get a drop down menu (say called 'Feeds') on the Standard toolbar between the Data and Window drop downs and from that menu items so that I can 'attach' them to macros Many thanks
|
| Matching lists | 17 Apr 2007 15:37 GMT | 1 |
Maybe somebody can help me with this. I tried looking at other postings but could'nt find something like this and my VBA programming skills are not good enough to be to manipulate other postings code. I have two lists, both have three attributes, date, location, and
|
| finding the last row for a macro | 17 Apr 2007 15:30 GMT | 1 |
I want to copy an item from on cell in worksheet3 (CO2) and then paste it in worksheet1 (CO2) then copy this all the way down to the last row. I would like to do this in a macro. I have tried recording this several ways, but it is not reliable.
|
| singel cell reference | 17 Apr 2007 15:24 GMT | 3 |
how do i make a reference to a single specific cell (for example D1) in a amcro thanks
|
| Unprotect VBA-Code using VBA-Code? | 17 Apr 2007 15:24 GMT | 3 |
Here I got one of my older VBA-Projekts, which now causes an error due to changes of the system it is running on. Normaly it should be solved easily, but at that time I used a password to protect it's code :-( I already tried to use my default passwords, but none of them works. It
|
| New and exciting things | 17 Apr 2007 15:12 GMT | 3 |
Ok here si the biggie for me. Say I have data in A3:A8, in C4 ihas a formula that seeks out data from another area in sheet and will return Data matching one or more of the Cells in A3:A8. How can i make it make the data that matches in A3:A8 Bpld or
|
| Sub to strip away "Sheet" prefix from names | 17 Apr 2007 15:02 GMT | 4 |
Looking for a sub which can strip away the "Sheet" prefix from all sheets bearing such names, eg sheets named as: Sheet2, Sheet3, Sheet4 ... will be renamed as simply: 2,3,4 ... Thanks.
|
| sort numeric array | 17 Apr 2007 14:24 GMT | 2 |
hi! I have an array with numbers. i want to sort the array based on the size of the numers. how can i do this? do I need to write a function for it or does it exist in vba already? please help!
|
| Copy destination | 17 Apr 2007 14:02 GMT | 4 |
This does just what I want: Sub TestTransfer() Sheets("Pages").Cells(10, 5).Copy Destination:=Sheets("Schedule").Cells(5, 2)
|
| Calling DLL functions in Excel VBA | 17 Apr 2007 13:56 GMT | 5 |
I made a dll and I used it in VBA Like this: Declare Function currentMilli Lib "exceltest.dll" () As Long It's working on my computer in any folders.
|
| Need Help am Brain Dead today. | 17 Apr 2007 13:56 GMT | 5 |
I know how this works and why =index(CostList!$A$1:$E$200,Match($A54,CostList!$A$1:$A$200,0),Match($M$1,CostList!$A$1:$E$1,0)) but now I have confused my self to the point i can not progress. What I need to do is look up a single Cell, Match it to a column and then get the
|
| Change ws designator | 17 Apr 2007 13:18 GMT | 11 |
Hello, Given the following macro: Sub mastertest() Dim ws As Worksheet, cell As Range, rng As Range For Each ws In ThisWorkbook.Worksheets
|
| SAP interfaces | 17 Apr 2007 13:12 GMT | 3 |
Is there anyone on this group who has any experience with programming Excel <-> SAP interfaces in VBA. have a good day Tomas
|
| Post to a Sheet Depending on a Value within a Cell Q | 17 Apr 2007 12:35 GMT | 5 |
I have the following code below which posts various values that are within sheet "Report" to a sheet called "Database" How would I cnage the code below to post the same details except to different worksheets depending on the value in Report K6?
|