There evidently are two code paths for creating a Microsoft RTF file in Notes. If you use the client, select File Export to Microsoft RTF, any tables in your messages come out about as you had them in the message. If you get the body richtext as an LNRichText object, and then call its Export method, the table ends up with right margins set funny in many cells so that the text becomes vertical rather than horizontal. If you find a table with cursor.GotoNext(LNRTTYPE_TABLE…) and invoke SetWidthType(LNTABLEWIDTHTYPE_FIT_MARGINS), the resulting RTF has the table drool down multiple pages like icicles, as it does if you manually iterate through the table cells, setting their widths with table.SetColumnWidth(index, newWidth). This has been an issue with Notes RTF output since at least v6; I can’t believe that it has not been addressed before now. Am I doing something wrong?