Microsoft KB Archive/101338: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
Line 11: Line 11:
* Microsoft Excel for the Macintosh, version 4.0
* Microsoft Excel for the Macintosh, version 4.0


Page 392 of the "Function Reference," version 4.0, gives the following example for the SET.PRINT.TITLES() macro function:
Page 392 of the "Function Reference," version 4.0, gives the following example for the SET.PRINT.TITLES() macro function:


<pre>  SET.PRINT.TITLES(&quot;&quot;,$B$B)
<pre>  SET.PRINT.TITLES("",$B$B)
</pre>
</pre>
This information is incorrect. The second argument the example should be expressed with a colon separating the B and the dollar sign ($B:$B). The following example shows the correct syntax for this function:
This information is incorrect. The second argument the example should be expressed with a colon separating the B and the dollar sign ($B:$B). The following example shows the correct syntax for this function:


<pre>  SET.PRINT.TITLES(&quot;&quot;,$B:$B)
<pre>  SET.PRINT.TITLES("",$B:$B)
</pre>
</pre>
The macro formula above specifies column B as the source for row titles and omits column titles.
The macro formula above specifies column B as the source for row titles and omits column titles.
Line 23: Line 23:
== REFERENCES ==
== REFERENCES ==


&quot;User's Guide 1,&quot; version 4.0, page 255
"User's Guide 1," version 4.0, page 255


{|
{|
Line 37: Line 37:
<br />
<br />
<br />
<br />
THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED &quot;AS IS&quot; WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.
THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.
</blockquote>
</blockquote>
<span>Last reviewed: September 12, 1996</span><br />
<span>Last reviewed: September 12, 1996</span><br />
[[../cpyright|©1997 Microsoft Corporation. All rights reserved. Legal Notices]].<br />
[[../cpyright|©1997 Microsoft Corporation. All rights reserved. Legal Notices]].<br />
|}
|}

Latest revision as of 09:18, 20 July 2020

Microsoft Knowledge Base

Excel: Second Argument in SET.PRINT.TITLES Must Contain Colon

Last reviewed: September 12, 1996
Article ID: Q101338

The information in this article applies to:

  • Microsoft Excel for Windows, versions 4.0, 4.0a
  • Microsoft Excel for the Macintosh, version 4.0

Page 392 of the "Function Reference," version 4.0, gives the following example for the SET.PRINT.TITLES() macro function:

   SET.PRINT.TITLES("",$B$B)

This information is incorrect. The second argument the example should be expressed with a colon separating the B and the dollar sign ($B:$B). The following example shows the correct syntax for this function:

   SET.PRINT.TITLES("",$B:$B)

The macro formula above specifies column B as the source for row titles and omits column titles.

REFERENCES

"User's Guide 1," version 4.0, page 255


KBCategory: kbdocerr

KBSubcategory:

Additional reference words: 4.00 4.00a print title set



THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 12, 1996
©1997 Microsoft Corporation. All rights reserved. Legal Notices.