+ Reply to Thread
Results 1 to 3 of 3

Simple Daily Log

Hybrid View

eventnyc Simple Daily Log 11-28-2013, 12:28 PM
HaHoBe Re: Simple Daily Log 11-29-2013, 04:52 AM
aydeegee Re: Simple Daily Log 12-01-2013, 04:30 PM
  1. #1
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Simple Daily Log

    Hi, Dennis ,

    welcome to ExcelForum.

    If you use Excel2003 as stated in the profile you have to check if things work okay, workbook was created with Excel2013 and should work from Excel2007 on. Feel free to have a look at it, I introduced three areas for Data Valiudation on Sheet Data while the entries will be made on Sample. Just use TAB to create a new line in the Table and choose from the entries.

    Code behind Sheet Sample:
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Count > 1 Then Exit Sub
    If Not Intersect(Target, Range("C:C")) Is Nothing Then
      ActiveSheet.Unprotect
      Range("A:B").Locked = False
      Application.EnableEvents = False
      With Cells(Target.Row, "A")
        If .Value = "" Then .Value = Date
        If .Offset(0, 1).Value = "" Then .Offset(0, 1).Value = Format(Time, "'hhmm")
      End With
      Application.EnableEvents = True
      Range("A1:F" & Target.Row - 1).Locked = True
      Range("A:B").Locked = True
      ActiveSheet.Protect
    End If
    End Sub
    Ciao,
    Holger
    Attached Files Attached Files
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 0
    Last Post: 09-16-2013, 11:41 PM
  2. Daily Simple Interest.
    By WYETTE in forum Excel General
    Replies: 6
    Last Post: 03-28-2012, 08:11 AM
  3. Simple daily expenses forms
    By wiggo in forum Excel - New Users/Basics
    Replies: 4
    Last Post: 09-02-2009, 12:52 PM
  4. [SOLVED] simple daily interest
    By anon125 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-30-2008, 11:06 PM
  5. Simple macro help-built a marco to open a daily text file
    By lars in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-05-2005, 02:06 PM

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