Excel Gridlines

I want to export a report as a MS Excel 97-2000 (XLS) file, from InfoView, with gridlines. However, unlike the Excel export in CR, InfoView's does not have an option to display gridlines. How do I make this option available?
Thanks,
Arnel

Amel,
  You are exporting a report from Infoview to excel format and when you open it in excel there are no gridlines?  Can you please clarify the workflow to make sure I undserstand correctly?
  The option to display gridlines is set in the actual crystal report. 
1.  Open the report from the designer
2.  Select  FILE --> EXPORT  --> Report Export Options
3.  Choose EXCEL and click OK
4.  In the Dialog check the box reading "Show Gridlines"
5.  Publish to Enterprise (unless you opened it from Enterprise)
The export settings are stored with the report at this point  and export to Excel format should include gridlines.
As a reminder,  the displaying of gridlines in excel is an option to the Excel program.  Make sure that is set.

Similar Messages

  • Displaying Excel Gridlines

    Hi,
    I have Office 2004 installed on MacPro with Leopard 10.5.7
    When I open a new Excel file and start using it, NO gridlines are displayed (the View Gridlines checkbox is checked).
    I have to go to Excel->Preferences and change the Gridlines colour from Automatic to Black (even though the automatic colour is apparently black). Then I get Gridlines displayed in dotted black lines in the current sheet.
    However, this will only be for the current sheet - I have to do this on all sheets and all Excel files to view gridlines.
    Doe anyone else get this?
    Does anyone know how to resolve it? To get gridlines displayed automatically in black?
    Perhaps changing the default colour of gridlines? how?
    Thanks,
    Richard

    Since Excel is not made by Apple please post related questions on Microsoft's own forums for the Mac version of Excel, as Apple discussions only provide support for Apple products:
    http://www.officeformac.com/productforums

  • Display Excel gridlines on data export

    I am exporting my query data to excel, but when I do it removes the gridlines (the faint lines that are on by default when you open Excel).  How can I add these back when I do the export?
    Thanks

    I'm sorry to but it not resolved the problem too (additional information on last edited)
    but thanks on the reply anyway

  • Printing excel grid lines

    I just installed an HP All-in -One Desket printer, Envy 3350.  I downloaded the software from the WEB as instructed. When I print an Excel spreadsheet with print grid lines selected, only everyother horizontal grid line is printed.  All vertical grid lines print as expected.  I have Windows Vista Home Premium as my operating system.  I had no such issue with my previous DELL printer.  I suspect there is a selection in one of the set-up options that needs to be checked/changed.  I have tried to find such an option, but have not been successful.  Any suggestions?? 

    Hello,
    Please click Printing Excel Gridlines Office 2007   to access the steps that should resolve the issue .
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

  • HP OfficejetJ6480 all in one

    When I print excel double sided the printer randomly skips printing one or two of 
    the excel gridlines.
    This does not happen with single sided printing only double sided printing

    Try printing in "Best" quality as a test.  If this resolves the issue then it is likely you have some blocked nozzles in the printhead.  In this case try the steps shown here for troubleshooting, particularily the steps in Solution 4.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Crystal Report 10 Export Excel (with gridlines)

    Post Author: Angel Tam
    CA Forum: JAVA
    Hi,I am now using Crystal Report 10 with Java to export the report to excel format.  I can do it successfully but all the gridlines (border) are lost.  Is anybody know how to set this feature.  My source code is as follows.<%@ page contentType = "text/html; charset=UTF-8"%><%@ page import = "com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,                   java.util.,                   java.io.,                   javax.servlet.,                   javax.servlet.http.,                   com.crystaldecisions.sdk.occa.report.application.,                   com.crystaldecisions.sdk.occa.report.lib.ByteArray.,                   com.crystaldecisions.sdk.occa.report.exportoptions.,                   com.crystaldecisions.sdk.occa.report.lib." %><%/******************************************************************************************** *                Exporting the report to desired format and destination ********************************************************************************************/// Declare the PrintOutputControllerPrintOutputController poController;try {        // Retrieve the ReportClientDocument object from session        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute("rptDoc");        // Clear ReportClientDocument object from session cache        session.setAttribute("rptDoc", null);                               // Get the print output controller object    poController = clientDoc.getPrintOutputController();     // Use the report documents PrintOutputController to export the report to a ByteArrayInputStream    // Change the int value to a ReportExportFormat    ByteArrayInputStream byteIS = (ByteArrayInputStream) poController.export(ReportExportFormat.MSExcel);    // Portable Document Format    String strExt = ".xls";                // Exported File Extension    String strMime = "application/vnd.ms-excel";    // Mime Type        // Create a byte&#91;&#93; (same size as the exported ByteArrayInputStream)    byte byteArray&#91;&#93; = new byte&#91;byteIS.available()&#93;;    // Copy the contents of the ByteArrayInputStream into a byteArray&#91;&#93;    int x = byteIS.read(byteArray, 0, byteIS.available());     response.reset();    // Clear out response stream            // Set the browser's mime type    response.setContentType(strMime);    response.addHeader("Content-disposition", "inline; filename=exported" + strExt);    // Use the SevletOutputStream to send the byteArray's data to the browser    response.getOutputStream().write(byteArray); } catch (Exception e) {    out.println("An error has occurred while exporting the report.<BR>" + e.toString());    out.println(e);}%>----
    I think these few lines may be useful to do the setting but I don't really how to use.  Hope somebody can help me.  Thank you.ExcelExportFormatOptions XLExpOpts = new ExcelExportFormatOptions();XLExpOpts.setShowGridlines(true);ExportOptions exOpts = new ExportOptions();exOpts.setFormatOptions(XLExpOpts);exOpts.setExportFormatType(ReportExportFormat.from_int(ReportExportFormat._MSExcel));Angel

    Post Author: Angel Tam
    CA Forum: JAVA
    Hi,I am now using Crystal Report 10 with Java to export the report to excel format.  I can do it successfully but all the gridlines (border) are lost.  Is anybody know how to set this feature.  My source code is as follows.<%@ page contentType = "text/html; charset=UTF-8"%><%@ page import = "com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,                   java.util.,                   java.io.,                   javax.servlet.,                   javax.servlet.http.,                   com.crystaldecisions.sdk.occa.report.application.,                   com.crystaldecisions.sdk.occa.report.lib.ByteArray.,                   com.crystaldecisions.sdk.occa.report.exportoptions.,                   com.crystaldecisions.sdk.occa.report.lib." %><%/******************************************************************************************** *                Exporting the report to desired format and destination ********************************************************************************************/// Declare the PrintOutputControllerPrintOutputController poController;try {        // Retrieve the ReportClientDocument object from session        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute("rptDoc");        // Clear ReportClientDocument object from session cache        session.setAttribute("rptDoc", null);                               // Get the print output controller object    poController = clientDoc.getPrintOutputController();     // Use the report documents PrintOutputController to export the report to a ByteArrayInputStream    // Change the int value to a ReportExportFormat    ByteArrayInputStream byteIS = (ByteArrayInputStream) poController.export(ReportExportFormat.MSExcel);    // Portable Document Format    String strExt = ".xls";                // Exported File Extension    String strMime = "application/vnd.ms-excel";    // Mime Type        // Create a byte&#91;&#93; (same size as the exported ByteArrayInputStream)    byte byteArray&#91;&#93; = new byte&#91;byteIS.available()&#93;;    // Copy the contents of the ByteArrayInputStream into a byteArray&#91;&#93;    int x = byteIS.read(byteArray, 0, byteIS.available());     response.reset();    // Clear out response stream            // Set the browser's mime type    response.setContentType(strMime);    response.addHeader("Content-disposition", "inline; filename=exported" + strExt);    // Use the SevletOutputStream to send the byteArray's data to the browser    response.getOutputStream().write(byteArray); } catch (Exception e) {    out.println("An error has occurred while exporting the report.<BR>" + e.toString());    out.println(e);}%>----
    I think these few lines may be useful to do the setting but I don't really how to use.  Hope somebody can help me.  Thank you.ExcelExportFormatOptions XLExpOpts = new ExcelExportFormatOptions();XLExpOpts.setShowGridlines(true);ExportOptions exOpts = new ExportOptions();exOpts.setFormatOptions(XLExpOpts);exOpts.setExportFormatType(ReportExportFormat.from_int(ReportExportFormat._MSExcel));Angel

  • White Gridlines in MS Excel

    Hello
    One of our PowerrBook G4 Computer has a small problem.
    In Excel all the gridlines are white. When I go to the settings, the color of the grid is set to automatic (Automactic is black). When I switch to the black, the grid is availible.
    I need to switch the grid color from automatic to black for every new file. How can I solve this problem? I am sure it has something to do with some settings file of Microsoft but I have no Idea which while is responsible for this error.
    Do someone has a solution?
    Regards
    Gérard

    Perhaps you should try resetting Excel's preferences. Close all Microsoft Office applications.
    Go to your Home Folder (the one with your name), then Library, then Preferences, then Microsoft:
    Delete the file 'com.microsoft.Excel.prefs.plist' (a new one will be created next time you open Excel).
    Open Excel again and reset your preferences: both the Excel Preferences as well as the toolbar preferences.
    This should cure the problem.

  • Numbers to Excel. Gridlines still printing after BORDERS cleared.

    I prepared a document in Excel. I then worked on it in numbers. Everything was OK. When I opened it up in Excel as an XLS document I could not print without the gridlines. Researching it on the forums I noticed that I should clear borderes. That works when I am looking at it on the computer. No borders. However, when I try to print or do a print preview I see the gridlines. I am using Office 2010 for PC and the latest Numbers on my iPad and Mac.
    Thank

    Hi,
    As per the description, I think the cause is most likely on the printer side, I would suggest you switch to different printer and see if issue persists.
    Also, issue happens with 64-bit version of Office, probably an compatibility issue between the Printer driver and the 64 bit Office. Try to swatch to 32 bit of Office, then verify result.
    As per Microsoft, they highly recommend 32 bit version of Office, as not all other products/drivers are compatibility with 64 bit of Office.
    A.B.

  • Disabling gridlines when saved to excel from WEBI

    when a report is saved to excel format from WEBI(Business Objects 6.5).
    Is it possbile to disable the gridlines in excel ? I

    Gangise,
    Is it possbile to disable the gridlines in excel ? I
    Are you meaning to have the gridlines not appear at all, or to turn them off once you open the worksheet in Excel?  To turn off gridlines once you've opened it in Excel, you can click on the "master cell" (this is the cell above and to the left of A1), then right-click and choose "format cells", then at the format cells menu choose "Border", then choose preset "none", click ok, and voila, all borders are removed...
    Thanks,
    John

  • I copy and paste excel tables into my yahoo email using firefox as my browser, but firefox is not preserving the cell gridlines and colors... how can I do this?

    i use yahoo for email. I often send spreadsheets inline in yahoo, and before i used firefox, the gridlines and cell colors copied into my yahoo email (inline). Now with firefiox I am losing the gridlines and colors. I looked in Firefox options but did not see an option to check for this. Please help

    You can look at:
    *Dafizilla Table2Clipboard: https://addons.mozilla.org/firefox/addon/1852

  • Numbers Gridline Problem

    How do I get NUMBERS to replace missing gridlines in part of a spreadsheet? Copying to a new blank sheet or to an Excel sheet
    doesn't work.

    Hi Peggy,
    There are a couple of places you can go to manage gridlines.
    Here with the table or row or column or cell selected you can change  things including choosing "default" under the line popup.
    Here you can select/deselect gridlines or even choose a style for the whole table.
    quinn

  • Excel spreadsheet not printing correctly

    Recently bought a Envy 4500 all in one printer that my son installed. Everything works except for one thing on my excel spreadsheets.
    1. Every horizontal line is not printing, so I get larger boxes with two lines of print within.
    Thanks for your help....pjh
    This question was solved.
    View Solution.

    Probably more reading than you want to do (and not sure if you're using Excel 2010), but I found this:
    http://answers.microsoft.com/en-us/office/forum/office_2010-excel/in-excel-2010-cannot-get-gridlines...
    And maybe the Reader's Digest version of a solution?
    After much wailing and gnashing of teeth, and a small rain forest later this suggestion works:
    On existing Excel 2010 Spreadsheets
    In the Excel 2010 document, Print Preview and Print>Printer Properties>Advanced>Document Options>Print Optimizations: change setting to Disable. Save the file.
    Hopefully to work on new Excel 2010 Spreadsheets
    My computer>printers, or printers and devices>printer preferences, change 'Printer Optimization' from 'Enabled' to 'Disabled', then apply.
    Fingers crossed this will work on new spread sheets.

  • Web Printing With Excel

    I'm trying to web printing with excel. I implemented the classes and also applied to code that appears in the how to document.
    The problems comes that some of the code such as footer works and all others doesn't work. Any ideas how this work?
    <HTML>
    <!-- BW data source object tags -->
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_DATA_PROVIDER"/>
             <param name="NAME" value="DP"/>
             <param name="QUERY" value="ASXNAMCUBE_I_SMC_505"/>
             <param name="INFOCUBE" value="SXNAMCUBE"/>
             DATA_PROVIDER:             DP
    </object>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_PROPERTIES"/>
             <param name="TEMPLATE_ID" value="Z_WEB_PRINTING"/>
             <param name="USE_PERSONALIZATION" value="X"/>
             <param name="VARIABLE_SCREEN" value="X"/>
             <param name="VARIABLES_CLEAR" value="X"/>
             <param name="ENABLE_OPEN_WINDOW" value="X"/>
             <param name="NO_SESSION_COOKIE" value="X"/>
             <param name="MENU_EXCHANGE_OBJECTS" value="X"/>
             <param name="MENU_CALCULATE_RESULT" value=""/>
             <param name="MENU_CALCULATE_VALUE" value=""/>
             <param name="MENU_BOOKMARK" value="E"/>
             <param name="MENU_PERSONALIZE" value="E"/>
             <param name="MENU_VARIABLE_SCREEN" value="X"/>
             <param name="USE_PAGE_WRAPPER" value="X"/>
             <param name="RRI_DISPLAY_TARGET" value=""/>
             <param name="ENHANCED_MENU" value="X"/>
             <param name="SNIPPET_OPERATIONS" value=""/>
             TEMPLATE PROPERTIES
    </object>
    <HEAD>
    <META NAME="GENERATOR" Content="Microsoft DHTML Editing Control">
    <TITLE><object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TEXTELEMENTS_6"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="GENERATE_LINKS" value=""/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="SHOW_COMMON_ELEMENTS" value=""/>
             <param name="SHOW_FILTERS" value=""/>
             <param name="SHOW_VARIABLES" value=""/>
             <param name="ELEMENT_TYPE_1" value="COMMON"/>
             <param name="ELEMENT_NAME_1" value="REPTXTLG"/>
             <param name="ONLY_VALUES" value="X"/>
             ITEM:            TEXTELEMENTS_6
    </object></TITLE>
          <link href="/sap/bw/Mime/BEx/StyleSheets/BWReports.css" type="text/css" rel="stylesheet"/>
          <link href="/sap/bw/Mime/BEx/StyleSheets/BWReports.css" type="text/css" rel="stylesheet" media="print"/>
    </HEAD>
    <BODY>
    <table width="100%" cellspacing="0" cellpadding="5" border="0">
    <TR>
        <TD vAlign=top><P align=left><IMG src="/sap/bw/Mime/BEx/Icons/kcc20white2.gif"></P></TD>
    <TD vAlign=top>
          <P align=center><FONT face=Arial color=#000000 size=5><STRONG>
    <!-- Text Element --->
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TEXTELEMENTS_3"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="GENERATE_LINKS" value=""/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="SHOW_COMMON_ELEMENTS" value=""/>
             <param name="SHOW_FILTERS" value=""/>
             <param name="SHOW_VARIABLES" value=""/>
             <param name="ELEMENT_TYPE_1" value="COMMON"/>
             <param name="ELEMENT_NAME_1" value="REPTXTLG"/>
             <param name="ONLY_VALUES" value="X"/>
             ITEM:            TEXTELEMENTS_3
    </object></P></STRONG></FONT></TD>
    <TD vAlign=top>
    <!-- Display Report Date Information --->
    <P align=right>
    <FONT color=#000000>
    Report Date:
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TEXTELEMENTS_4"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="GENERATE_LINKS" value=""/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="SHOW_FILTERS" value=""/>
             <param name="SHOW_VARIABLES" value=""/>
             <param name="ELEMENT_TYPE_1" value="COMMON"/>
             <param name="ELEMENT_NAME_1" value="SRDATE"/>
             <param name="ONLY_VALUES" value="X"/>
             ITEM:            TEXTELEMENTS_4
    </object>
    </FONT></P>
    </TD></TR>
    </table>
    <table><tr><td class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0">
    <table><tr><td class="SAPBEXBtnStd" cellspacing="0" cellpadding="0" border="0">
    <A href="<SAP_BW_URL CMD='PROCESS_HELP_WINDOW' HELP_SERVICE=HELP_SERVICE='HELP_SERVICE_PRINT' ITEM='TABLE_1' SUBCMD='PRINT_EXCEL'>">Web Printing with Excel</A>
    </td></tr></table>
    </td></tr></table>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1GR2NavBlock"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_NAV_BLOCK"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="CLOSED" value="X"/>
             <param name="WIDTH" value="600"/>
             <param name="HORIZONTAL_NUMBER" value="2"/>
             <param name="FILTER_VALUE_LENGTH" value="20"/>
             ITEM:            GR1GR2NavBlock
    </object>
    <table>
    <tr>
    <td valign="top">
    <!-- Filter Values --->
    <FONT face=Arial color=#000000 size=1>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1Filter_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="SHOW_COMMON_ELEMENTS" value=""/>
             <param name="SHOW_VARIABLES" value=""/>
             <param name="ONLY_VALUES" value="X"/>
             ITEM:            GR1Filter_1
    </object>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="GR1Filter"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="BORDER_STYLE" value="NO_BORDER"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="GENERATE_LINKS" value=""/>
             <param name="ONLY_VALUES" value="X"/>
             ITEM:            GR1Filter
    </object>
    </FONT></td>
    </tr>
    </table>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TABLE_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="HELP_SERVICE" value="HELP_SERVICE_PRINT"/>
             <param name="HELP_SERVICE_CLASS" value="ZCL_RSR_XLS_HELP_WINDOW_PRINT"/>
             ITEM:            TABLE_1
    </object>
    <STYLE type=text/css media=print>
    @page
    {mso-headerdata:"&L&G&C&\0022Arial\,fed\0022&12&[DP/REPTXTLG]";
    mso-footer-data:"&R&P\/&N";
    margin:1.0in .75in 1.0in .75in;
    mso-header-margin:.5in;
    mso-footer-margin:.5in;
    mso-page-orientation:landscape;}
    <x:print>
    <x:headerpicture>
    <x:location>Left</x:Location>
    <x:source>http://www.sap.com/global/images/sap_logo.gif
    </x:Source>
    <x:height>24.75</x:Height>
    <x:width>86.25</x:Width>
    <x:lockaspectratio/>
    <x:colortype>Automatic</x:ColorType>
    <x:fitwidth>2</x:FitWidth>
    <x:fitheight>2</x:FitHeight>
    <x:gridlines/>
    </x:HeaderPicture>
    </x:Print>
    <x:pagebreaks>
    <x:colbreaks>
    <x:colbreak>
    <x:column>9</x:Column>
    <x:rowend>78</x:RowEnd>
    </x:ColBreak>
    </x:ColBreaks>
    <x:rowbreaks>
    <x:rowbreak>
    <x:row>42</x:Row>
    <x:colend>15</x:ColEnd>
    </x:RowBreak>
    </x:RowBreaks>
    </x:PageBreaks>
    <x:colwidths>
    <col style='mso-width-source:auto'>
    <col style='mso-width-source:auto'>
    <col style='mso-width-source:auto'>
    <col width=200 style='mso-width-source:userset'>
    <col width=100 style='mso-width-source:userset'></x:ColWidths>
    <x:repeatedrows>
    $2:$2</x:RepeatedRows>
    <x:repeatedcols>
    $B:$B</x:RepeatedCols>
    <x:bw>
    <hierarchy_icons hide= designtimesp=26251></x:BW></style>
    </BODY>
    </HTML>
    Thanks,
    Teresa.

    Did you ever get your web template to print properly?
    Regards,
    Jay

  • Cannot get an invoice created with IWork Numbers to open correctly in Excel

    I used the Template in Numbers to create an invoice,and it's great.
    However, I cannot seem to open this file in Excel no matter how I send it, no matter how I save it.
    Have saved as windows friendly, have saved as Excel file.
    I have to be able to have these opened by others with Excel and/or OpenOffice and, Office staff must be able to work with the file to update/modify invoices.
    I even tried Pdf and Adobe Acrobat Pro thinking they would be able to do data entry that way-No luck.
    Desperately need a solution or a year of working with IWork is going to be lost.
    We have now added staff, and in other locations, and have to be able to work across platforms.
    No problems importing Office files of any type, but have to be able to export as well and have cells and formatting remain workable.
    I can open the files in Excel but they are unusable, in several pages, basically no invoice template left.
    Thanks for any help.
    Charles1

    If you are getting three Excel worksheets, the export is working as designed. You have to remember that the heart of an Excel worksheet is a monolithic table. Everything is aligned in a tabular grid. Numbers, on the other hand, allows you to have multiple tables on the same sheet that have different column and row widths and the tables can be placed wherever you like, offset from the other tables by whatever amount you desire in any direction you desire. The invoice template is a good example; the two tables are very dissimilar in format and in column widths. If Numbers was to export the two tables from the invoice template into a single sheet of an Excel workbook, which column widths would it use? The ones from the first table or the ones from the second? No matter which it chose, the result would be quite different from what is in Numbers. Now include some text boxes, graphics or charts. With the tables moved around and resized to align to the Excel grid, these other items would also have to be moved around. But to where. It would be impossible to make an exported file look anything like it did in Numbers except in specific instances. This is why Numbers creates separate Excel sheets when it converts to Excel.
    I know that diatribe did not help you solve your problem. To solve your problem, everything must be designed as one table in Numbers. Here is how you can do it. It is a bunch of steps but is really simple to do.
    1) Select all the rows from the first table.
    2) Drag them sideways out of the table and drag them to the second table, inserting them just below the first row. I think this is explained in the Numbers User's Guide.
    3) Add a new row below the rows you just inserted (this will become your new row 8)
    4) Select the cells in row 1. Copy. Paste to your new row 8.
    5) Delete row 1
    6) Go to the Table Inspector and turn on Name (check the checkbox). Name it Invoice.
    7) Back at the table, deselect the table if it is still showing the column letters and row numbers in order to see the table name
    8) Click twice on the table name above the table to select it. It will box it in, it does not select the text.
    9) On the toolbar, change the font size and color and set it to left justification.
    10) Delete the textbox with the word "Invoice" in it.
    11) Delete the textbox with "sincerely yours ... Your name". Or, if you want to keep it, add another footer to the table, increase the height of that new footer and type "Sincerely yours," and your name in there. Note that you use option-return to create the linefeeds in the cell.
    12) Select the table and slide it up toward the top of the sheet.
    13) Adjust the column widths as best you can. I increased the column width of column B and right justified the text in cells A1-A6 and C1-C6 to get it looking okay. You might, instead, choose to insert a column or two and merge some cells together to align everything like you want it. And you might choose to add a row or increase the gridline width between the top half and the bottom half. I did not do those last few things. You can play around to get the design you like best.
    The export looked almost exactly like the Numbers document.
    Message was edited by: Badunit

  • Align gridlines

    Hello All. With the help of this board I have managed to plot both my data sets on the same graph. I have a request. Is it possible to force the right y-axis to use the gridlines of the left y-axis?
    Basically I have a predictable range on the left and have this programatically set to have a consistant and readable number of gridlines. The right is less predictable, so I have been using the autoscale function, but it likes to add a whole bunch of differently spaced gridlines. 
    Is there a way to autoscale with a certain number of gridlines (say 20?) so that the gridlines on my two axes match even though one is autoscaled and one is not? 
    Also, would it be possible to keep the min value 0? Basically just autoscale greater than zero?
    Thanks,
    Nukem.
    LabVIEW 2010

    Is your right graph Y-axis one that is going to be re-autoscaling frequently? If not, I'd suggest manually autoscaling it (find max, min of data, pick good max, min for axis [for example not -4.573 to +132.05] and figure out the interval for X gridlines, which you'd just calculate from your left Y-axis data. It's really pretty straightforward. (I stopped using a program's native autoscaling when I can avoid it many years ago when I used Excel a lot for presentations - 'nuf said.)
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ

Maybe you are looking for

  • Problem in smartforms

    Hi I am trying smartforms in that i am facing one problem I have define 2 tables  say MARA & MAKT and I want to Print matnr & maktx on the form.     in Form I am defining itab & jtab in form interface-table also in global definations workarea for bot

  • Question about including JQuery in a Survey list DispForm.aspx page

    In SharePoint 2010, I was able to hide the links for editing, deleting... an existing survey entry in the DispForm.aspx page using the following technique: 1 - Save jquery .js file to the Style Library in the top level site 2 - Save the .js file that

  • Not able to create new repository

    H, While creating the new repository under Virtaul Content Repository, i am getting follwing error. Please help The Repository class: com.documentum.beaspi.webcache.WebCacheRepository is not a valid implementation. Please check your classpath. I have

  • Why can't I attach a PDF to a gamail message?

    I have Window 7, Internet Explorer 10, gmail and recently downloaded Adobe Reader XI.  I am now unable to attach a PDF file to a gmail message.  Why?

  • Airport Client Monitor for Intel

    It appears that the ever-useful Airport Client Monitor does not work on Intel Macs. Am I wrong - is there a universal version? I've just found a donationware utility "AP Grapher" that may be a useful substitute available here: http://www.chimoosoft.c