Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Dab
 
Posts: n/a
Default Help with cell notes.

Help with cell notes.

Is there a way to get the contents for a cell note from somewhere else in
the sheet?

I'd like to make a 'lookup table' to generate the note contents. Let me
know. Thanks.

--
Dab

Cut off: yourhead to respond


  #2   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
not without using VBA and creating the cell comments programmatically

--
Regards
Frank Kabel
Frankfurt, Germany

"Dab" schrieb im Newsbeitrag
...
Help with cell notes.

Is there a way to get the contents for a cell note from somewhere

else in
the sheet?

I'd like to make a 'lookup table' to generate the note contents. Let

me
know. Thanks.

--
Dab

Cut off: yourhead to respond



  #3   Report Post  
JE McGimpsey
 
Posts: n/a
Default

One would need to use VBA to do so. If you want to go that route, post
back, or look at Debra Dalgleish's site:


http://www.contextures.com/xlcomments03.html


In article ,
"Dab" wrote:

Is there a way to get the contents for a cell note from somewhere else in
the sheet?

I'd like to make a 'lookup table' to generate the note contents. Let me
know. Thanks.

  #4   Report Post  
Dave Peterson
 
Posts: n/a
Default

here's one of those VBA solutions.

Option Explicit
Function PutComment(myStr As String, TCell As Range) As Variant
Application.Volatile

With TCell
If .Comment Is Nothing Then
'do nothing
Else
.Comment.Delete
End If

TCell.AddComment Text:=myStr
End With

PutComment = ""

End Function


Then you can use a formula like:

=putcomment(VLOOKUP(A1,Sheet2!a:e,2,false),B9)

This matches the value in A1 in Sheet2, column A. It returns the second column
and plops it into a comment in B9.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Dab wrote:

Help with cell notes.

Is there a way to get the contents for a cell note from somewhere else in
the sheet?

I'd like to make a 'lookup table' to generate the note contents. Let me
know. Thanks.

--
Dab

Cut off: yourhead to respond


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Maintaining cell reference after sorting GRITS Excel Discussion (Misc queries) 2 April 30th 23 07:42 PM
Using Jet to read excel file returns blank for last cell - sometim Ron Excel Discussion (Misc queries) 1 December 9th 04 08:21 AM
how do i set up a single cell continual entry in excel to total f. mike@swallow Excel Discussion (Misc queries) 1 December 7th 04 12:29 PM
Display actual contents of cell xmasbob Excel Discussion (Misc queries) 1 December 6th 04 05:09 PM
copy a cell value not its function KC Mao Excel Discussion (Misc queries) 2 December 4th 04 04:30 AM


All times are GMT +1. The time now is 08:46 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"