| Thread | Last Post | Replies |
|
| can .range return a 1D array? | 18 May 2008 08:54 GMT | 16 |
First, I apologize if this is the wrong group, but it seemed "close". NB I'm calling this code from VBA in access, but you'll note there are no access components (directly) involved, which leads me to believe it's more likely an excel (or maybe VBA) "problem".
|
| ShellExecute | 18 May 2008 04:18 GMT | 6 |
Running XP pro & Excel 2007 I was running this bit of code this morning to launch a shortcut on the desktop, and everything was working fine. While experimenting with variations things went into "lala land", and now I can't get it
|
| Active sort / Copy | 18 May 2008 04:00 GMT | 3 |
Novice Excel 2003 My additions to a "ImportBigFile" macro by C. Pearson is working nicely thanks to several here - thanks. Found I have a wee bit of a problem though
|
| Compare cell and msg | 18 May 2008 03:00 GMT | 6 |
I need some help woth code. On cell B2 when focus is lost then compare its value with the value of A2, if b2 value is less then A2 then I want to popup a message saying value in B2 cannot be less then A2 and bring the focus back on B2
|
| duplicate vb projects occur when reopening a sheet | 18 May 2008 00:42 GMT | 9 |
Strange, I have written vb code which updates data when the file is opened. But when I close the workbook the vb project is still showing in the vb window. So when I reopen up the workbook I now have two instances of the vb project
|
| Adding values stored at relative cell references | 17 May 2008 21:11 GMT | 1 |
hi. i need to add values which are stored in cells with relative cell references. for eg. ActiveCell.FormulaR1C1 = "=Sum(0.15*(RC[-3]-RC[-6]) + H12" . Is this possible? and if it is, i would also like to know how to change the reference to a row above or below. thanks in advance.
|
| Opening .XLS In VBA: Getting "Do You Want To Save..." Prompt... | 17 May 2008 20:15 GMT | 3 |
----------------------------------------------------------------- Dim myExcel As Excel.Application Set myExcel = CreateObject("Excel.Application") myExcel.Workbooks.Open myPath, UpdateLinks:=False, ReadOnly:=True
|
| .NumberFormat not getting applied? | 17 May 2008 17:55 GMT | 3 |
--------------------------------------------------------------------------------- Const mFormat_DollarAmount As String = "#,##0.00" 4140 With .Columns(mColNum_FP_AmountOutstanding) 4141 .ColumnWidth = 15
|
| Problem where end time is less than start time | 17 May 2008 17:44 GMT | 4 |
I use start and end time data to fill staff resource. I want to build in some error capture where the end of the duty is less than the value of the start of the duty. However, on occasion we have staff starting at 22:00 and finishing at 06:00. This would result in an error
|
| object library or invalid reference | 17 May 2008 17:27 GMT | 3 |
I have an add-in that on one user's PC is saying office library invalid or contains invalid references when it is executed. However, in Tools, References, all is fine. None are missing. All references are the same as another add-in which works fine. I've rebuild the add-in ...
|
| Position of MsgBox | 17 May 2008 17:21 GMT | 7 |
Excel XP & 2007 An OP has asked me if there is a way to control the position of a MsgBox on the screen. I know of no way to do that. Is that possible? Thanks for your time. Otto
|
| changing properties of offset cells | 17 May 2008 16:11 GMT | 4 |
Instead of using the code below, is there a way of setting the colorindex of offset(0,0) to offset(,4)? Err.Offset(0, 0).Interior.ColorIndex = 3 Err.Offset(0, 1).Interior.ColorIndex = 3
|
| Running macro on multiple files | 17 May 2008 15:44 GMT | 7 |
I posted this earlier on an old thread, but I guess it doesn't bump the old thread for people to see. I hope I'm not breaking any rules or whatever, so please ignore this post if I am. Thanks,
|
| PROGRESS BAR QUESTION | 17 May 2008 15:35 GMT | 1 |
Hi all, I have searched on this group and also many websites about how to create Progress Bar. Few sites are below http://www.erlandsendata.no/english/index.php?d=endownloaduserforms http://j-walk.com/ss/excel/tips/tip34.htm
|
| A cell is in which named range? | 17 May 2008 15:05 GMT | 7 |
I am looping through multiple named ranges. Depending which named range a value is in, I need to reference another named range (basically Monday, Tuesday etc). How Can I Select Case to find the named range of the current cell to determin which other named range to
|