Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
The contents of the cells I'm returning using VLookup are quite hefty and I'd like the users to see the contents in the input line, not the formula when they click on the cell. The only way they can see the contents is to make the cell height bigger which is really not convenient for what we're doing. Does anyone know a way to do this? Marie |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This will put the results in a Comment Box.........
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) ' This macro, placed in a WorkSheet module will automatically ' copy a cell's value over to it's comment box, so large text ' fields in a cell can be viewed without resizing the worksheet. On Error Resume Next ActiveCell.Comment.Text Text:=ActiveCell.Value End Sub hth Vaya con Dios, Chuck, CABGx3 "MarieB" wrote: Hi The contents of the cells I'm returning using VLookup are quite hefty and I'd like the users to see the contents in the input line, not the formula when they click on the cell. The only way they can see the contents is to make the cell height bigger which is really not convenient for what we're doing. Does anyone know a way to do this? Marie |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Great bit of code, that worked a treat. Thanks
-- Marie "CLR" wrote: This will put the results in a Comment Box......... Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) ' This macro, placed in a WorkSheet module will automatically ' copy a cell's value over to it's comment box, so large text ' fields in a cell can be viewed without resizing the worksheet. On Error Resume Next ActiveCell.Comment.Text Text:=ActiveCell.Value End Sub hth Vaya con Dios, Chuck, CABGx3 "MarieB" wrote: Hi The contents of the cells I'm returning using VLookup are quite hefty and I'd like the users to see the contents in the input line, not the formula when they click on the cell. The only way they can see the contents is to make the cell height bigger which is really not convenient for what we're doing. Does anyone know a way to do this? Marie |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLOOKUP Formula | Excel Discussion (Misc queries) | |||
Help! All results of my formula are the same! | Excel Discussion (Misc queries) | |||
abdualmohsn | Excel Discussion (Misc queries) | |||
IF & VLOOKUP FORMULA | Excel Worksheet Functions | |||
I want the results of a formula to show in cell, NOT THE FORMULA! | Excel Discussion (Misc queries) |