A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Excel cell comments



 
 
Thread Tools Display Modes
  #1  
Old June 23rd, 2004, 02:29 PM
external usenet poster
 
Posts: n/a
Default Excel cell comments

I have a column of cells that each have a comment attached
to the cell. Is there a way to take those comments, and
keep them attached to the record of data when creating a
table in Access?
Pieces of record:
Name Last Name Height(comments here like 5'3", 5'4",
etc.)
  #2  
Old June 23rd, 2004, 04:01 PM
TF
external usenet poster
 
Posts: n/a
Default Excel cell comments

I have never tried that, but I would guess that you'd have to program that in Access. I don't think the import functions in Access acknowledge/read Excel comments.

TF

" wrote:

I have a column of cells that each have a comment attached
to the cell. Is there a way to take those comments, and
keep them attached to the record of data when creating a
table in Access?
Pieces of record:
Name Last Name Height(comments here like 5'3", 5'4",
etc.)

  #3  
Old June 23rd, 2004, 05:56 PM
external usenet poster
 
Posts: n/a
Default Excel cell comments

Thanks,
You are right when you say Access doesn't read the Excel
comments. I think a macro might be the way to go. GW
-----Original Message-----
I have never tried that, but I would guess that you'd

have to program that in Access. I don't think the import
functions in Access acknowledge/read Excel comments.

TF

" wrote:

I have a column of cells that each have a comment

attached
to the cell. Is there a way to take those comments, and
keep them attached to the record of data when creating

a
table in Access?
Pieces of record:
Name Last Name Height(comments here like 5'3",

5'4",
etc.)

.

  #4  
Old June 23rd, 2004, 09:21 PM
Debra Dalgleish
external usenet poster
 
Posts: n/a
Default Excel cell comments

You could use a macro to copy the comment text to another column, and
include that field in the export. For example, the following code
places the comment text in column 5:

'========================
Sub CommentsToCell()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
Cells(cmt.Parent.Row, 5).Value = cmt.text
Next
End Sub
'=======================

wrote:
I have a column of cells that each have a comment attached
to the cell. Is there a way to take those comments, and
keep them attached to the record of data when creating a
table in Access?
Pieces of record:
Name Last Name Height(comments here like 5'3", 5'4",
etc.)



--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 04:01 PM.


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