Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I draw information from a cell within Excel and show this on a
label/caption on a Userform? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try:
userform1.label1.caption = worksheets("sheet1").range("A1").value -- Gary "Elsa" wrote in message ... How do I draw information from a cell within Excel and show this on a label/caption on a Userform? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you. I will try this.
"Gary Keramidas" wrote: try: userform1.label1.caption = worksheets("sheet1").range("A1").value -- Gary "Elsa" wrote in message ... How do I draw information from a cell within Excel and show this on a label/caption on a Userform? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Elsa,
If you have a Label control named lblCaption on your form, you can use something like the following: UserForm1.lblCaption.Caption = Worksheets("Sheet1").Range("A10").Text -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "Elsa" wrote in message ... How do I draw information from a cell within Excel and show this on a label/caption on a Userform? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Where do you put this code?
"Chip Pearson" wrote: Elsa, If you have a Label control named lblCaption on your form, you can use something like the following: UserForm1.lblCaption.Caption = Worksheets("Sheet1").Range("A10").Text -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting www.cpearson.com (email on the web site) "Elsa" wrote in message ... How do I draw information from a cell within Excel and show this on a label/caption on a Userform? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel and launching userforms | New Users to Excel | |||
Excel and launching userforms | Excel Programming | |||
Excel VBA UserForms in in Mac OS X | Excel Programming | |||
Userforms in Excel 2003 created in Excel 2000 | Excel Discussion (Misc queries) | |||
Help Userforms / Excel SUMIF | Excel Worksheet Functions |