A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Tables
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How do you make a multiplication table using numbers.



 
 
Thread Tools Display Modes
  #1  
Old November 16th, 2005, 11:46 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

I would like to make and print, a 20X20 cell multiplication table and have
the numbers automaticaly filled in. Is this possible?
  #2  
Old November 16th, 2005, 11:53 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

Yes in Excel, No in Word.


"Rippka" wrote in message
news
I would like to make and print, a 20X20 cell multiplication table and have
the numbers automaticaly filled in. Is this possible?


  #3  
Old November 17th, 2005, 06:01 AM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

Hi Rippka,

You can do this easily enough in Word if you set it up as a form with a
formfield to iniate the table and formula fields for each of the remaining
cells.

Cheers


"Rippka" wrote in message
news
I would like to make and print, a 20X20 cell multiplication table and have
the numbers automaticaly filled in. Is this possible?


  #4  
Old November 27th, 2005, 02:46 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

Did you find out how???
  #5  
Old November 27th, 2005, 05:30 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

Use a macro containing the following code:

Dim mtable As Table, i As Long, j As Long
Set mtable = ActiveDocument.Tables.Add(Range:=Selection.Range, NumRows:=20,
NumColumns:=20)
For i = 1 To mtable.Rows.Count
For j = 1 To mtable.Columns.Count
mtable.Cell(i, j).Range.Text = i * j
Next j
Next i

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"lori hancock" wrote in message
. ..
Did you find out how???



  #6  
Old November 28th, 2005, 03:22 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

No, I did not.

"lori hancock" wrote:

Did you find out how???

  #7  
Old November 28th, 2005, 03:27 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

Thanks for your response, but I'm still lost.

"macropod" wrote:

Hi Rippka,

You can do this easily enough in Word if you set it up as a form with a
formfield to iniate the table and formula fields for each of the remaining
cells.

Cheers


"Rippka" wrote in message
news
I would like to make and print, a 20X20 cell multiplication table and have
the numbers automaticaly filled in. Is this possible?




  #8  
Old November 28th, 2005, 03:28 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

Huh!!!!!

"Doug Robbins - Word MVP" wrote:

Use a macro containing the following code:

Dim mtable As Table, i As Long, j As Long
Set mtable = ActiveDocument.Tables.Add(Range:=Selection.Range, NumRows:=20,
NumColumns:=20)
For i = 1 To mtable.Rows.Count
For j = 1 To mtable.Columns.Count
mtable.Cell(i, j).Range.Text = i * j
Next j
Next i

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"lori hancock" wrote in message
. ..
Did you find out how???




  #9  
Old November 28th, 2005, 03:28 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

Thanks for you response.

"Jezebel" wrote:

Yes in Excel, No in Word.


"Rippka" wrote in message
news
I would like to make and print, a 20X20 cell multiplication table and have
the numbers automaticaly filled in. Is this possible?




  #10  
Old November 29th, 2005, 12:11 AM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default How do you make a multiplication table using numbers.

See http://www.gmayor.com/installing_macro.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Rippka" wrote in message
news
Huh!!!!!

"Doug Robbins - Word MVP" wrote:

Use a macro containing the following code:

Dim mtable As Table, i As Long, j As Long
Set mtable = ActiveDocument.Tables.Add(Range:=Selection.Range,

NumRows:=20,
NumColumns:=20)
For i = 1 To mtable.Rows.Count
For j = 1 To mtable.Columns.Count
mtable.Cell(i, j).Range.Text = i * j
Next j
Next i

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"lori hancock" wrote in message
. ..
Did you find out how???





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Add New Field to DB Karen Database Design 7 October 19th, 2005 08:03 PM
Help again from Ken Snell (Query) Randy Running & Setting Up Queries 22 August 29th, 2005 08:15 PM
Create Table Primary Key after Make Table Query And Update Table RNUSZ@OKDPS Running & Setting Up Queries 1 May 3rd, 2005 08:07 PM
Here's a shocker Mike Labosh General Discussion 2 October 26th, 2004 05:04 PM
COMPARE THE TWO TABLES Stefanie General Discussion 0 June 4th, 2004 04:36 PM


All times are GMT +1. The time now is 10:27 AM.


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