> I have some text in an Excel Worksheet that I need to transfer to a
> slide title in powerpoint.
[quoted text clipped - 11 lines]
>
> Any help would be greatly appreciated.
I'm guessing that Excel embeds a special character in the text to indicate the
linebreak. Use something like this to work out what it is:
For x = 1 to Len(ExcelText)
Debug.Print Asc(Mid$(ExcelText,X,1))
Next
Then (assuming you use PPT2000 or higher) use this before assigning sTitle to
the text range:
sTitle = Replace(sTitle, ExcelLineBreakCharacter, Chr$(11))
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================