Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Is there a way to insert a word document into a single excel cell

Is there a way to insert a word document into a single cell of an excel
worksheet that would not expand the cell yet give you full veiw of the
document if you scrolled over the cell.
Let's say for example I am creating a schedule on a calender. I want to see
the heading of the word document when I open the excel workbook but want the
calender to remain the same size unless I scroll over the cell that holds the
information I need.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 923
Default Is there a way to insert a word document into a single excel cell

I have used a similar technique (not word documents) by dynamically changing
the cell comments text and size - it might be a way forward?

With Range("A1")
.AddComment
.Comment.Visible = False
.Comment.Text Text:="This is a new comment"
.Comment.Shape.ScaleWidth 2.16, msoFalse, msoScaleFromTopLeft
.Comment.Shape.ScaleHeight 1.74, msoFalse, msoScaleFromTopLeft
End With

I guess there is no reason why a word document could not be opened and
pasted into the comment - not sure about format and size restrictions?

--
Cheers
Nigel



"Marty in Austin" <Marty in wrote in
message ...
Is there a way to insert a word document into a single cell of an excel
worksheet that would not expand the cell yet give you full veiw of the
document if you scrolled over the cell.
Let's say for example I am creating a schedule on a calender. I want to

see
the heading of the word document when I open the excel workbook but want

the
calender to remain the same size unless I scroll over the cell that holds

the
information I need.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Is there a way to insert a word document into a single excel c

Hello Nigel,

The method you used sounds interesting. Please explain a little further.
First question: Does the comment fill the viewable surface of the cell or
does it appear as a tag? Second question: Does this method allow the user or
viewer to print the contents of the single cell by just clicking the cell and
the print button? Third question: If the answer to the second question is
yes, can you format the comment to appear to be a word document when printed?
Thank you so much Nigel for your time and thoughts.

Marty

"Nigel" wrote:

I have used a similar technique (not word documents) by dynamically changing
the cell comments text and size - it might be a way forward?

With Range("A1")
.AddComment
.Comment.Visible = False
.Comment.Text Text:="This is a new comment"
.Comment.Shape.ScaleWidth 2.16, msoFalse, msoScaleFromTopLeft
.Comment.Shape.ScaleHeight 1.74, msoFalse, msoScaleFromTopLeft
End With

I guess there is no reason why a word document could not be opened and
pasted into the comment - not sure about format and size restrictions?

--
Cheers
Nigel



"Marty in Austin" <Marty in wrote in
message ...
Is there a way to insert a word document into a single cell of an excel
worksheet that would not expand the cell yet give you full veiw of the
document if you scrolled over the cell.
Let's say for example I am creating a schedule on a calender. I want to

see
the heading of the word document when I open the excel workbook but want

the
calender to remain the same size unless I scroll over the cell that holds

the
information I need.




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
insert document into single cell NEIL Excel Worksheet Functions 1 September 12th 09 04:59 PM
can I insert/embed a word document in a single excel cell? hamishburn Excel Discussion (Misc queries) 1 August 20th 08 10:41 AM
Insert Word Document into Excel Steve Blake Excel Discussion (Misc queries) 2 July 5th 07 12:10 PM
Want to insert Excel sheet in Word document - comes out too big. Chicago Excel Discussion (Misc queries) 4 March 30th 06 11:52 PM
Help, insert a word document contents into excel tab? Dan Ward Excel Discussion (Misc queries) 2 December 15th 04 12:01 AM


All times are GMT +1. The time now is 05:26 AM.

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

About Us

"It's about Microsoft Excel"