Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Molby
  • Order by date
  1. Molby

    Excel VBA Autofilter parameters problem

    Does the following help? http://www.ozgrid.com/VBA/autofilter-vba-dates.htm
  2. Molby

    Create "Description" column in File Directory

    A description Column already exists. If you right click on the heading you get a menu with additional fields. Click on "More.." at the bottom and there is a description field in there.
  3. Molby

    Creating a new line in a textbox

    Taken from Excel VBA help, but same should apply: "If prompt consists of more than one line, you can separate the lines using a carriage return character (Chr(13)), a linefeed character (Chr(10)), or carriage return – linefeed character combination (Chr(13) & Chr(10)) between each line.
  4. Molby

    If statements in Excel

    Have a look at conditional formatting, under the formatting menu.
  5. Molby

    Speeding up Macros

    Can you post the code that you've got?
  6. Molby

    Limit cell size in Excel 2003

    Check out Validation under the Data menu. Set the Allow Criteria so that the text length is to be less than or equal to 255.
  7. Molby

    Count areas of numbers

    Under Data, Filter, check out the advanced filter, where you can filter out unique values to another location.
  8. Molby

    Multiples of a Number

    How about: =IF(MOD((Value1-Value2),2)=0,"OK","FALSE") Where the 2 is the mutiple you want to check.
  9. Molby

    BETWEEN formula in Excel 2003

    There's probably a better formula, but this should do the trick: =IF(B1>C1,IF(C1>A1,"True", "False"),"False")
  10. Molby

    XL2K - "Merge" option greyed out - why?

    Check to see if it's a shared workbook. Go to Tools, Share Workbook. If the Allow changes box is ticked, then you can't merge cells. You would have to un-share it first.
  11. Molby

    save as Prompt

    Have a look at the application.displayalerts.
  12. Molby

    adding a line break in a cell

    Alt and Enter?
  13. Molby

    Keystroke question

    I think it depends on what you are trying to accomplish. For me, the escape key is for resetting, so when I want to use it I use "<Reset>". What actions are you trying to perform that require the ControlKey?
  14. Molby

    Drag and drop in Excel

    Instead of using the left mouse button, use the right to drag to where he wants, then select the Copy Cells from the item menu which should automatically open up.
  15. Molby

    Time-function Now() in Excel

    You can do this in the Status Bar. Code from Combo a long time ago: Place this in a standard module. Sub xlTimer() With Application .StatusBar = Format(Time, "hh:mm:ss") .OnTime Time + TimeValue("00:00:01"), "xlTimer" End With End Sub You can start it in open procedure (Thisworkbook...
  16. Molby

    Excel Count Based On 'AND' Criteria Being Met

    How have you set it up? If you have say Cat as your rows and Time Range as your columns, then add time range into the data items, set as a count, then this should give you what you are after.
  17. Molby

    Excel Count Based On 'AND' Criteria Being Met

    The easiest way is with a pivot table
  18. Molby

    Disable or auto-answer Do you want to save the changes in “workbook”

    As you are saving the workbook with a name down to the second, I would apply the time to a variable and then use that to save and close the workbook. tim$ = format(now, "yymmdd_hhmmss") ActiveWorkbook.SaveAs Filename:= _ "C:\ resultaten\resultaten" & tim$ & ".xls", FileFormat _...
  19. Molby

    Disable or auto-answer Do you want to save the changes in “workbook”

    Presumably your trying to close an Excel workbook if your getting this message, in which case try using: Workbooks("YourWorkbookName").Close (False)

Part and Inventory Search

Back
Top