Making no row or column labels the default

OK, I've read the many threads about how to turn them off and I do that all the time. But I'm lazy. I want the 'no cell labels' to be my default. How do I do that? There doesn't seem to be any way I can set it from my Epson RX620 so I have to do it either through the Apple preferences or Appleworks preferences and neither seem to offer this option.
All suggestions gratefully accepted. Thanks.
PS If there is no way to make them the default, then techs please take note - this is a user request for function to include in the next version.
IMac G5   Mac OS X (10.4.9)   Safari 2.0.4, Mail 2.1, AW 6, Pages 2.0.1

"Thanks for the help. I hadn't discovered the Options\Display stuff. I can just turn them on and off on the spreadsheet I am using before I print."
You can do that through Options > Display, but if you want to have new spreadsheets start out showing no row and column headers as the default condition, then Roger's suggestion of creating a spreadsheet template is the route to go.
You can create a default template for any of AppleWorks's document types by the following method. (These instructions are specific to a spreadsheet document, but the procedure is similar for other types.)
Open a new (SS) document.
Use Format > Document to change the number of rows and columns if you want values different from AW's default 40 columns by 500 rows.
Use Options > Display to set row/ column headers off or on and the cell grid to solid, dotted or no lines.
Check other formatting options for values you want to change from their defaults.
When finished making changes to the default values, go File > Save as...
Name the file "AppleWorks SS Options" then click Template, then Save.
AppleWorks will save the document as a Template, and will place it in the templates folder. Any NEW spreadsheet document subsequently created using the spreadsheet button in the Button Bar, the button in Starting Points, or using File > New > Spreadsheet will adopt the values specified in this template document. Existing spreadsheets wil not be affected.
To set new defaults for other types of AW documents, follow a similar procedure, then same the template with the same "AppleWorks XX Options" name, substituting the two letter code for the type of documnet for the "XX" in the name.
Regards,
Barry

