display the comments from referenced cell in cell of different sheet in same workbook

kelsonbaird

New Member
Joined
Oct 14, 2019
Messages
9
I have a multi page work book and one of the sheets is for marking the status of personnel I reference their status in another sheet, but I would like not only that info to show but any comments that are attached to the referenced cell. Any ideas?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Better info.... Sheet 1 cell N20 Has a "S" in it but in additions there are comments, In sheet4 cell B30 I want to show what ever is in 'Sheet1"N20 plus it's comments.
 
Upvote 0
additionally I want to do this for about 1400 cells, so writing VBA code for each is not the direction that works.
 
Upvote 0
Well here is a Vba script to do the first one.

Code:
Sub See_Comments()
'Modified  11/3/2019  1:52:01 PM  EST
Sheets(4).Range("B30").Value = Sheets(1).Range("N20").Value & Sheets(1).Range("N20").Comment.Text
End Sub
 
Last edited:
Upvote 0
So if you do not want to use Vba then tell me how you think this can be done.

So you think a formula would do the job?
If your thinking a formula solution then I have no formula.

And you never mentioned having 1400 cells in your first or second post.

What else may we need to know?

And where are these 1400 cells and where would the results be entered.

To provide help we need all the facts upfront and specific details.
 
Upvote 0
If you have a range like Sheet(1) Range("A1:A1400") and want the results in a Range on Sheet(4) like Range("B1:B1400") where you want the results this could be done easily with one script.
 
Upvote 0
Well a formula would be the best, but I also have no formula, I wrote a vba that copies the row then pastes only comments in the correct row of another sheet, but it is clunky... and there are 97 rows that don't go into the same 97 rows on the other sheet. each row has 365 columns which could possibly have a comment.
 
Upvote 0
Well I asked about specific details but you still have not provide those details.

Like search what rows and put results where.
 
Upvote 0

Forum statistics

Threads
1,214,387
Messages
6,119,222
Members
448,877
Latest member
gb24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top