Stumped as to how to freeze a header column

In Numbers '09 I select the left-most column (in grey, so I presume that makes it a "header" column) but the header button offers only "repeat header columns on each page", not "freeze header columns". Similarly the Table menu offers the choice of "repeat" but not "freeze" headers. What am I doing wrong?
Thanks

Look in the toolbar
OR
In the table inspector

Similar Messages

  • How to freeze the selection column in the table control of the module pool.

    hi ,
    in my module pool there is a row selection field  <b>w/selcolumn</b> of the table control called as mark.
    how to freeze the selection column where there is no record in the table control row.
    or in other words where wa is initial.
    thanks
    ekta

    Hi all,
    in the PBO of the screen the following code is written.
    say the selection column is MARK and is declared in the data as well.
    thanks
    ekta
    *************************C O D E **************************************************
    MODULE disp_tabctrl1 OUTPUT.
      IF flag_c = 1.
        READ TABLE it_create_data INTO wa_material_data
             INDEX tab_ctrl1-current_line.
      ELSE.
        READ TABLE it_material_data INTO wa_material_data
             INDEX tab_ctrl1-current_line.
        IF sy-subrc = 0.
          IF ok_code_0101 = '&SEL1'.
            mark = 'X'.
          ELSEIF ok_code_0101 = '&DSEL'.
            mark = ' '.
          ENDIF.
        ELSE.
          LOOP AT SCREEN.
            IF screen-name = 'MARK'.
              screen-input = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDIF.
      index_t = tab_ctrl1-top_line.
      index_d = tab_ctrl1-top_line + n.
    ENDMODULE.                 " DISP_TABCTRL1  OUTPUT

  • How to Freeze Report Header

    Hi Experts,
    Could you please guide me how to freeze the report Header , so that user can sea the header if he scroll down to bottom.
    Thanks,
    Pavan.

    Hi Pavan,
    Unfortunately, it's not possible to freeze the headers on the UI. You might want to export it to excel.
    On the Query Definiton you can control how many rows are displayed per page. I would recommend reading the help section on this before attempting it. As a general rule, if your result set is large, you might want to consider adding one or more required filters so that the query is not automatically executed with no filters.
    Regards,
    Vikram

  • How do you sort specific columns and freeze a header column?

    I'm creating a list of people attending a workshop and would like the first column to be the number of people attending. The first column is the number and that row sorts with the rest, so then my numbers go 1, 9, 5, etc instead of remaining 1-20. Is there a different way for me to determing the number? I put 1 in cell A 2 and then for A 3 I give it a formula A1 + 1 to create the number sequence. I've tried making it a header column and freezing the column, but it still changes.
    thanks,
    Nancy

    Nancy,
    You can search the discussions when you have a specific question, or you can just browse them from time to time to see what there is to be learned. Your question is a little like "How did you learn to be a good cook?" Most of the good home cooks never went to cooking school, but they have had lots of good coaching and lots of experience. Many of the helpers here have been using spreadsheets for so long that they don't remember when they learned a particular trick or method. And, we like to share, so keep the questions coming.
    I keep the Formula Browser in view, and I study the examples for the functions I think I might want to use.
    Regards,
    Jerry

  • How to freeze row and column in JTable

    Hi,
    I need to freeze first two rows and columns in a large JTable. I found ways to freeze either a row or a column, but not both at the same time.
    Can any of you help ?
    Found this code which allows freezing a col. Similar method can be used to freeze column
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JViewport;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.JTableHeader;
    import javax.swing.table.TableModel;
    public class FrozenTablePane extends JScrollPane{
    public FrozenTablePane(JTable table, int colsToFreeze){
    super(table);
    TableModel model = table.getModel();
    //create a frozen model
    TableModel frozenModel = new DefaultTableModel(
    model.getRowCount(),
    colsToFreeze);
    //populate the frozen model
    for (int i = 0; i < model.getRowCount(); i++) {
    for (int j = 0; j < colsToFreeze; j++) {
    String value = (String) model.getValueAt(i, j);
    frozenModel.setValueAt(value, i, j);
    //create frozen table
    JTable frozenTable = new JTable(frozenModel);
    //remove the frozen columns from the original table
    for (int j = 0; j < colsToFreeze; j++) {
    table.removeColumn(table.getColumnModel().getColumn(0));
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //format the frozen table
    JTableHeader header = table.getTableHeader();
    frozenTable.setBackground(header.getBackground());
    frozenTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    frozenTable.setEnabled(false);
    //set frozen table as row header view
    JViewport viewport = new JViewport();
    viewport.setView(frozenTable);
    viewport.setPreferredSize(frozenTable.getPreferredSize());
    setRowHeaderView(viewport);
    setCorner(JScrollPane.UPPER_LEFT_CORNER, frozenTable.getTableHeader());
    }

    Hi,
    I need to freeze first two rows and columns in a large JTable. I found ways to freeze either a row or a column, but not both at the same time.
    Can any of you help ?
    Found this code which allows freezing a col. Similar method can be used to freeze column
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JViewport;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.JTableHeader;
    import javax.swing.table.TableModel;
    public class FrozenTablePane extends JScrollPane{
    public FrozenTablePane(JTable table, int colsToFreeze){
    super(table);
    TableModel model = table.getModel();
    //create a frozen model
    TableModel frozenModel = new DefaultTableModel(
    model.getRowCount(),
    colsToFreeze);
    //populate the frozen model
    for (int i = 0; i < model.getRowCount(); i++) {
    for (int j = 0; j < colsToFreeze; j++) {
    String value = (String) model.getValueAt(i, j);
    frozenModel.setValueAt(value, i, j);
    //create frozen table
    JTable frozenTable = new JTable(frozenModel);
    //remove the frozen columns from the original table
    for (int j = 0; j < colsToFreeze; j++) {
    table.removeColumn(table.getColumnModel().getColumn(0));
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //format the frozen table
    JTableHeader header = table.getTableHeader();
    frozenTable.setBackground(header.getBackground());
    frozenTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    frozenTable.setEnabled(false);
    //set frozen table as row header view
    JViewport viewport = new JViewport();
    viewport.setView(frozenTable);
    viewport.setPreferredSize(frozenTable.getPreferredSize());
    setRowHeaderView(viewport);
    setCorner(JScrollPane.UPPER_LEFT_CORNER, frozenTable.getTableHeader());
    }

  • How to use a header column in a repeating group

    I am trying to create a BIP report (11.1.1.6.2) with an XML file as source. The XML files start with a few header fields, followed by the actual data. For example:
    <DATA>
    <PARAMETERS>
    <P_ORDER>Order</P_ORDER>
    <P_CUSTOMER>Customer</P_CUSTOMER>
    </PARAMETERS>
    <LIST_DETAILS>
    <DETAIL>
    <V_ORDER>12345</V_ORDER>
    <V_CUSTOMER>Oracle</V_CUSTOMER>
    </DETAIL>
    <DETAIL>
    <V_ORDER>67890</V_ORDER>
    <V_CUSTOMER>Microsoft</V_CUSTOMER>
    </DETAIL>
    </LIST_DETAILS>
    </DATA>
    The desired output should combine a field from the <PARAMETERS> group and a field from the <DETAIL> group in one line. So with this example data it should look like this:
    Order: 12345
    Customer: Oracle
    Order: 67890
    Customer: Microsoft
    In my RTF template I created a repeating group <?for-each:DETAIL?> and put everything in that repeating group. Unfortunately BIP leaves the values for the fields in the <PARAMETERS> group empty.
    I also tried to nest two repeating groups. First: <?for-each:PARAMETERS?>, within that: <?for-each:DETAIL?>. This does not solve the problem.
    How can I achieve my desired output?
    Paul

    try
    <?xdoxslt:set_variable($_XDOCTX,'LVarORDER',P_ORDER)?>
    <?xdoxslt:set_variable($_XDOCTX,'LVarCUSTOMER',P_CUSTOMER)?>
    <?for-each:DETAIL?>                                 |           <?V_ORDER?>
    <?xdoxslt:get_variable($_XDOCTX,'LVarORDER')?>      |
    ----------------------------------------------------|-----------------------------------
    <?xdoxslt:get_variable($_XDOCTX,'LVarCUSTOMER')?>   | <?V_CUSTOMER?><?end for-each?>

  • How to disable table header column reordering

    Does anyone know how to disable reordering of some but not all columns in tableview ? For that matter how to disable reordering for all columns?
    Thanks in advance !

    The following code will disable sorting in all columns
    public static <S> void disableSort(TableView<S> table){
    Iterator<TableColumn<S,?>> columns = table.getColumns().iterator();
    while(columns.hasNext())
    columns.next().sortableProperty().set(false);
    }

  • How to find Specifiq header column in JTable

    sir
    i use the following
    table.getTableHeader().setBackground(Color.red);
    but i want to change the color of specfiq column
    how can i do
    thanks

    I have not tried this but hopefully this helps
    JTable e;
    e.getColumnModel().getColumn(chooseAcolumn).setHeaderRenderer(YourRenderer);
    public class YourRenderer extends DefaultTableCellRenderer implements TableCellRenderer
    public java.awt.Component getTableCellRendererComponent(javax.swing.JTable table, Object obj, boolean isSelected, boolean hasFocus, int row, int column)
            //Do what you want....
            this.setText((obj==null)?"":obj.toString());
            this.setBackgroundColor(Color.red);
            return this;
    I haven't tested this hopefully this gives you a direction..

  • Freeze table header in HTMLB Tableview

    Hi
    Does anyone know a way to freeze Table Header ( column names ) in HTMLB ?

    Sure
    <STYLE TYPE ="text/css">
          .tablbroad
          .tabllong
          #tabl
                table {
                        text-align:left;
                        border-collapse: collapse;
                      .tabl table th
                      thead th, thead th.locked    {
                      font-size: 12px;
                      text-align: center;
                      background-color: navy;
                      color: white;
                      border-right: 1px solid silver;
                      position:relative;
                      cursor: default;
                    thead th
                              thead th.locked {z-index: 30;}
                              td.locked,  th.locked{
                              background-color: #ffeaff;
                              font-weight: bold;
                              border-right: 1px solid silver;
                                  left: expression(document.getElementById("tabl").scrollLeft);
                                  position: relative;
                                  z-index: 10;
                              </style>
           <div class="tablbroad" id="tabl">
    Regards
    Bhavana

  • Freeze header columns in web reports

    Hello Gurus,
       I am looking for a solution to freeze the header columns. I tried
    with the java script code from the below link.
    Forum post in BI Suite – Business Explorer: Re: Freeze Panes in web
    reports
    Re: Freeze Panes in web reports
    but did not work.   please suggest me.
    points will be awarded.
    Thanks & Regards,
    Kumar.

    no proper solution.

  • Help... Header columns unfreeze when entering data on iphone.

    I'm a college professor and am in the process of migrating my gradebook spreadsheets to numbers with the goal of being able to input grades on my iphone (which is most convenient since I always, always have my phone with me). Here's my problem... If I freeze the Header Column on a table, it stays visible while I'm purusing the table for the place I need to insert data, but as soon as I click on the cell in question to enter said data, the header column disappears. Basically, if the keyboard is available, my header columns unfreeze. That's fine if I want to input a single grade, but it means I can't work my way down a column filling in grades for a class because I can't reference the student's names, which are now hidden screen-left. Is there something I can do to remedy this--i.e., to make it so the header columns remain visible when the keyboard is activated?
    [PS: I have figured out a work-a-round. If I make all the data cells pop-up menus, then I can choose a grade from the pop-up menu and the header column stays visible. Only it  means scrolling through grade options (100%, 99%, 98% &c...) which is terribly cumbersome.]

    A phone screen is small.
    I guess that it's why the developers choose to free space when iPhone users work in a table.
    I'm unaware of a preferences setting offering the ability to change that.
    But here you are in a forum dedicated to Numbers for OSX.
    Most of us don't use Numbers for iOS which is a different application.
    Yvan KOENIG (VALLAURIS, France) dimanche 22 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • How to freeze the report header row in the web template SAP BI 7.0?

    Hello,
    Can somebody tell me how to freeze the report header row in the web template SAP BI 7.0 (key fiigures1, 2,3)?
    key figure1   key figure2    key figure3
    20                    30                   40
    30                    80                   90
    Thanks

    Hi,
    You can refer the following threads...
    Re: Create Scrollable Table Body in WAD - Locking Table Column and Header
    Freeze Data Columns in WAD
    This will help you!
    Rgds,
    Murali

  • How to Freeze Header in Report Layout

    Hi
    I have a region of type Report. And if there are more number of records we have to scroll down. That time user wants freeze the header row and wanted to scross the records only.
    How can we do this in APEX.
    Appreciate your help.
    Regards
    Kiran Akkiraju

    Hi,
    This thread deals with creating your table with non-scrolling headers:
    Re: How to implement fixed column headers
    These threads deals with multiple such tables: Re: non scrollable headers for multiple report regions on a page. Please help!!
    Re: how to define unique table id for two reports on a page?
    OD

  • How can I freeze the header row in Numbers '08

    Hello,
    I've read through support communities and looked high and low through numbers, but can't seem to find a way to freeze my header row.  Any ideas?  Thanks!

    Hi April,
    Upgrade to Numbers '09, where the feature was added.
    The closest you can come in Numbers '08 is "Repeat Headers" in the Table menu, which will show the header row at the top of each page of the document as it would be printed.
    Regards,
    Barry

  • How to freeze the columns in excel exported from SSRS report??

    We have created a report for our client. The client wants the report in excel format. As there are nearly about 30,000 rows in the excel. Client wants us to freeze the column header names in the excel so that even after scrolling down they
    will be able to see the column names.
    can anybody have idea how to achieve this in SSRS?

    Hi Shard,
    Thanks for your post, You can achive your requiremets by using the below logic. hope this will help you.
    Steps to achieve it
    1. Select the tabix and click on Tablix properties.
    2. In the General tab under Column Headers section you can see "Keep header visible while scrolling" checkbox, check it.
    3. Now the header row will be remain fixed in the report.
    OR
    1.    In the grouping pane, make sure to turn on advanced mode (click on the small black down arrow on the far right of the grouping pane) 
    2.  Select the corresponding (Static) item in the row group hierarchy
    3.  In the properties grid, set RepeatOnNewPage to true
    4. KeepwithGroup to After
    OR
    1)Freeze the header of all columns[ Freezing table header ] : To do select static member of table header row from  row groups [ Advanced Mode ] and set  FixedData to true
    2) Freeze the initial 2 columns : To do select static member of columns in column group and set fixedData to true .
    How do you freeze the tablix header row in an Excel export file in SSRS 2008
    Suhas Kudekar
    Mark as Answer if this resolves your problem or "Vote as Helpful" if you find it helpful.
    My Blog
    Follow @SuhasKudekar

Maybe you are looking for

  • How do I print a specific sized picture.

    I'm trying to print a picture to fit in a frame size of 6 5/8 X 4 5/8. (6.625 X 4.625). The size of the picture in pixels is 416 X 288. The width is more important than the height. I've used the "constrain" feature in iPhoto, to constrain the size to

  • Why is text on webpages sometimes displayed incorrectly?

    Sometimes some of the text on a page is almost illegible. Assuming black text on a white background, some of the pixels that should be black are white instead. Most of the time if I scroll the page so the bad text is hidden and then scroll back, the

  • Lion 10.7 and Flash Player

    Upgraded to Lion 10.7 and now I can't click any of the options in the flash player dialog box. How can I fix this. Same problem in Safari, firefox, and chrome.

  • Processing ABAP Idocs in SAP Java AS CE 7.1 web service client applicatin

    I am trying to build a Java web service client which would call a web service in a non-SAP system.  I am trying to send  Idocs from the back-end CRM system to my Java web service client using a Jco RFC Provider.  I have already created the RFC Destin

  • CS5 Capture with wrong aspect ratio

    Hi, I'm using CS5 with Matrox Axio. I try to capture normal DV material 16:9 (real 16:9 by Sony Z5) via firewire. In the record window it is shown correctly. In the scene-manager the file is stored as 4:3 720x576 (1,0940) although it's real 16:9 720x