Similar Messages

  • Hiding row and column labels

    You can format a table so that it looks just like a form — e.g. give it a background color, shadow, etc. Looks very nice. However, whenever you click on a cell, the row and column the row and column labels suddenly appear, and the visual illusion of a form is lost. Is there any way to prevent the row and column labels from appearing short of locking the table which also mades it uneditable? If not, I think this would be a useful feature.

    swehba wrote:
    You can format a table so that it looks just like a form — e.g. give it a background color, shadow, etc. Looks very nice. However, whenever you click on a cell, the row and column the row and column labels suddenly appear, and the visual illusion of a form is lost. Is there any way to prevent the row and column labels from appearing short of locking the table which also mades it uneditable?
    Feature unavailable.
    If not, I think this would be a useful feature.
    Here you are speaking to end users like you so your thoughts are useless.
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'11
    Yvan KOENIG (VALLAURIS, France) mardi 12 avril 2011 12:28:32

  • Can "Standard Report Column" be the Default Instead of "Display as Text"

    Almost every report region I write has some html in at least one column, whether it's a break or an apex_item or something else. Hence, when the region renders with the default settings, the column shows the html code - I have to change the column display type from "Display as Text" to "Standard Report Column".
    Is there some setting to make "Standard Report Column" the default? (Isn't that kind of what the word Standard implies?)
    Thanks,
    Gregory

    That Other Fellas Brother wrote:
    Almost every report region I write has some html in at least one column, whether it's a break or an apex_item or something else. Hence, when the region renders with the default settings, the column shows the html code - I have to change the column display type from "Display as Text" to "Standard Report Column".
    Is there some setting to make "Standard Report Column" the default? (Isn't that kind of what the word Standard implies?)In earlier versions of APEX "Standard Report Column" was the default. The default was changed in APEX 4.0 to "Display as Text" (which escapes HTML-sensitive characters) as a security measure to limit vulnerability to XSS attack. This is necessary for the protection of users and (so-called) developers who are not security conscious/HTML savvy.
    There's no option to change this, and I doubt that one will be provided in the future. The indications are that the Oracle APEX team are committed to blocking as many security holes as possible by default, leaving it to the developer to consciously make any modifications that increase the surface exposed to attack.

  • JTable fixed Row and Column in the same window

    Hi
    Could anyone tip me how to make fixed row and column in the same table(s).
    I know how to make column fixed and row, tried to combine them but it didnt look pretty.
    Can anyone give me a tip?
    Thanks! :)

    Got it to work!
    heres the kod.. nothing beautiful, didnt clean it up.
    * NewClass.java
    * Created on den 29 november 2007, 12:51
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package tablevectortest;
    * @author Sockan
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.event.*;
    public class FixedRowCol extends JFrame {
      Object[][] data;
      Object[] column;
      JTable fixedTable,table,fixedColTable,fixedTopmodelTable;
      private int FIXED_NUM = 16;
      public FixedRowCol() {
        super( "Fixed Row Example" );
        data =  new Object[][]{
            {      "","A","A","A","",""},
            {      "a","b","","","",""},
            {      "a","","c","","",""},
            {      "","","","d","",""},
            {      "","","","","e",""},
            {      "","","","","","f"},
            {      "","b","","","",""},
            {      "","","c","","",""},
            {      "","","","d","",""},
            {      "","","","","e",""},
            {      "","b","","","",""},
            {      "","","c","","",""},
            {      "","","","d","",""},
            {      "","","","","e",""},
            {      "","","","","","f"},
            {      "I","","W","G","A",""}};
        column = new Object[]{"A","B","C","D","E","F"};
        AbstractTableModel fixedColModel = new AbstractTableModel() {
          public int getColumnCount() {
            return 1;
          public int getRowCount() {
            return data.length;
          public String getColumnName(int col) {
            return (String) column[col];
          public Object getValueAt(int row, int col) {
            return data[row][col];
          public boolean CellEditable(int row, int col) {
            return true;
        AbstractTableModel    model = new AbstractTableModel() {
          public int getColumnCount() { return column.length-2; }
          public int getRowCount() { return data.length - FIXED_NUM; }
          public String getColumnName(int col) {
           return (String)column[col+1];
          public Object getValueAt(int row, int col) {
            return data[row][col+1];
          public void setValueAt(Object obj, int row, int col) {
            data[row][col+1] = obj;
          public boolean CellEditable(int row, int col) {
            return true;
        AbstractTableModel fixedTopModel = new AbstractTableModel() {
          public int getColumnCount() { return 1; }
          public int getRowCount() { return data.length - FIXED_NUM; }
          public String getColumnName(int col) {
           return (String)column[col];
          public Object getValueAt(int row, int col) {
            return data[row][col];
          public void setValueAt(Object obj, int row, int col) {
            data[row][col] = obj;
          public boolean CellEditable(int row, int col) {
            return true;
        AbstractTableModel fixedModel = new AbstractTableModel() {     
          public int getColumnCount() { return column.length-2; }
          public int getRowCount() { return FIXED_NUM; }
          public Object getValueAt(int row, int col) {
            return data[row + (data.length - FIXED_NUM)][col+1];
        table = new JTable( model );
        table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        fixedTable = new JTable( fixedModel );
        fixedTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        fixedTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        fixedColTable= new JTable(fixedColModel);
        fixedColTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        fixedColTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        fixedTopmodelTable = new JTable(fixedTopModel);
        fixedTopmodelTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        fixedTopmodelTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);   
        JScrollPane scroll      = new JScrollPane( table );
         scroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
         scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        JScrollPane fixedScroll = new JScrollPane( fixedTable ) {
          public void setColumnHeaderView(Component view) {}
        fixedScroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        fixedScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
        JScrollBar bar = scroll.getVerticalScrollBar();
        JScrollBar dummyBar = new JScrollBar() {
          public void paint(Graphics g) {}
        dummyBar.setPreferredSize(bar.getPreferredSize());
        scroll.setVerticalScrollBar(dummyBar);
        final JScrollBar bar1 = scroll.getHorizontalScrollBar();
        JScrollBar bar2 = fixedScroll.getHorizontalScrollBar();
        bar2.addAdjustmentListener(new AdjustmentListener() {
          public void adjustmentValueChanged(AdjustmentEvent e) {
            bar1.setValue(e.getValue());
        JViewport viewport = new JViewport();
        viewport.setView(fixedColTable);
        viewport.setPreferredSize(fixedColTable.getPreferredSize());
        fixedScroll.setRowHeaderView(viewport);
        fixedScroll.setCorner(JScrollPane.UPPER_LEFT_CORNER, fixedColTable
            .getTableHeader());   
        JViewport viewport2 = new JViewport();
        viewport2.setView(fixedTopmodelTable);
        viewport2.setPreferredSize(fixedTopmodelTable.getPreferredSize());
        scroll.setRowHeaderView(viewport2);
        scroll.setCorner(JScrollPane.UPPER_LEFT_CORNER, fixedTopmodelTable
            .getTableHeader()); 
        scroll.setPreferredSize(new Dimension(600, 19));
        fixedScroll.setPreferredSize(new Dimension(600, 100)); 
        getContentPane().add(     scroll, BorderLayout.NORTH);
        getContentPane().add(fixedScroll, BorderLayout.CENTER);   
      public static void main(String[] args) {
        FixedRowCol frame = new FixedRowCol();
        frame.addWindowListener( new WindowAdapter() {
          public void windowClosing( WindowEvent e ) {
            System.exit(0);
        frame.pack();
        frame.setVisible(true);
    }

  • Warning: No new rows or columns because the axis is not input-ready

    Hello all,
    I have a planning application that plan against multiple years. This is done using a query that uses an analysis web item with its properties set to enable multiple new rows e.g. 2 new rows. Right now I have an issue whereby those 2 new rows will only appear if I restrict the report to a single year and if I were to select 2 or more years I get this warning message u201CNo new rows or columns because the axis is not input-readyu201D and those 2 rows will disappear.
    Anybody have any idea whatu2019s going on? Thanks.

    Hi,
    note 1149346 explains when new lines are possible:
    https://service.sap.com/sap/support/notes/1149346
    Regards,
    Gregor

  • Rows to columns/Transpose the records Query and Display output

    hi ,
    can anyone help me query this and transpose it to this format?
    i am still a beginner in sql.
    thanks for help!
    Rows to columns/Transpose the records Query and Display output
    id     startdate     endate                    
    1111     1/2/2001     11/3/2001                    
    1111     2/5/2002     4/3/2002                    
    1111     2/6/2000     2/5/2001                    
    3333     5/2/2003     11/3/2003                    
    3333     6/2/2003     12/3/2003                    
    3333     2/6/2005     2/5/2005                    
    desired output     
    id     startdate1     endate1     startdate2     endate2     startdate3     endate3
    1111     1/2/2001     11/3/2001     2/5/2002     4/3/2002     2/6/2000     2/5/2001
    3333     5/2/2003     11/3/2003     6/2/2003     12/3/2003     2/6/2005     2/5/2005

    Have you only 3 dates for each id ?
    So, try :
    SQL> l
      1  with tbl as
      2  (select 1111 as id, to_date('01/02/2001','DD/MM/YYYY') startdate, to_date('11/03/2001','DD/MM/YYYY') enddate from dual union all
      3  select 1111 as id, to_date('02/05/2002','DD/MM/YYYY') startdate, to_date('04/03/2002','DD/MM/YYYY') enddate from dual union all
      4  select 1111 as id, to_date('02/06/2000','DD/MM/YYYY') startdate, to_date('02/05/2001','DD/MM/YYYY') enddate from dual union all
      5  select 3333 as id, to_date('05/02/2003','DD/MM/YYYY') startdate, to_date('11/03/2003','DD/MM/YYYY') enddate from dual union all
      6  select 3333 as id, to_date('06/02/2003','DD/MM/YYYY') startdate, to_date('12/03/2003','DD/MM/YYYY') enddate from dual union all
      7  select 3333 as id, to_date('02/06/2005','DD/MM/YYYY') startdate, to_date('02/05/2005','DD/MM/YYYY') enddate from dual )
      8  select id, max(decode(dr,1,startdate)) start1,
      9             max(decode(dr,1,enddate)) end1,
    10             max(decode(dr,2,startdate)) start2,
    11             max(decode(dr,2,enddate)) end2,
    12             max(decode(dr,3,startdate)) start3,
    13             max(decode(dr,3,enddate)) end3
    14  from (select id, startdate,enddate, dense_rank() over (partition by id order by startdate) dr from tbl)
    15* group by id
    SQL> /
                                                    ID START1   END1     START2   END2     START3   END3
                                                  1111 02/06/00 02/05/01 01/02/01 11/03/01 02/05/02 04/03/02
                                                  3333 05/02/03 11/03/03 06/02/03 12/03/03 02/06/05 02/05/05
    SQL> HTH,
    Nicolas.

  • No new rows or columns because the axis is not input-ready

    Hi Gurus,
    I have a problem when I am modelling the Order and Revenue Planning.
    In my model I have Base Unit and Currency as Unit characterstics.
    When I take Currency as INR and Base Unit Multiple Values then I can create a new row in my planning layout.
    If I take currecy also multiple values, system is throwing following message "No new rows or columns because the axis is not input-ready" and not allowing me to create new rows(rather it is not displaying the new rows). But Query is Input Ready.
    Could any one suggest solution for this.....
    Waiting for your reply......
    Thanks and Regards,
    Arun.

    Hi Arun,
    I know exactly what you are trying to do.  Don' t waste your time any further on it.   The story would have been different if the entire layout was on a single currency(header or filtered).
    For your problem....
    First of all you cannot use 0AMOUNT.  As it will not allow you to seperate 0Currency from 0Amount as it is already defined in the 0Amount Infoobject. Even if you try to add 0Currency AGAIN as a "separate" characteristic in the row of Query.  So you will have to now provide 2 currency values to 0Currency(in the row) as well as 0Currency in the 0Amount (which you cannot select in Query Designer).  Because the system will still be looking for 0Currency value embedded to 0Amount.  The only way you can do is by using a Custom Key Figure with No Dim.  I mean, ZAmount with no Unit/Currency in the infoobject definition. 
    Let Currency be an attribute of Order.  Display this currency attribute in the row of the layout, just so the users know which currency they are going to enter values on.  It(currency) is only for informational purpose and not to think that the values entered initially by the users are stored along with the same currency.  And then after the user enters values on this ZAMOUNT, upon save use Fox behind the scene to copy this over to real "0Amount".  Fox should read the Order currency(attribute) and store the currency into along with the 0Amount(and 0currency).  All other Char stored by user should be copied as is in the Fox.
    The same logic applies to 0Quantity(with unit). 
    Hope this solution works for you.  Let us know if this is possible.
    Rocky

  • No new rows or columns because the axis is not input-ready - error

    hi,
    can any one tell me how to solve this.
    i am able to change the data but not able to add new rows or columns to the analysis item.
    i am getting following error
    No new rows or columns because the axis is not input-ready
    how to solve this.
    please suggest me.
    i will assign points.

    Hello venkat,
    robably the definition of rows and columns is to complicated for the system to read.
    Do you want to add a new row or a new column?
    how are the existing rows or columns defined?
    It does work, if you have included only characteristics into row / column and you are using key or key+text to be shown in your query.
    regards
    Cornelia

  • Localization of CrossTab row and column label Crystal Report RPT file

    Dear all,
    Does anyone know how to support multiple locale texts (English and French) in CrossTab Row and Column Header labels and grand total labels? Is there a way to parameterize text objects CrossTab in one single Crystal Report RPT file to use some sort of locale resource file containing text string for different languages based on the users of RPT at runtime? The idea is to use one single RPT file to generate report for different locale text for CrossTab Row and Column abels and grand total labels  instead of creating RPT files per locale?

    Hi,
    Does the database have a column that identifies the language? If it does, then you could create two separate cross-tabs and place them in different sections and conditionally suppress the section depending on the language from the database.
    That's the only thing that can be done in my opinion.
    -Abhilash

  • How to create table with rows and columns in the layout mode?

    One of my friends advised me to develop my whole site on the
    layout mode as its better than the standard as he says
    but I couldnot make an ordinary table with rows and columns
    in th layout mode
    is there any one who can tell me how to?
    thanx alot

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

  • How does one turn off the format column as the default

    I would like to have the Format sidebar "off" as the default when opening Numbers. How can I do this?

    I am not aware this is possible.  I tried saving a document where I had turned off the sidebar as a template and when I opened the template the sidebar was still visible.

  • Making an updated version of Clang the default compiler in Bash

    I've updated my version of LLVM and Clang, but do not know how to make the new version the default comiler in a Bash shell. When check the version of Clag, it gives my the oder one, 2.7.9, not what I just installed, 3.4? Is there something I need to type a the promt, or is editing the bashrc file a better option? Thanks.

    2.79 isn't the version, it is part of the 500.2.79 build number. It is actually a branch of version 3.3.
    Is there a specific reason why you need version 3.4 instead?

  • Making "Go to a Page View" the Default Link Action

    Up until recently, it was quick and easy for me to add a "Go to a Page View" link to PDFs in Acrobat Pro. I highlighted the text I wanted to link, right-clicked on it, and then selected Create Link from the pop-up menu. At that point, the Create Link box would be displayed:
    After clicking Next, the Create Go to View box would be displayed:
    I would then scroll to the the page I wanted to link to, click Set Link, and then the process was complete. I don't know if I have inadvertently changed settings or if things are different in the most recent version of Acrobat Pro, but now I have to go through several more steps to do the same thing. Here's what I have to do now.
    1. Highlight and right-click on the text. Select Create Link from the pop-up menu. The Create Link box is displayed.
    2. Click Next. The Link Properties box is displayed.
    3. Click OK. The Link Properties box is displayed. Click on the Actions tab.
    4. Select Go to a Page View from the Select Action drop-down menu.
    5. Click Add. The Create Go to View box is displayed.
    6. Scroll to the appropriate page and click OK. The Link Properties box is displayed AGAIN.
    7. Click OK, and FINALLY the process is over.
    I've looked online for an answer but can't find anything. I'm guessing that I'm just missing something small but as of yet it eludes me. I've tried messing around with the Locked check boxes, thinking that they may lock the settings, but to no avail. Can anyone help me get back to the much shorter process?
    Thanks in advance.

    Hi tedbeam,
    What happens when you select the Add or Edit Link tool on the Content Editing pane in the Tools panel? When you use that tool, you can drag a box around the text that you want to link, and the Link Action options should appear in the first dialog box that pops-up. Then you can change the view to the appropriate page, and click Set Link.
    That should simplify the process a bit.
    Please let us know how it goes.
    Best,
    Sara

  • How to select rows or columns of tables without using the mouse?

    2nd post ever! Yeah! \m/
    In Excel, I can select entire rows or columns of data WITHIN TABLES--i.e., not selecting entire sheet rows or columns--by going to any cell on the perimeter of the table, holding down shift+ctrl, and clicking a direction arrow. So for example, if I have a table in columns D-G and rows 1-5, I can highlight row 4 by going to the first or last cell of that row, holding down the shift+ctrl, and hitting the appropriate direction arrow. You might think this is superfluous given that you can use the mouse to select cells. But that becomes cumbersome with large tables, and this method can be more efficient even with small tables.
    Similarly, it's often useful to navigate tables, particularly large ones, by moving from any cell within the table to the end or beginning of that row or column by holding down ctrl and hitting the appropriate arrow key. In Excel, this ctrl+arrow key method also allows you to skip blank cells, which is another very useful navigational feature.
    I tried numerous combos involving shift, ctrl, command, alt/option and the arrow keys. Haven't found a way to do any of this yet.
    Anyone?

    Hi Josh,
    Numbers is organized differently than Excel, and the navigation tools are different too. Many of us miss our particular favorites from spreadsheets past, but this is Numbers, not a clone. The biggest adjustment is to go from huge monolithic sheet-tables containing virtual sub-tables to a simple blank sheet with small tables, sometimes many per sheet. Navigating is no big deal in these small tables and neither is getting from one small table to another, using the Sheets pane.
    Selecting a particular Table is as easy as clicking on the table's name in the Sheets pane. Selecting a particular row, or column, or ranges of rows or columns is done by clicking on the table's row and column labels, left side and top side once a cell is selected in the table.
    Numbers is weak at handling large Tables and documents that are large overall. We know this and many of us still prefer it to the alternative when the tool fits the task.
    Jerry

  • Choose Plot Columns as Series or Plot Rows as Series from the pop-up menu in the bottom ba

    I am trying to construct a 2D graph in Numbers 3.5 (2109) that shows at two time points the voting intentions by political party. The instruction given by Help is below, but I cannot find the bottom bar or the pop-up box.
    Switch rows and columns as data series
    When you add a chart, Numbers defines default data series for it. In most cases, if a table is square or if it’s wider than it is tall, the table rows are the default series. Otherwise, the columns are the default series. You can change whether rows or columns are the data series.
    Select the chart.
    Choose Plot Columns as Series or Plot Rows as Series from the pop-up menu in the bottom bar.
    Bar showing options to plot rows or columns as series
    Click Done.

    Hi Phil,
    Click once on the chart (graph) to select it. Then click on Edit Data References. The pop-up appears bottom left of the Numbers window.
    Regards,
    Ian.

Maybe you are looking for