Thanks for the response and input! I had actually tried passing the value as a string and a constant with the same result. I wasn't actually sure it mattered, because no errors are thrown and if I set Merge to "True", it had the same effect as the constant True. To add a bit more detail, I am merging a bunch of cells and trying to add the title of an Excel spread sheet, and center it. Here's the nitty gritty:

#Insert logo and title $sheet -> Range("1:1") -> {RowHeight} = 60; $sheet -> Range("F1:S1") -> Font -> {Name} = "Arial Rounded MT B +old"; $sheet -> Range("F1:S1") -> Font -> {Size} = 36; $sheet -> Range("F1:S1") -> Font -> {Bold} = True; $sheet -> Range("F1:S1") -> {MergeCells} = True; $sheet -> Range("F1:S1") -> {HorizontalAlignment} = xlCenter; $sheet -> Range("F1:S1") -> {VerticalAlignment} = xlCenter; $sheet -> Range("F1:S1") -> {Value} = "Great Job!";
To get around this rather than use the whole row, I've just offset the title and left it left-justified, and hopefully it won't look too awful in common monitor resolutions.

In reply to Re^2: Another Excel/OLE question. by Morellio
in thread Another Excel/OLE question. by Morellio

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.