+ Reply to Thread
Results 1 to 3 of 3

Display Todays date on opening file

Hybrid View

  1. #1
    Registered User
    Join Date
    08-20-2007
    Posts
    2

    Question Display Todays date on opening file

    I have a basic spreadsheet designed for work overtime and would like to insert a function that automatically on opening the file loads to todays date.

    I have posted a screen print.

    Thanks in anticipation.
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor mudraker's Avatar
    Join Date
    11-10-2003
    Location
    Melbourne, Australia
    Posts
    3,983
    Try this macro - it selects the cell with todays date in it when the workbook is opened


    'These instructions pre typed & are worded to cater for the novice programmer

    'To install macro to correct location

    'Copy this macro
    'GoTo Excel
    'Open VB Editor by pressing Alt + F11
    'Just below the menus & toolbars on the left you should see Project - VbaProject window
    'In this window you will see ThisWorkbook
    'double click on ThisWorkbook - opens ThisWorkbook module sheet
    'Paste macro code into big window on right

    Private Sub Workbook_Open()
       Dim rFound As Range
       
       Set rFound = Columns("b:b").Find(What:=Date, LookIn:=xlFormulas, _
            LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=False, SearchFormat:=False)
       If Not rFound Is Nothing Then
          rFound.Activate
       End If
       Set rFound = Nothing
    End Sub
    Please Read Forum Rules Before Posting
    Wrap VBA code by selecting the code and clicking the # icon or Read This
    How To Cross Post politely

    Top Excel links for beginners to Experts

    If you are pleased with a member's answer then use the Scales icon to rate it
    If my reply has assisted or failed to assist you I welcome your Feedback.

  3. #3
    Registered User
    Join Date
    08-20-2007
    Posts
    2
    Thanks a lot, that worked fine. Cheers

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1