Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
is it possible to have a textbox that will automatically update with a value
as the spreadsheets are updated. In the textbox i am setting the text equal to a cell, but the textbox is still showing the same. it is like it doesnt recognize what i am trying to do. is their another way of doing this it is currently showing 220 however in the textbox i set the text = 'Sheet 1'!$A$12 which should give it a value of 334 i do not know where it is getting 220 from. Please Help |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
First I inserted a textbox from the Drawing Toolbar
and then in the worksheet code area: Private Sub Worksheet_Calculate() Set r = Selection ActiveSheet.Shapes("Text Box 1").Select Selection.Characters.Text = Sheets("Sheet1").Range("A12").Value r.Select End Sub Finally in A12, I put: =NOW() -- Gary''s Student - gsnu200830 "Soccer boy" wrote: is it possible to have a textbox that will automatically update with a value as the spreadsheets are updated. In the textbox i am setting the text equal to a cell, but the textbox is still showing the same. it is like it doesnt recognize what i am trying to do. is their another way of doing this it is currently showing 220 however in the textbox i set the text = 'Sheet 1'!$A$12 which should give it a value of 334 i do not know where it is getting 220 from. Please Help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
using a conditional suffix in text function format syntax=text(value,format_text) | Excel Worksheet Functions | |||
grab cell text from multi-tab workbook, show text in another workb | Excel Worksheet Functions | |||
Text does not display in "Text boxs" and when wrapping text in a c | Excel Discussion (Misc queries) | |||
want to remove all text characters equal to one character in length from text string | Excel Worksheet Functions | |||
want to remove all text characters equal to one character in length from text string | Excel Worksheet Functions |