Numbers - Printing Table Formatting Help?

For the past few months, I've been transitioning my MS Office Access databases over to Numbers on my new MBPro - one database is 'Wine Recommendations' which I keep tract of possible purchases from several publications that I receive - the attached screen capture shows the top first page converted into Numbers.
In Access, I was able to eliminate 'duplicate' printing of the same entries in the columns desired, e.g. under 'Origin', the first Au-NZ printed but not the same following ones; in 'Type' the grapes first appearance would print but not the identical names below (same for the 'Year'). I've figured out out to do repetitive sorts on those 3 columns, but cannot find a way to eliminate 'duplicate' printing of the same entries.
So, is this possible in Numbers? Thanks for comments & suggestions. Dave

Hi Dave,
A fellow Access user (refugee?) in these parts!  Filemaker is good for this, of course. But here is quite an easy spreadsheet hack to achieve the effect. No fiddling with database report writing or grappling with advanced functions in reference manuals. I've used this in Excel and it ports quite well to Numbers.
The basic idea: Insert "display" columns to the left of your original data, each filled with a simple formula that shows "a blank" if it sees a "duplicate" or the value if it's a "new" value. When you want to view or print your data just "hide" the original columns with repeating values that you want to suppress. When you need your "full table" back (to sort, filter, whatever) unhide those original columns.
Here you need three new columns and a short formula in each. That's about it.
First, insert three columns to the left of your original data.
Then add the three formulas. I'll start with the formula in column B, because it's the basic "duplicate" killer.
In B4 enter this formula, filled down:
=IF(E4=E3,"",E4)
All this does is show a "blank" if it sees that the value in this row of column E (Type) is the same as the value on the previous row (i.e. it's a "duplicate"). Otherwise it shows the value it finds in column E.
In column A4 enter this formula, filled down:
=IF(B4<>"",D4,"")
This shows what's in column D if there is something in column B; otherwise it shows a "blank"...This seems to be what you wanted in your example. If you want Origin to show only once then you would have =IF(D4=D3,"",D4), exactly the same pattern as in B.
And in C3 insert a slightly more complicated formula, filled down:
=IF(AND(F4=F3,B4=""),"",F4)
This shows a "blank" if the value in column F (Year) is the same as in the previous row AND there is nothing in column B. Otherwise it shows the value it finds in column F on that row.
Now, when you want to print or view your data, just hide columns D, E, and F.
If you've got lots rows to view on screen, you may want to freeze the header rows.
Unhide the columns when you need the "full table" to sort/resort, etc.
You can sort, etc. in the Reorganize Panel:
Final notes:
-- Numbers (unlike Excel) sometimes "scrambles" the formula row references after sorting/resorting. If that happens, just copy/paste A4:C4 from a backup table into row 4 and fill down and all will be well again.
-- And probably best not to used merged cells, even in the header. Merged cells look nice, but cause unexpected problems.
Not fancy. Probably more elegant ways. But it gets the job done in a spreadsheet without much fuss.
SG

Similar Messages

  • SQL TABLE FORMATING - HELP!!!!

    I've retrieving a set of data and need to add a blank line under the results then sum the total of one calculated column. Can anyone tell me how to add a blank line at the end of a query???

    Hi
    For 8i or +...
    Example: select owner, count(*) from all_objects group by rollup (owner)

  • Using Pages, I have created a document and inserted a Table for use in logging an inventaory. When I came to print this off however the lines for the table were missing but the text was in the Table format, weird! How do I print the Table?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

  • P S 11 Manual?  printed 407 pages,  no page numbers, no index, no help.?

    P S 11 Manual????  Printed 407 pages;    no page numbers, no index, no help? Why

    Sorry, but I don't know anything to suggest, unless you know someone who has a copy of acrobat pro or something like that, and then you'd still need to use the pdf to search for topics. I think PSE 2 or 3 was the last version to come with a real manual.
    There are a great many video tutorials on the web and a large number of printed books you can purchase about PSE, including one from adobe.

  • Table format problem - Please help

    Here is what I am trying to do:
    I have a set of documents in xml fomrat following the docbook standard.  In these documents there are too types of table.  The standard table with its element tag TABLE and an informal table with element tag INFORMALTABLE.
    When these are opened and my format file and EDD applied I want the Standard Tables to have a blue shaded header and the Informal Tables to have a grey shaded header.  I have created the appropriate table templates.  I cannot figure a way via the EDD to specify the table format type that works.  When I open an xml and apply the edd and the format all the tables open using the table format that is first in the list.
    What can I do to the EDD to achieve my goal?
    Thank you in advance

    Russ,
         Thanks for letting me know my messages were not getting through. I just replied to the original rather than going through the forums interfaces and had no idea there was a problem. I attempted to post twice on this thread today:
        The messages were:
    Russ,
       You are correct. An EDD can specify an initial table format. The word "initial" is key. It is the format that is used when a new table is created, whether the new table is created interactively by the user or by opening an SGML or XML document. Initial table formats do not affect existing tables. In fact, for a table created interactively, the initial table format determines the format that is highlighted when the Insert Table dialog first comes up. The user is free to choose another format if desired.
        and
    Qualar,
        R/w rules are not context sensitive so that if you are using a tgroup element within FM, they will not be able to help. The definition of tgroup in your EDD can set an initial table format of Format A if the tgroup is within the table element and Format B if the tgroup is within informaltable. Just make sure you have imported the EDD into the template before opening the XML document. As you've noticed, if you open the XML document and then import the EDD, the tables already exist and their format is not affected.
              --Lynne

  • HELP! Displaying results from a database in table format

    I'm developing a web application that will use a considerable number of database queries that need to be displayed back to the web-browser in HTML table format.
    I have been told that that result sets can allow tables to be built automatically without having to write the same loop and display code over and over.
    So far I have a HtmlResultSet class as follows:
    import java.sql.*;
    public class HtmlResultSet {
    private ResultSet rs;
    public HtmlResultSet(ResultSet rs) {
    this.rs = rs;
    public String toString() {  // can be called at most once
    StringBuffer out = new StringBuffer();
    // Start a table to display the result set
    out.append("<TABLE>\n");
    try {
    ResultSetMetaData rsmd = rs.getMetaData();
    int numcols = rsmd.getColumnCount();
    // Title the table with the result set's column labels
    out.append("<TR>");
    for (int i = 1; i <= numcols; i++) {
    out.append("<TH>" + rsmd.getColumnLabel(i));
    out.append("</TR>\n");
    while(rs.next()) {
    out.append("<TR>"); // start a new row
    for (int i = 1; i <= numcols; i++) {
    out.append("<TD>"); // start a new data element
    Object obj = rs.getObject(i);
    if (obj != null)
    out.append(obj.toString());
    else
    out.append(" ");
    out.append("</TR>\n");
    // End the table
    out.append("</TABLE>\n");
    catch (SQLException e) {
    out.append("</TABLE><H1>ERROR:</H1> " + e.getMessage() + "\n");
    return out.toString();
    I also have created a class that includes an instance of the class above to display the results, as follows:
    import java.io.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class customerLookup2 {
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    Connection con = null;
    Statement stmt = null;
    ResultSet rs = null;
    res.setContentType("text/html");
    PrintWriter out = res.getWriter();
    try{
    Class.forName("org.gjt.mm.mysql.Driver");
    con = DriverManager.getConnection("jdbc:mysql://localhost:3306/sandywalker");
    out.println("<html>");
    out.println("<head><title> Users</title></head>");
    out.println("<body> Customers");
    HtmlResultSet result = new HtmlResultSet ("SELECT * FROM USERS");
    out.println("</body></html>");
    catch(ClassNotFoundException e ) {
    out.println("Couldn't load database driver: " + e.getMessage());
    catch(SQLException e) {
    out.println("SQLExeption caught: " +e.getMessage());
    finally {
    try {
    if (con !=null) con.close();
    catch (SQLException ignored) { }
    I keep getting a compile error "customerLookup2.java": Error #: 300 : constructor HtmlResultSet(java.lang.String, java.sql.Connection) not found in class HtmlResultSet at line 42, column 34".
    Can anyone shed any light on this.

    Looks like you are passing a string (SELECT * FROM USERS) instead of passing a ResultSet. Try passing a Resultset.

  • Help retreiving XML data in table format

    Hello,
    i have a field which stores IP and Domain data in XML format. The field data type is BLOB.
    here is the XML data sample stored in the field.
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <DOMAIN Name="DOMAIN_NAME HERE">
    <IPADDRESS Address="X.X.X.X1"></IPADDRESS>
    <IPADDRESS Address="X.X.X.X2"></IPADDRESS>
    <IPADDRESS Address="X.X.X.X3"></IPADDRESS>
    <IPADDRESS Address="X.X.X.X4"></IPADDRESS>
    ... ETC
    Is it possible to run SELECT against this field and retrieve the data in the table format, so the output will have two fields and look like
    domain IPADDRESS
    DOMAIN_NAME HERE X.X.X.X1
    DOMAIN_NAME HERE X.X.X.X2
    DOMAIN_NAME HERE X.X.X.X3
    DOMAIN_NAME HERE X.X.X.X4
    I have tried many option with Extract, extractvalue and XMLQuery, not luck.
    Thank you very much!
    Sergei

    Try...
    xp20:format-dateTime(string($dateFromDatabase), '[D01]-[MN,*-3]-[Y0001] [H01]:[m01] P')Ref
    http://www.w3.org/TR/xslt20/#function-format-dateTime
    Cheers,
    Vlad

  • Change column width for print table to report

    Hi, want to make the first column in my table to be printed to report wider than the rest, for it contains the part numbers of about 16 chars and the other columns are the data of 4 each. Don't want to make all equally wide for I want to fit as many column as possible over the page. How can I do this?? Thanks for any help. Is there maybe another way to print in a table format?? Madri

    Hi Madri,
    Assuming you are using the Standard Report type with the Report Generation VIs, you can check out this KnowledgeBase entry that discusses how to customize the VI to generate a report with different column widths:
    http://digital.ni.com/public.nsf/websearch/7AEC2CC2618D47DF86256D280058BDA5
    Hope this helps,
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Address book report in table format

    I would like to print an address book for my planner in a table format. I can not get address book to print the information I want in a table (2 columns with several rows, dependent upon the paper size - 1/2 sheet). I have created a data base, and tried the reports, but I get one card per page instead of in a table format of several cards per page. More specifically, what I want is name, address, and general info in one columnn, and phone numbers in the other column, with several individuals on one page.
    imac   Mac OS X (10.4.9)  

    Hi bmj,
    Welcome to Apple Discussions and the AppleWorks forum.
    If your Address Book is an AppleWorks database, you've come to the right place, as this forum is for discussion of tips, techniques and issues with Apple's productivity application AppleWorks.
    But if you are asking how produce this list using the Address Book application bundled with current iMacs and other current Macs, that's outside the scope of this forum.
    I'm working on the assumption that you're using Appleworks.
    [W]hat I want is name, address, and general info in one column, and phone numbers in the other column, with several individuals on one page.
    The kicker here is going to be "General information." While each of the other pieces of information will take more or less the same amount of space in each record, the amount of "General information" will vary widely.
    While AppleWorks DB screen layouts can handle this by expanding a field to show its contents when the insertion point is placed in the field, layouts for printing do not have this flexibility the amount of space you allocate for a field is fixed when you create (or edit) the layout, and every record gets the same amount of space, whether the data leaves a large white space or fills the space (with some data hidden because it's too large).
    Given that restriction, you can set your layout up as either a Columnar report or as a Labels Layout. My preference would be the latter.
    Before doing either, I'd suggest creating two new Calculation type fields: 'Fullname' and 'CSZ'
    'Fullname' joins the contents of the 'First name' and 'Last name' fields with a space between them using this formula:
    'First name'&" "&'Last name'
    'CSZ' joins the contents of the fields 'City', 'State', and 'Zip' into a single line. Following USPS (and for my case, Canada Post) guidelines, it also converts all letters in this line to capitals, and puts two spaces to left and right of the two letter State (or Province) postal symbol. Data in the field 'State' must be the two letter symbol, not the full state name. Formula:
    UPPER('City'&" "&'State'&" "&'Zip')
    These two formulas help clean up the layout of your list, and are also useful if you later decide to make mailing labels.
    To create the printed address book using a labels layout, open your DB file, then go to Layout mode (go Layout > Layout).
    Go Layout > New Layout (Note: NOT New Labels Layout)
    Click the Labels radio button, leave the popup menu set to Custom, Click OK.
    In the Labels Layout dialogue, set Labels across the page to 1 and width to the full width of the page (minus margins). These two items are not adjustable once set.
    Increase the label height to 4 to give yourself some room to work in. (The height of each row of labels (ie. each 'card') can be adjusted at will.) Click OK.
    In the next dialogue double click each of the following field names (in this order) to move the fields from the left column to the right column.
    'Fullname'
    'Address'
    'CSZ'
    'General information'
    'Phone'
    Click OK.
    Your new layout will be created with the fields inserted onto it in a single column. Select the top four fields and resize them (width only) using the handles.
    Select and resize the Phone field, then drag it to its new position in the second column.
    Select and resize the General field to contain as much data as you expect to place there.
    Drag the Body boundary up to a position just below the General field. The position of this boundary controls the height of each card/label and the amount of space between it and the next one down the page.
    When the layout looks right, go Layout > Browse to view the results.
    You can adjust the number of cards that appear on a page by adjusting the Body boundary to make each card take more or less vertical space. You may need to also adjust the size of the fields, particularly the 'General' field and the size of type used.
    Regards,
    Barry

  • How can I convert my css code into table format?

    Wasn't sure how to word the title, but what I am trying to do is post my html code generated with Dreamweaver CS4 into craigslist for an advertisement I designed. Craigslist seems to only accept "TABLE FORMAT".  I just learned enough to design this AD using css, now do I have to go back and learn table cell coding? Is there something I am not aware of like a conversion or something that will work?
    Thank you very much for any help, I am very anxious to get my ad placed.

    Example of the accepted code:
    <table border="0" cellpadding="5" cellspacing="0" width="100%" id="table4" align="center">
    <tr><td width="125"><b><font size="2" face="Verdana">Contact Name:</font></b></td><td><font face="Verdana" size="2">Patrick</font></td></tr>
    You must have an old HTML editor because that isn't INLINE CSS CODE.  It's deprecated HTML code.  It might work OK on Craig's List... but <font> tags won't pass W3C validation in XHTML doc types.
    To express what you have above using inline CSS styles without tables would like this:
    <p style="font:16px Verdana, Arial, Helvetica, Sans-serif; text-align:center"><strong>Contact Name:</strong> Patrick</p>
    http://www.w3schools.com/CSS/css_howto.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • SAP Script - How to write data in a table format.

    Hi All,
    In my requirement, I need to show item data in a table format ( In a box, with horizental & veritcal lines.
    can somebody pl give me a small code to do this.
    Regards,
    Hardik

    Hi
    SCRIPT BOXES
    POSITION WINDOW
    SIZE WIDTH '160' MM HEIGHT '140' MM
    BOX FRAME 10 TW
    Box
    BOX HEIGHT '11' MM WIDTH '160' MM FRAME 10 TW INTENSITY 35
    linessssssss
    BOX XPOS '20' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '45' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '80' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    BOX XPOS '120' MM WIDTH 0 TW HEIGHT '140' MM FRAME 10 TW
    Boxes, Lines, Shading: BOX, POSITION, SIZE
    Use the BOX, POSITION, and SIZE commands for drawing boxes, lines, and shading to print particular windows within a form or passages of text within a window in a frame or with shading.
    The SAP printer drivers that are based on page-oriented printers (the HP LaserJet driver HPL2, the Postscript driver POST, the Kyocera Prescribe driver PRES) employ these commands when printing. Line printers and page-oriented printers not supported in the standard ignore these commands. You can view the resulting printer output in the SAPscript print preview.
    Syntax:
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    BOX Command
    Syntax
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    Effect: draws a box of the specified size at the specified position.
    Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.
    XPOS, YPOS
    Upper left corner of the box, relative to the values of the POSITION command.
    Default: Values specified in the POSITION command.
    The following calculation is performed internally to determine the absolute output position of a box on the page:
    X(abs) = XORIGIN + XPOS
    Y(abs) = YORIGIN + YPOS
    WIDTH
    Width of the box. Default: WIDTH value of the SIZE command.
    HEIGHT
    Height of the box. Default: HEIGHT value of the SIZE command.
    FRAME
    Thickness of frame.
    Default: 0 (no frame).
    INTENSITY
    Grayscale of box contents as %.
    Default: 100 (full black)
    Measurements: You must specify decimal numbers as literal values (like ABAP numeric constants) by enclosing them in inverted commas. Use the period as the decimal point character. See also the examples listed below.
    Units of measurement: The following units of measurement may be used:
    TW (twip)
    PT (point)
    IN (inch)
    MM (millimeter)
    CM (centimeter)
    LN (line)
    CH (character).
    The following conversion factors apply:
    1 TW = 1/20 PT
    1 PT = 1/72 IN
    1 IN = 2.54 CM
    1 CM = 10 MM
    1 CH = height of a character relative to the CPI specification in the form header
    1 LN = height of a line relative to the LPI specification in the form header
    /: BOX FRAME 10 TW
    Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).
    /: BOX INTENSITY 10
    Fills the window background with shading having a gray scale of 10 %.
    /: BOX HEIGHT 0 TW FRAME 10 TW
    Draws a horizontal line across the complete top edge of the window.
    /: BOX WIDTH 0 TW FRAME 10 TW
    Draws a vertical line along the complete height of the left hand edge of the window.
    /: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
    /: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.
    POSITION Command
    Syntax
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    Effect: Sets the origin for the coordinate system used by the XPOS and YPOS parameters of the BOX command. When a window is first started, the POSITION value is set to refer to the upper left corner of the window (default setting).
    Parameters: If a parameter value does not have a leading sign, then its value is interpreted as an absolute value, in other words, as a value that specifies an offset from the upper left corner of the output page. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value. If one of the parameter specifications is missing, then no change is made to this parameter.
    XORIGIN, YORIGIN
    Origin of the coordinate system.
    WINDOW
    Sets the values for the left and upper edges to match those of the current window (default setting).
    PAGE
    Sets the values for the left and upper edges to match those of the current output page (XORIGIN = 0 cm, YORIGIN = 0 cm).
    /: POSITION WINDOW
    Sets the origin for the coordinate system to the upper left corner of the window.
    /: POSITION XORIGIN 2 CM YORIGIN '2.5 CM'
    Sets the origin for the coordinate system to a point 2 cm from the left edge and 2.5 cm from the upper edge of the output page.
    /: POSITION XORIGIN '-1.5' CM YORIGIN -1 CM
    Shifts the origin for the coordinates 1.5 cm to the left and 1 cm up.
    SIZE Command
    Syntax
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    Effect: Sets the values of the WIDTH and HEIGHT parameters used in the BOX command. When a window is first started, the SIZE value is set to the same values as the window itself (default setting).
    Parameters: If one of the parameter specifications is missing, then no change is made to the current value of this parameter. If a parameter value does not have a leading sign, then its value is interpreted as an absolute value. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value.
    WIDTH, HEIGHT
    Dimensions of the rectangle or line.
    WINDOW
    Sets the values for the width and height to the values of the current window (default setting).
    PAGE
    Sets the values for the width and height to the values of the current output page.
    /: SIZE WINDOW
    Sets WIDTH and HEIGHT to the current window dimensions.
    /: SIZE WIDTH '3.5' CM HEIGHT '7.6' CM
    Sets WIDTH to 3.5 cm and HEIGHT to 7.6 cm.
    /: POSITION WINDOW
    /: POSITION XORIGIN -20 TW YORIGIN -20 TW
    /: SIZE WIDTH +40 TW HEIGHT +40 TW
    /: BOX FRAME 10 TW
    A frame is added to the current window. The edges of the frame extend beyond the edges of the window itself, so as to avoid obscuring the leading and trailing text characters.
    <REMOVED BY MODERATOR>
    Regards
    Anji
    Edited by: Alvaro Tejada Galindo on Jul 8, 2008 10:59 AM

  • Best table format for html?

    I see that after I convert my FM doc to Online Help (via webworks), the tables do not expand in the output the way the text does. Is there a specific table format that works best for conversion to html?
    Regards,
    Bill

    Bill,
    in FrameMaker you design each table to have certain column widths because you are limited by the size of your page (and the paper).
    HTML browsers have more freedom unless they are explicitly instructed to create certain column widths. The basic rule for HTMl tables (and there is only a single table "format" in HTML) are those:
    Check each column for its minimum width, specified by a graphic or a very long unhyphenated word.
    Look in each column for the longest content. i.e. as if multi-line content would be written in a single line (attention: <br> tags force line breaks)
    If all columns expanded to hold the longest content fit inside the browser window: scale them accordingly: This may result in tables which are smaller than in print, because they contain only very short texts
    If the columns do not fit the current browser width, scale them down to fit the browser width, but only as far as the minimum width.
    If the sum of minimum widths is wider than the browser window: create a horizontal scrollbar.
    Of course, using CSS instruction like {width: 12em;} one can force certain column width independent from content, but this is usually not the default.
    If you want all your tables to always span the full width of the browser window, you have to add the following to your CSS (maybe via the Webworks UI):
    table { width: 100%; }
    HTH,
    - Michael

  • New user: Printing & tables

    I installed the iWork08 demo earlier, which I'm considering buying, but it's very annoying that I can't save or print as it means I can't test it out properly because each day I'm effectively back to square one. What is the point in a trial 30 days long if test files can't be saved for later? I don't have time to spend hours and hours in one go making changes to see if it will do something, and all without saving.
    Is there way to turn a selection into a new table? If so does, it affect formula and calculations in the table that are references to other tables and other worksheet? The best I've solution I've found is to duplicate a table then delete parts I don't want.
    Can I print out a specific table? Or a specific selection of cells?
    Can a selection of cells, or a whole table, be copied and pasted into other applications such as Pages or Dreamweaver?
    Thanks for your help.

    I hadn't got round to trying Pages or Keynote, or printing. Only I was getting the message about print and saving restrictions when I tried to save in Numbers, printing seems like it's all fine, I'm just not hooked up to the printer. Pages, Keynote and Numbers are all fully functional now.
    I took Peggy's advice and deleted the preferences file, albeit for Numbers and now Numbers seems to all work fine too. Oh and I worked out my iDisk URL thanks to a screencast by DonMcAllister, I'm just wanting to to cancel the .Mac trial now so I can get different username.
    Do you know if I can cut and paste cells from Numbers into a page in Dreamweaver? I can do that from Excel to DW on Windows and it's essential that I can do it on Mac.

  • How to output to a file in table format?

    I would like to output my result in table format, for example:
    1, 305,134
    2, 245,98
    1, 34,204
    3, 205,315 etc.
    Any ideas how to do it?
    I have tried PrintWriter class and it work but when I used JFileChooser to choose to load an image file, there is no file output.

    Hi !
    Do something like this :
    try{
    FileWriter fw = new FileWriter("youroutputfilename.txt");
    BufferedWriter buff = new BufferedWriter(fw);
    for(int i=0; i < [end of your loop]; i++){
    buff.write(data1+";"+data2+";"+data3+";"+.....);
    buff.close();
    }catch(IOException e){System.out.println("couldn't write the file");}
    I hope it helps .
    stephane

  • Displaying Line Items of a BAPI in Table Format

    have a custom Bapi ZPM_GET_ORDERS.
    It has a Model structure like
    Orders_Hdr
    Operations [Multiple Line Items]
    I want to display the operations line items in the table format in a View when we click on the Orders_Hdr.
    For that I am wondering what should the code on the onLeadSelect of Orders_Hdr table at the ViewController?
    In other words how can I display those line items on a click of a Header record. I am looking for some pseudo code that goes in the onActionLeadSelect()of View.
    Thank You . Any help is appreciated

    Hi Vivek,
             On LeadSelect .....just get the current selected node element and also store a attribute value from the currnet selected to a variable (like orderid)which is common in both the node ....then loop through the operations node and put the condition equal to orderid using the variable ...if mathces the put node elemnt in to some node created(value node of same type )...
    for copying the node u can use the WSCopyService class...
    Regards,
    Yash

Maybe you are looking for

  • Motion 4 crashes on start after Lion upgrade

    Just upgraded from SL to the new Lion, upgraded FCS2 to FCS3 on my MBP 15 (relativley new, i7) and can't get Motion to start, it keeps crashing at the same Thread; Crashed Thread:  7  com.apple.CFSocket.private (All other FCS 3 start ok after the upg

  • How do I use a UK music card purchased on holiday, from home in Australia?

    How do I use a UK iTunes music card purchased while on holidays in London, from my home in Australia? It would appear that I have just wasted my money.

  • Can't get ZFS Pool to validate in HAStoragePlus

    Hello. We rebuilt our cluster with Solaris 10 U6 with Sun Cluster 3.2 U1. When I was running U5, we never had this issue, but with U6, I can't get the system to validate properly the zpool resource to the resource group. I am running the following co

  • No mention of my order on adobe website account

    Hi, I purchased a Acrobat Pro Xi on 24 April 2013 in India. For some reason, I cannot use it now as it says the trial has expired although I had followed the instructions in installing. I checked the website after logging into my account and found th

  • Changing page order?

    I read in a few posts that you can just drag the page to change the order under "view thumbnails". It's not working for me. I'm not exactly sure what I am doing wrong... Can anyone help me out with how to move a page in a different place?