Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Worksheet Functions / October 2006

Tip: Looking for answers? Try searching our database.

How do I set up a multiplication table using formulas?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Bruce - 17 Oct 2006 02:55 GMT
I am trying to demonstrate the usefulness of Excel by showing my kids how it
will calculate multiplication tables for them.  Using numbers 1 to 12 (for
example) across the x-axis and 1 to 12 across the y-axis would yield a
product.  Any assistance in using formulas?
Signature

Bruce Schmidt

Paul B - 17 Oct 2006 03:39 GMT
Bruce,
enter the following formula in A1
=ROW()*COLUMN()
and copy this down to row 12 then copy that across to column L for 12x12

or if you want to show them a macro also

Sub MultTable()
'will make a multiplication table
noCols = InputBox("Number of columns", , 12)
noRows = InputBox("Number of Rows", , 12)
Dim ir As Long, ic As Long

For ir = 1 To noRows
   For ic = 1 To noCols
       Cells(ir, ic).Value = ir * ic
   Next ic
Next ir
End Sub

Signature

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

> I am trying to demonstrate the usefulness of Excel by showing my kids how it
> will calculate multiplication tables for them.  Using numbers 1 to 12 (for
> example) across the x-axis and 1 to 12 across the y-axis would yield a
> product.  Any assistance in using formulas?
JMB - 17 Oct 2006 03:47 GMT
Another way
=B$1*$A2
copy across and down

> I am trying to demonstrate the usefulness of Excel by showing my kids how it
> will calculate multiplication tables for them.  Using numbers 1 to 12 (for
> example) across the x-axis and 1 to 12 across the y-axis would yield a
> product.  Any assistance in using formulas?
JLatham - 17 Oct 2006 13:51 GMT
I think this way is probably better for the teaching part of his request.  
While Paul's is a slick way of doing it for a 'general' case, it would not
show the students how Excel is taking values from different locations and
manipulating them to come up with useful information.  Your method does - can
change a value in either the x or y axis and visually show the results of the
change.

> Another way
> =B$1*$A2
[quoted text clipped - 4 lines]
> > example) across the x-axis and 1 to 12 across the y-axis would yield a
> > product.  Any assistance in using formulas?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.