Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Enter a number into an active Cell and want the same cell in every othe sheet has the same number entered. Does anyone know how to do this b using form -- minrufen ----------------------------------------------------------------------- minrufeng's Profile: http://www.excelforum.com/member.php...fo&userid=2620 View this thread: http://www.excelforum.com/showthread.php?threadid=51543 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could try calling the following code from the on change event or from a
button object: Sub EnterNumber(nbr As Integer) Dim oWorkSheet As Worksheet For Each oWorkSheet In ActiveWorkbook.Worksheets oWorkSheet.Activate Range("A1").Activate ActiveCell.FormulaR1C1 = nbr Next End Sub "minrufeng" wrote: Enter a number into an active Cell and want the same cell in every other sheet has the same number entered. Does anyone know how to do this by using form? -- minrufeng ------------------------------------------------------------------------ minrufeng's Profile: http://www.excelforum.com/member.php...o&userid=26208 View this thread: http://www.excelforum.com/showthread...hreadid=515438 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
enter data in 1 cell and produce a number in another cell | Excel Worksheet Functions | |||
Enter data from same cell in different sheets into a new sheet | Excel Worksheet Functions | |||
Auto Enter a Number into a Cell | Excel Discussion (Misc queries) | |||
Enter number in cell and have it divide by 4 | Excel Discussion (Misc queries) | |||
You Must Enter A Number In This Cell | Excel Discussion (Misc queries) |