Consulting

Results 1 to 2 of 2

Thread: Re: Track Changes - Text and Formulas with user name and time stamp

  1. #1

    Re: Track Changes - Text and Formulas with user name and time stamp

    Im a Newbie here. I saw a post about the above mentioned title by arkusM (w w w.vbaexpress.com/kb/getarticle.php?kb_id=1074) and I've adapted to my workbook and it works.


    However, for the other workbooks that I have...is there a way thru vba to track only the specific sheet/s with specific range/s (e.g. Sheet2'!$A$1:$H$5, Sheet4'!$B$4)? and is there a way also to delete the sorted specific sheet/s in the Cell Changed of the "Tracker" Sheet (e.g. all Sheet2'!$U:$1 & Sheet4'!$D$3:$G$8)? May I know the code if there is? The reason is to record only the important ones and not to get flooded.

    KB Link

    Many thanks in advance.


    Arvie
    Last edited by mdmackillop; 09-26-2017 at 05:27 AM. Reason: Link added

  2. #2
    Moderator VBAX Sage SamT's Avatar
    Joined
    Oct 2006
    Location
    Near Columbia
    Posts
    7,814
    Location
    It would help if we could see the adapted code

    is there a way thru vba to track only the ... specific range/s (e.g. Sheet2'!$A$1:$H$5,
    That parts easy.
    if intersect(Target, Range("$A$1:$H$5")) is nothing then Exit
    I expect the student to do their homework and find all the errrors I leeve in.


    Please take the time to read the Forum FAQ

Posting Permissions

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