Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 27
Default Multiplying A Range

Is there a function, like

=Fact(10)

Which multiplies all the values in a particular range?

=FUNCTIONNAME(A1:A10)

if not, can you suggest a way to do this in VBA?

Dan Walters
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default Multiplying A Range


?? If I understand
maybe =sum(a1:a10)*10
--
Don Guillett
SalesAid Software

"DanielWalters6" wrote in message
...
Is there a function, like

=Fact(10)

Which multiplies all the values in a particular range?

=FUNCTIONNAME(A1:A10)

if not, can you suggest a way to do this in VBA?

Dan Walters



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 709
Default Multiplying A Range

Dan, if you want to multiply by 10, put 10 in a cell, copy the cell, select
A1:A10, edit, paste special, check multiple, OK

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"DanielWalters6" wrote in message
...
Is there a function, like

=Fact(10)

Which multiplies all the values in a particular range?

=FUNCTIONNAME(A1:A10)

if not, can you suggest a way to do this in VBA?

Dan Walters



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 27
Default Multiplying A Range

Assume I have from A1:A10 these values;

1,3,4,5,6,7,4,2,2,6

If I multiply these together, i get 241920

If I sum(a1:a10)*10 then it gives me 400.

Quite a different answer.

Thankyou foryour help allthe same


--
Dan Walters


"Don Guillett" wrote:


?? If I understand
maybe =sum(a1:a10)*10
--
Don Guillett
SalesAid Software

"DanielWalters6" wrote in message
...
Is there a function, like

=Fact(10)

Which multiplies all the values in a particular range?

=FUNCTIONNAME(A1:A10)

if not, can you suggest a way to do this in VBA?

Dan Walters




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,726
Default Multiplying A Range

MsgBox application.fact(10)


--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"DanielWalters6" wrote in message
...
Is there a function, like

=Fact(10)

Which multiplies all the values in a particular range?

=FUNCTIONNAME(A1:A10)

if not, can you suggest a way to do this in VBA?

Dan Walters





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default Multiplying A Range

Hi Daniel

Try
=PRODUCT(A1:A10)

--
Regards

Roger Govier


"DanielWalters6" wrote in
message ...
Assume I have from A1:A10 these values;

1,3,4,5,6,7,4,2,2,6

If I multiply these together, i get 241920

If I sum(a1:a10)*10 then it gives me 400.

Quite a different answer.

Thankyou foryour help allthe same


--
Dan Walters


"Don Guillett" wrote:


?? If I understand
maybe =sum(a1:a10)*10
--
Don Guillett
SalesAid Software

"DanielWalters6" wrote in
message
...
Is there a function, like

=Fact(10)

Which multiplies all the values in a particular range?

=FUNCTIONNAME(A1:A10)

if not, can you suggest a way to do this in VBA?

Dan Walters






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 947
Default Multiplying A Range

...Which multiplies all the values in a particular range?

Is "Product" the function you are looking for?

=PRODUCT(A1:A10)

241,920

--
HTH :)
Dana DeLouis
Windows XP & Office 2003


"DanielWalters6" wrote in message
...
Assume I have from A1:A10 these values;

1,3,4,5,6,7,4,2,2,6

If I multiply these together, i get 241920

If I sum(a1:a10)*10 then it gives me 400.

Quite a different answer.

Thankyou foryour help allthe same


--
Dan Walters


"Don Guillett" wrote:


?? If I understand
maybe =sum(a1:a10)*10
--
Don Guillett
SalesAid Software

"DanielWalters6" wrote in
message
...
Is there a function, like

=Fact(10)

Which multiplies all the values in a particular range?

=FUNCTIONNAME(A1:A10)

if not, can you suggest a way to do this in VBA?

Dan Walters






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 27
Default Multiplying A Range

Thankyou, Exactly what I needed! :-)
--
Dan Walters


"Roger Govier" wrote:

Hi Daniel

Try
=PRODUCT(A1:A10)

--
Regards

Roger Govier


"DanielWalters6" wrote in
message ...
Assume I have from A1:A10 these values;

1,3,4,5,6,7,4,2,2,6

If I multiply these together, i get 241920

If I sum(a1:a10)*10 then it gives me 400.

Quite a different answer.

Thankyou foryour help allthe same


--
Dan Walters


"Don Guillett" wrote:


?? If I understand
maybe =sum(a1:a10)*10
--
Don Guillett
SalesAid Software

"DanielWalters6" wrote in
message
...
Is there a function, like

=Fact(10)

Which multiplies all the values in a particular range?

=FUNCTIONNAME(A1:A10)

if not, can you suggest a way to do this in VBA?

Dan Walters






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
self-sizing adv.filter criteria range BorisS Excel Discussion (Misc queries) 3 September 24th 06 01:30 PM
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) [email protected] Excel Worksheet Functions 0 September 5th 06 03:44 PM
Wrap Text Across Columns & Rows Michael Excel Dude Excel Discussion (Misc queries) 1 September 4th 06 02:14 AM
Duplicate Range Names by worksheet FlaAl Excel Discussion (Misc queries) 0 May 24th 06 05:14 PM
Help with using range names in sum function soteman2005 Excel Worksheet Functions 2 November 28th 05 04:43 PM


All times are GMT +1. The time now is 02:43 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"