Results 1 to 4 of 4

Thread: Graph paper creator

  1. #1
    Join Date
    Feb 2008
    Posts
    2,180

    Graph paper creator

    I want a graph paper on my computer. But I am unsure hot to get it with the rows & columns of the same size. Is it possible with either Word or Excel? I am having Office 2003. I may upgrade to Office 2007 if that has some solutions.

  2. #2
    Join Date
    Sep 2005
    Posts
    1,306

    Re: Graph paper creator

    To create a graph paper in Excel 2003, follow the below steps:
    1. Press Ctrl + A.
    2. Open the Format Menu.
    3. Select Row.
    4. Click Height.
    5. Change the Height to 13.
    6. Click OK.
    7. Open the Format menu again.
    8. Select Column.
    9. Click Width.
    10. Set the width to 1.5.
    11. Click OK.
    12. Select cells A1 through AS 58.
    13. Open the File menu.
    14. Click Page Setup.
    15. Click the Margins tab.
    16. Set all margins to 1 inches.
    17. Under Center on Page, out checks in both the Vertically and Horizontally boxes.
    18. Click OK.
    19. Open the File menu.
    20. Click Print.
    21. Click Print Selection under Print what.
    22. Click OK.

  3. #3
    Join Date
    Jan 2008
    Posts
    3,755

    Re: Graph paper creator

    You can even do some kind of coding in VBA to create the graph paper:

    Code:
    Sub GraphPaperCreator()
    Dim i As Long
    Dim cw
    Dim w
    Dim h
    
    Cells.ColumnWidth = Rows(1).Height
    
    With Cells(1)
    For i = 1 To 10
    cw = .EntireColumn.ColumnWidth
    w = .EntireColumn.Width
    h = .EntireRow.Height
    Cells.ColumnWidth = (cw/w) * h
    Next i
    End With
    
    End Sub

  4. #4
    Join Date
    May 2008
    Posts
    979

    Re: Graph paper creator

    To create a graph in Word:

    1. Open a new Word Document.
    2. Bring up the Draw menu by selecting View - Toolbars - Drawing.
    3. Select Draw - Grid and set the Horizontal and Vertical spacing according
    to the finest line spacing you want on your graph.
    4. Set the Horizontal and Vertical Origins to 0.
    5. Select Snap objects to grid

    This will create your graph paper. Now you can draw anything using the Draw menu and use various tools which you may need for your graph.

Similar Threads

  1. Replies: 2
    Last Post: 15-05-2012, 10:37 AM
  2. Cannot see paper size option for legal size paper
    By Cherokee in forum Operating Systems
    Replies: 4
    Last Post: 22-12-2010, 07:31 AM
  3. PHP 3d ring graph
    By omega4enigma in forum Software Development
    Replies: 3
    Last Post: 27-08-2010, 08:33 PM
  4. How to Display bar graph from with VBA
    By Harper in forum Software Development
    Replies: 3
    Last Post: 31-08-2009, 05:31 PM
  5. PCI-E x 16 and the graph and its future
    By PAPRIKA in forum Motherboard Processor & RAM
    Replies: 3
    Last Post: 23-02-2009, 01:16 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,139,439.38614 seconds with 17 queries