Microsoft KB Archive/172265: Difference between revisions

From BetaArchive Wiki
m (Text replacement - "<" to "<")
m (Text replacement - """ to """)
 
(One intermediate revision by the same user not shown)
Line 59: Line 59:
=== Online Book Does Not Have Search Feature ===
=== Online Book Does Not Have Search Feature ===


The back cover of &quot;Running Microsoft Excel 97&quot; states that you can &quot;Find information fast with a searchable version of the book on disc.&quot;<br />
The back cover of "Running Microsoft Excel 97" states that you can "Find information fast with a searchable version of the book on disc."<br />
<br />
<br />
The online version of &quot;Running Microsoft Excel 97&quot; provides you with an interface that will allow you to browse through the Table of Contents of the book and locate the section you are interested in. Hyperlinks also allow the user to quickly jump to related topics throughout the book. However, there is no &quot;Search&quot; button or feature in the book.<br />
The online version of "Running Microsoft Excel 97" provides you with an interface that will allow you to browse through the Table of Contents of the book and locate the section you are interested in. Hyperlinks also allow the user to quickly jump to related topics throughout the book. However, there is no "Search" button or feature in the book.<br />
<br />
<br />
Correction:<br />
Correction:<br />
Back Cover, 2nd-to-last bullet:<br />
Back Cover, 2nd-to-last bullet:<br />
Change: &quot;Find information fast with a searchable version of the book on disc.&quot;<br />
Change: "Find information fast with a searchable version of the book on disc."<br />
To: &quot;Find information fast with an online version of the book.&quot;
To: "Find information fast with an online version of the book."
=== Page 1025: Triangle Function Returns Errors ===
=== Page 1025: Triangle Function Returns Errors ===


Line 85: Line 85:
Page 1043, code block 1:<br />
Page 1043, code block 1:<br />
Change to:
Change to:
<pre class="codesample">      &quot;RiverReport version&quot; + CStr(MyAppVersion)
<pre class="codesample">      "RiverReport version" + CStr(MyAppVersion)
   
   
   End With
   End With
   
   
   'Present the dialog box.<BR/&gt;
   'Present the dialog box.<BR/>
   UserForm1.Show
   UserForm1.Show
End Sub
End Sub

Latest revision as of 11:05, 21 July 2020

Article ID: 172265

Article Last Modified on 1/20/2007



APPLIES TO

  • MSPRESS Running Microsoft Excel 97 ISBN 1-57231-321-8



This article was previously published under Q172265

SUMMARY

This article contains corrections, comments, and information on known errors relating to the Microsoft Press book Running Microsoft Excel 97, ISBN 1-57231-321-8.

Contents:

  • Back Cover: Online book does not have Search feature
  • Page 1025: Triangle function returns errors
  • Page 1043: Code error


MORE INFORMATION

Online Book Does Not Have Search Feature

The back cover of "Running Microsoft Excel 97" states that you can "Find information fast with a searchable version of the book on disc."

The online version of "Running Microsoft Excel 97" provides you with an interface that will allow you to browse through the Table of Contents of the book and locate the section you are interested in. Hyperlinks also allow the user to quickly jump to related topics throughout the book. However, there is no "Search" button or feature in the book.

Correction:
Back Cover, 2nd-to-last bullet:
Change: "Find information fast with a searchable version of the book on disc."
To: "Find information fast with an online version of the book."

Page 1025: Triangle Function Returns Errors

In Microsoft Excel 97, running the Triangle function code on page 1025 returns an error for these calls on page 1026:

     =Triangle(,4,5) 
     =Triangle(3,,5) 
     =Triangle(A4,B4,C4)
                

Microsoft Excel 97 will return #VALUE? as the value for the cell. This is caused by a problem with the IsMissing function in Microsoft Excel 97. The Triangle function expects IsMissing to return True when the value of the variant is Null. On computers affected by this problem, IsMissing will always return False whether or not the variant is Null. Consequently, the function does not evaluate correctly.

Because of the structure of the function, the only arguments that will evaluate correctly are:

     =Triangle(arg1,arg2)
                

Microsoft Press is currently researching this problem and will post further information when it becomes available.

Page 1043: Code error

Correction:
Page 1043, code block 1:
Change to:

      "RiverReport version" + CStr(MyAppVersion)
 
   End With
 
   'Present the dialog box.<BR/>
   UserForm1.Show
End Sub
                

Microsoft Press is committed to providing informative and accurate books. All comments and corrections listed above are ready for inclusion in future printings of this book. If you have a later printing of this book, it may already contain most or all of the above corrections.


Additional query words: mspress ms_press press

Keywords: kbdocerr kbfix KB172265