Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I'm trying to get my user form to show data in my spreadsheet. I've tried
things like .Value = Range("E1") and things like that, but nothing seems to work. I have 2 forms. The first form is an information-entering type form. The second I want to display that information that the user inputs (his/her name, number, etc.) How can this be done? |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
in the second form click the cell you want to display the info, press = then
click on the cell you wish it to display in the user form and press enter. ive asked a similar Q; on how to do this for an entire sheet or book, maybe usefull for what you want ? "Lucosa" wrote: I'm trying to get my user form to show data in my spreadsheet. I've tried things like .Value = Range("E1") and things like that, but nothing seems to work. I have 2 forms. The first form is an information-entering type form. The second I want to display that information that the user inputs (his/her name, number, etc.) How can this be done? |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
This will prevent your cells from reading "0" when there is no entry in the
info sheet: =IF(Sheet1!A1<"",Sheet1!A1,"") this would reside in Sheet2, A1 Then it will read whatever is in Sheet1, A1 "hoyt" wrote: in the second form click the cell you want to display the info, press = then click on the cell you wish it to display in the user form and press enter. ive asked a similar Q; on how to do this for an entire sheet or book, maybe usefull for what you want ? "Lucosa" wrote: I'm trying to get my user form to show data in my spreadsheet. I've tried things like .Value = Range("E1") and things like that, but nothing seems to work. I have 2 forms. The first form is an information-entering type form. The second I want to display that information that the user inputs (his/her name, number, etc.) How can this be done? |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
hello
is it possible to make this work and update every cell on the sheet as opposed to a single cell i.e.A1? "ufo_pilot" wrote: This will prevent your cells from reading "0" when there is no entry in the info sheet: =IF(Sheet1!A1<"",Sheet1!A1,"") this would reside in Sheet2, A1 Then it will read whatever is in Sheet1, A1 "hoyt" wrote: in the second form click the cell you want to display the info, press = then click on the cell you wish it to display in the user form and press enter. ive asked a similar Q; on how to do this for an entire sheet or book, maybe usefull for what you want ? "Lucosa" wrote: I'm trying to get my user form to show data in my spreadsheet. I've tried things like .Value = Range("E1") and things like that, but nothing seems to work. I have 2 forms. The first form is an information-entering type form. The second I want to display that information that the user inputs (his/her name, number, etc.) How can this be done? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
forms that suddenly wont appear using the show method in VBA a bug or a corrupted file perhaps ? | Excel Discussion (Misc queries) | |||
How can I have an input form to add a random no. to each input entry? | Excel Discussion (Misc queries) | |||
Display form from an VB application in Excel | Excel Discussion (Misc queries) | |||
Use a text box to calculate and show results in a user form | Excel Discussion (Misc queries) | |||
Input Form vba help | Excel Discussion (Misc queries) |