Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hello,
Can you help? I would like to write this as par of a macro. Range("a1:a3")=2 * Range("b1:b3") thank you -- caroline |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
for i = 1 to 3
cells(i,"a").Value = Cells(i,"b").Value * 2 Next -- Regards, Tom Ogilvy "caroline" wrote: hello, Can you help? I would like to write this as par of a macro. Range("a1:a3")=2 * Range("b1:b3") thank you -- caroline |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
THANKS TOM
-- caroline "Tom Ogilvy" wrote: for i = 1 to 3 cells(i,"a").Value = Cells(i,"b").Value * 2 Next -- Regards, Tom Ogilvy "caroline" wrote: hello, Can you help? I would like to write this as par of a macro. Range("a1:a3")=2 * Range("b1:b3") thank you -- caroline |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
multiplying | Excel Worksheet Functions | |||
multiplying rows and passing formula throughout the col range | Excel Discussion (Misc queries) | |||
Multiplying | Excel Worksheet Functions | |||
Multiplying specific data within a range to get column totals | Excel Worksheet Functions | |||
Multiplying A Range | Excel Worksheet Functions |