Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Using VBA what syntax do I use to Take the figure in B7 and multiply it by a
figure in b8 Thanks -- Norton Professional 2004 says this email is clean...believe it |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Range("b7")*range("b8")
or Cells(7,2)*cells(8,2) If the result is to go into a cell (say A1), then Range("a1")=Range("b7")*range("b8") HTH "PCOR" wrote: Using VBA what syntax do I use to Take the figure in B7 and multiply it by a figure in b8 Thanks -- Norton Professional 2004 says this email is clean...believe it |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
without any validation at all:
with activesheet msgbox .range("b7").value * .range("b8").value end with PCOR wrote: Using VBA what syntax do I use to Take the figure in B7 and multiply it by a figure in b8 Thanks -- Norton Professional 2004 says this email is clean...believe it -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Commenting custom formula fields/formula on formula editor | Excel Programming |