Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to have a textbox on a form to display the value in a cell
exact as it is display on screen. For example, have 326.45 as a value in the cell but I used custom format to display it as 326.45 Watts. Now I want this to be the value in the txetbox on the form instead of just 326.45. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Jun 7, 11:50 am, Ayo wrote:
Is there a way to have a textbox on a form to display the value in a cell exact as it is display on screen. For example, have 326.45 as a value in the cell but I used custom format to display it as 326.45 Watts. Now I want this to be the value in the txetbox on the form instead of just 326.45. Hello Ayo, If your TextBox is on a VBA UserForm set the value property to the cell's Text property... TextBox1.Value = ActiveSheet.Range("A1").Text Sincerely, Leith Ross |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks a million Leith !!
"Leith Ross" wrote: On Jun 7, 11:50 am, Ayo wrote: Is there a way to have a textbox on a form to display the value in a cell exact as it is display on screen. For example, have 326.45 as a value in the cell but I used custom format to display it as 326.45 Watts. Now I want this to be the value in the txetbox on the form instead of just 326.45. Hello Ayo, If your TextBox is on a VBA UserForm set the value property to the cell's Text property... TextBox1.Value = ActiveSheet.Range("A1").Text Sincerely, Leith Ross |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2007 Form Control/ActiveX Control font difference | Excel Discussion (Misc queries) | |||
Initializing control values of a form | Excel Programming | |||
Holding form control values within VBA | Excel Programming | |||
Tool Tip Text for Form control/ Active-X control | Excel Programming | |||
passing control value from one form to another form | Excel Programming |