home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 498a.lha / SC_v6.7 / tutorial.sc < prev    next >
Text File  |  1991-04-08  |  4KB  |  97 lines

  1. # This data file was generated by the Spreadsheet Calculator.
  2. # You almost certainly shouldn't edit it.
  3.  
  4. define "page4" A70
  5. define "page3" A49
  6. define "page2" A29
  7. define "page1" A9
  8. define "page5" A89
  9. leftstring A1 = "This is a brief sc tutorial."
  10. leftstring A3 = "Cells are named by their column and row number.  For example,"
  11. leftstring A4 = "Cell A4"
  12. leftstring B4 = "Cell B4"
  13. leftstring C4 = "Cell C4"
  14. leftstring A5 = "Cell A5"
  15. leftstring A6 = "Cell A6"
  16. leftstring C6 = "Cell C6"
  17. leftstring A7 = "Cells range from A0 to AN199."
  18. leftstring A8 = "Cells can also be named by the user.  See 'range names' in the manual."
  19. leftstring page1 = "You can move the cursor a couple of different ways:"
  20. leftstring A11 = "^n, j and the <DOWN> arrow key go down"
  21. leftstring A12 = "^p, k and the <UP> arrow key go up"
  22. leftstring A13 = "^b, h and the <LEFT> arrow key go left"
  23. leftstring A14 = "^f, l and the <RIGHT> arrow key go right"
  24. leftstring A15 = "You can go directly to a cell by typing 'g' and the cell name. "
  25. leftstring A16 = "'g c6' will take you to cell c6."
  26. leftstring A18 = "Cells can contain numbers, formulas, or text."
  27. leftstring A19 = "Most of the cells on this page contain text."
  28. leftstring C20 = "<Type 'g page2' to continue>"
  29. leftstring A22 = "Cell d22 contains text"
  30. leftstring D22 = "Text "
  31. leftstring A23 = "Cell d23 contains a number"
  32. let D23 = 123.34
  33. leftstring A24 = "Cell d24 contains a formula"
  34. let D24 = D23+88
  35. leftstring A26 = "To see what the cell contains, just move the cursor"
  36. leftstring A27 = "onto the cell.  The contents will show up on line 1 in the brackets."
  37. leftstring page2 = "You can enter data into cells like this:"
  38. leftstring B30 = "'<text' enters left justified text."
  39. leftstring B31 = "'>text' enters right justified text."
  40. leftstring B32 = "'=number' enters a number"
  41. leftstring B33 = "'=formula' enters a formula."
  42. leftstring A35 = "Try duplicating d22 through d24 in e22 though e24."
  43. leftstring A37 = "You erase a cell by typing 'x' with the cursor on the cell."
  44. leftstring C40 = "<Type 'g page3' to continue>"
  45. leftstring A42 = "Here is a typical use for numbers and formulas:"
  46. let A44 = 10.3
  47. let B44 = 1877.5
  48. let C44 = 234.7
  49. let E44 = @sum(A44:C44)
  50. let A45 = 44.56
  51. let B45 = 44.3
  52. let C45 = -3
  53. let E45 = @sum(A45:C45)
  54. let A46 = 88.74
  55. let B46 = 8000
  56. let C46 = -9
  57. let E46 = @sum(A46:C46)
  58. let A47 = 99.2
  59. let B47 = -88
  60. let C47 = -44.6
  61. let E47 = @sum(A47:C47)
  62. let page3 = @sum(A44:A47)
  63. let B49 = @sum(B44:B47)
  64. let C49 = @sum(C44:C47)
  65. let E49 = @sum(A44:C47)
  66. leftstring A51 = "The data is entered in a44 through c47."
  67. leftstring A52 = "Cells a49, b49 and c49 sum their respective columns."
  68. leftstring A53 = "Cells e44, e45, e46, and e47 sum their respective rows."
  69. leftstring A54 = "Cell E49 is a grand total."
  70. leftstring A55 = "Try changing some of the data cells and watch the sums change."
  71. leftstring A57 = "You can also edit cells by putting the cursor on the cell and typing:"
  72. leftstring B58 = "'e' to edit the numeric portion."
  73. leftstring B59 = "'E' to edit the string portion."
  74. leftstring C60 = "<Type 'g page4' to continue>"
  75. leftstring A62 = "Since you are reading this, you know that you can load "
  76. leftstring A63 = "a data base from a file by typing the file name as an"
  77. leftstring A64 = "argument to the program.  You can also load or save a "
  78. leftstring A65 = "data base using the file commands:"
  79. leftstring B67 = "'G file'"
  80. leftstring C67 = "Gets the data from an sc file."
  81. leftstring B68 = "'P file'"
  82. leftstring C68 = "Puts the data from the spreadsheet into a file."
  83. leftstring page4 = "Try 'P foo.sc' to write this to the file foo.sc"
  84. leftstring A71 = "The Get command erases the current spreadsheet.  "
  85. leftstring A72 = "To merge a spreadsheet with the one currently in"
  86. leftstring A73 = "the machine, use:"
  87. leftstring B75 = "'M file'"
  88. leftstring C75 = "Merge the data from a saved sc file."
  89. leftstring A77 = "You can also get human readable versions of the data"
  90. leftstring A78 = "by using the Write command:"
  91. leftstring C80 = "<Type 'g page5' to continue>"
  92. leftstring A82 = "Try 'W tut.txt' for a clear text version of the tutorial."
  93. leftstring A85 = "This is the end of the tutorial.  We have explored"
  94. leftstring A86 = "The basic commands.  Much more detail is available"
  95. leftstring A87 = "in the man page."
  96. leftstring D91 = "GOOD LUCK!"
  97.