+ Reply to Thread
Results 1 to 13 of 13

Using comments as worksheet review

  1. #1
    Registered User
    Join Date
    03-28-2014
    Location
    Brazil
    MS-Off Ver
    Excel 2010
    Posts
    9

    Lightbulb Using comments as worksheet review

    Hi all,

    I am trying to automating the review process of the workbooks using comments.

    What I am trying to do is:

    - After the user name, I want to include 3 categories for the comments: "Open", "Cleared" and "Closed". With this classification, I can control whether the comment has been reviewed or not.

    For example, whenever I include a comment (I know that I will not be able to use the standard button on excel), the first time the comment should be classified as "Open" (E.g. UserName (Open): ). After a review from someone else, this person should change the comment to "Cleared" (E.g. UserName (Cleared): ) and after the revision of the response, the final user will change the comment to "Closed" (E.g. UserName (Closed): ). I also do not want to loose the text inserted in the comments and following Follow-ups.

    Additionally, does anyone know how to list dinamically the comments in a sheet? This should help the reviewing process.

    Thanks in advance!!!

    Diego Sant'Ana

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,258

    Re: Using comments as worksheet review

    Hello diegulli,

    Welcome to the Forum!

    If you can post your workbook with some before and after examples, we can get to coding a solution for you.

    How To Post Your Workbook
    1. At the bottom right of the Reply window, Click the button Go Advanced
    2. At the top of the Your Message Window, in the first row of icons, Click the Paperclip icon.
    3. Click the Add Files button at the top right in the dialog box. This displays the File Manager dialog.
    4. Click the Select Files button at the bottom middle of the dialog.
    5. In the new window Find the file you want to upload, select it, and Click Open.
    6. You will now be back in the File Manager dialog. Click the bottom Middle button Upload File.
    7. Wait until the file has completely uploaded before you exit the File Manager dialog.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    03-28-2014
    Location
    Brazil
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Using comments as worksheet review

    Hi Leith Ross,

    Thank you for the quick repply.
    See attached the example on what I am trying to do.

    Regards,
    Attached Files Attached Files

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,258

    Re: Using comments as worksheet review

    Hello diegull,

    Thanks for posting the workbook. Are you going to let the user edit the comments or will the text be inserted by another method?

  5. #5
    Registered User
    Join Date
    03-28-2014
    Location
    Brazil
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Using comments as worksheet review

    Hi Leith,
    The intention is to the user insert any response from the question/comment by typing the response.
    Thank you,

  6. #6
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,258

    Re: Using comments as worksheet review

    Hello Diego,

    Will the Comments always be displayed as in the sample workbook?

    Which cells will the responses be entered into?

  7. #7
    Registered User
    Join Date
    03-28-2014
    Location
    Brazil
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Using comments as worksheet review

    Hi Leith,

    If I understood your question, yes, the sample workbook should list the comments with the same fields as the example and the responses can be displayed toghether with the all the comment text in one cell. There is no need of splitting the question/comment and response into 2 different cells.

    The main intention is to have a sheet where the reviewer can see which comments have already been cleared/explained and give the final answer - to close the comment.

    Regards,

  8. #8
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,258

    Re: Using comments as worksheet review

    Hello Diego,

    I have attached your sample workbook with some changes. I have added 2 sheets. Sheet1 contains a macro to add the comments and text. Hopefully, this is close to what you want to do. Check it over and let me know.

    Here is the macro to add the comments and text automatically on Sheet1. Sheet2 is for the hyperlinks which I still have to create the code for.
    Please Login or Register  to view this content.
    Attached Files Attached Files

  9. #9
    Registered User
    Join Date
    03-28-2014
    Location
    Brazil
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Using comments as worksheet review

    Hi Leith,

    Thanks for the code. Basically is that what I was thinking about, with a few modifications. My main problem is to write a code where the string after the user name (Open, Cleared and Closed) gets updated automatically without loosing the comment text.

    The way I was thinking how to manage the comments is the following, creating 4 separated macros where I can point to 4 buttons in the ribbon (I know how to do that):

    a.) Macro 1: "Open note"
    b.) Macro 2: "Cleared note"
    c.) Macro 3: "Close note"
    d.) Macro 4: "List review notes"

    For each macro:

    Macro 1 - creating the review note and adding after the Username the "(Open)" string or,
    change the "status" back to "(Open)" - sometimes, there are still something to be reviewed by the user, instead of deleting
    and creating a new comment, just changing the added string "(Cleared)" or "(Closed)" back to "(Open)" again.

    Macro 2 - replace the "(Open)" or "(Closed)" strings to "(Cleared)" and maintaining the text inside.

    Macro 3 - replace the "(Open)" or "(Cleared)" strings to "(Closed)" and maintaining the text inside.

    Macro 4 - create a new worksheet where all the comments from the workbook will be listed as explained before

    I just want to list the "Open, cleared and closed" comments there is no need to include all comments, those created without running the macros above can be discarted)

    I was wondering if it is possible to automate the update on the worksheet whenever I include a new comment using the macros above

    Thanks again for the help.

  10. #10
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,258

    Re: Using comments as worksheet review

    Hello Diego,

    Thanks for the updated description.

    When the "Open note" button is clicked, will the comment be added to the ActiveCell? It makes sense to do that. I just want to be sure that is what you have in mind.

    What should happen if the user clicks one of the other buttons before the comment has been created? Should the user be notified to click "Open note" first?

    Will the comment have multiple "headers"? For example, you open a note and the text "Diego (Open): Where's Waldo?" is added. Later, I review your comment and answer it. Will another 'header" be added like "Leith (Cleared): He's next to the big tree."?

  11. #11
    Registered User
    Join Date
    03-28-2014
    Location
    Brazil
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Using comments as worksheet review

    Hi Leith,

    See the answers bellow:

    - Yes, you are correct. Thatīs the ideia to create a new comment on the active cell.

    - Yes, I believe this is the best way to deal with no comment on the active cell. The user should be notified to click "Open note" fisrt.

    - At first, It will be just fine changing the added string (Open, cleared and closed), whitout changing the original Username. This way, it will be possible to track who created the comment and the responses to that comment.


    I do not know how complex is to insert multiple headers, but it will be nice to have the name of the user who cleared and closed the comment later in the process. For example: adding just the user who changed the status of the comment (changes in underline/bold):
    Open note click: "Diego (Open): Where is Waldo?"
    Cleared note click: "Diego (Cleared): Where is Waldo? Leith: He's next to the big tree."
    Closed note click: "Diego (Closed): Where is Waldo? Leith: He's next to the big tree. Closed by: USERNAME"

    Thanks again for the help!!!

  12. #12
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,258

    Re: Using comments as worksheet review

    Hello Diego,

    Thanks for the clear explanation. Okay, I will work on writing the macros to do this.

  13. #13
    Registered User
    Join Date
    03-28-2014
    Location
    Brazil
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: Using comments as worksheet review

    Hi Leith,

    Just to get an uptade from you. Would you be able to help me on the request above? If not please let me know. Iīll try to get the code another way.

    Thanks,

+ 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. Export review comments and feedback from word document to excel
    By ujosan in forum Hello..Introduce yourself
    Replies: 3
    Last Post: 02-17-2014, 02:19 AM
  2. Comments in protected worksheet.
    By Meratiogerr in forum Excel General
    Replies: 0
    Last Post: 08-04-2011, 10:28 AM
  3. [Solved] Copy Cell Comments From One Worksheet Into New Worksheet As Comments
    By Bangarang in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-21-2010, 01:42 PM
  4. Need Comments list from Worksheet
    By kirkm in forum Excel General
    Replies: 1
    Last Post: 06-27-2006, 08:10 AM
  5. Form Input, with (listbox) review then copy to worksheet
    By Sami82 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-03-2005, 06:05 AM

Tags for this Thread

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