Unable to merge cells in Table(WAD)

HI Gurus,
I am working on BI7.0,
I am trying to create Web Templates to display reports in portal for that
I have selected Table (rows and coloms), When I try to merge first two cells
(to write descritpion of query) it is not allowing me to merge.
Can anybody suggest me how to merge two cells in table.
Thanks in advance.
Maruthi
Edited by: maruthi k on Dec 15, 2008 2:04 PM

If you're talking simply about merging the cells in an HTML table, then you use the COLSPAN or ROWSPAN options in  HTML.
Check out the following
<html>
<body>
    <table border="1" cellpadding="2" cellspacing="0">
        <tr>
            <td>
                Heading 1</td>
            <td>
                Heading 2</td>
            <td>
                Heading 3</td>
        </tr>
        <tr>
            <td colspan="2">
                Text covering 2 cells</td>
            <td>
                Last cell</td>
        </tr>
        <tr>
            <td rowspan="2">
                Text covering 2 cells across 2 rows</td>
            <td>
                Text in cell 2 row 2</td>
            <td>
                Text in cell 3 row 2</td>
        </tr>
        <tr>
            <td>
                Text in cell 2 row 3</td>
            <td>
                Text in cell 3 row 3</td>
        </tr>
    </table>
</body>
</html>
Take the above code and put it in a simple HTML file and run that file in your browser, you should then be able to see how COLSPAN and ROWSPAN work.
COLSPAN=2 means that the cell spans 2 columns. Similary, COLSPAN=3 would then span 3 columns.
Remember though that when you set COLSPAN=2, you will need 1 less TD in that row, otherwise you end up with an extra cell in that row which makes your table look all messy.
Now, in your template, get into the XHTML view, find the table, and set the COLSPAN / ROWSPAN accordingly.
Hope this helps.
Cheers,
Andrew

Similar Messages

  • Latest thunderbird was unable to join cell for table.

    I have just upgrade to ubuntu, and currently face with a few issue.
    *The created cell was unable to merge using "join cell" function. Currently was on ubuntu 14.04 64bit
    *was unable to select all the content in a single column.

    It would appear to me it is just the last row of the table than can not be Joined. Is that your observation as well?

  • Help with merged cells in table

    I'm just learning how to use Dreamweaver 8 and tables. I am
    trying to use a table with merged cells filled with graphics --
    only one graphic per cell. I make my jpg the size of my cell, which
    it seems to fill. Then, when I upload it to view in browser, it
    looks as though the graphic doesn't take up the entire cell. At one
    point, it was working both in Dreamweaver and the browser. Now, in
    the browser view, it looks as though there is extra space above the
    graphic and below it. Any suggestions on what is going on???

    It's not the use of tables with your graphics that is
    necessarily the
    problem, it's HOW you are using the tables with your
    graphics. Can we see
    the page you have built so we can examine the code?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "degazon" <[email protected]> wrote in
    message
    news:gasr2p$10m$[email protected]..
    > Thanks! It's now evident that I shouldn't use tables
    with the graphics.

  • How to merge cells in tables if SmartForms like colspan/rowspan in HTML

    Hi!
    Is it possible to merge cells in a tables in SmartForms like colspan/rowspan parameters in HTML?
    Both horisontal and vertical merging needed both in header and in body of the table.
    Thanks!

    No it is not possible.
    For merging purpose we have to create seperate windows for that col or rows.

  • Merge cells in table (RTF template)

    Hey, everybody! Is it possible to merge cells at runtime on some condition?
    Edited by: user11367404 on 24.08.2009 6:10

    Hi,Rumzes, have you resolved your problem ? Could you tell me how to merge cells ? Thanx

  • BPC unable to merge cells and fill the required colour in EVDRE report

    Hi BPC folks,
    We are developing an EVDRE report.In that we are trying to merge some cells and fill the required colour.
    after saving the BPC excel we are clicking on "expand all" button.It is going back to it's original format.ie without merging and keeping it's original colour.
    Please help us out on this issue.Answers will be appreciated.
    Thanks and Regards,
    Sudhakar.

    Hi,
    Once you expand your template, the manual formatting done on the template will be gone. You need to use formatrange in your EVDRE.
    Hope this helps.

  • How to hide rows with merged cells?

    I would like to know how to hide rows on numbers with merged cells, could do it normally at excel but I am not being able to do it at Numbers.
    thanks!

    Felipe,
    To hide a row with Merged Cells, Un-Merge first, then Hide. Select the Merged Cells and Table > Unmerge.
    Note that this is only a problem with vertically merged cells when you want to Hide a Row.
    If you want to Hide a Column, you can't have a Horizontal Merge that involves that Column.
    Jerry

  • ABAP WD: ALV merge cells

    Hello,
    I have a hierarchical ALV. I need to merge some cells in it.
    For instance, there is a column name: Brand Name. There are multiple rows that have same brand name, let's say SONY.
    Is it possible to merge these cells that have same brand name? If so what should I use?
    Thank you.
    Best Regards,
    Georgy Norkin

    Hi,
    Go through the links,
    Merging cells of a table in Webdynpro
    merging cells in table
    Regards,
    Azaz.

  • [CS3/CS4 JS] How can you get the associatedXMLElement of a merged cell in a table?

    Hi!
    Inserting a table, and autotagging it, I get a table with a number of cell elements in the XML Structure.
    Selecting an item in the table, I can find the associated XML by the following line of code:
    app.selection[0].associatedXMLElement
    My problems begin when cells are merged. Then the associatedXMLElement for the cell returns null.
    How can I find the associatedXMLElement for a merged cell?
    Using the getElements makes no difference.
    app.selection[0].getElements()[0].associatedXMLElement
    (returns null)
    In the XML structure I can see that the merged cell is still associated to an XML Element, which becomes underlined and also referrs back to the cell, selecting it when double clicking the XML Element link in the structure.
    Is there no way to get to the xml element of a merged cell?
    I have tested in CS3 and CS4 as well, and they act in the same way.
    I also found a similar, unanswered, question from Anne-Laure Jallon in the "With CS3, some things have changed" ( http://forums.adobe.com/message/1105813#1105813 ):
    Hello,
    I'm working with VBscript.
    Is there a difference between cell.associatedXmlElement in CS2 and CS3?
    All my cells in CS2 had an associatedXmlElement.
    In CS3, my table has an associatedXmlElement, but all its cells don't (The value is Nothing)
    Is this a bug? Is it linked with XML evolution?   Thanks Anne Laure
    Adding some more info:
    I made a test, by selecting the XMLElement in the structure, and from that object finding the cell, and finding back to the assiciatedXMLElement:
    app.selection[0].getElements()[0].cells[0].associatedXMLElement
    Result: [object XMLElement]
    So that kind of "chain" works.
    But with the merged cell as only reference, I can't find its associatedXMLElement. Any ideas would be appreciated.
    Best regards,
    Andreas Jansson
    Message was edited by: Andreas Jansson

    In my opinion, locate a cell according to his content is not so effortable. What happens if contents of more than two cells are equals?
    I take xml elements of associated xml element of table and put them into an array.
    This array contains associated xml elements of every cell ordered by cell positions into table.
    Now, locate associated xml element of a cell based on its array position (index) is more reliable:
    var myCell_cell = app.selection[0];
    var myElement = myCell.associateXMLElement
    if (!myElement || !myElement.isValid)  {
         var table =  myCell.parent;
         var xml_tab = table.associatedXMLElement;
         var xml_cells_arr = xml_tab.xmlElements.everyItem().getElements();
         var idx = myCell.index;
         myElement = xml_cells_arr[idx];
    Alex ;-)

  • [CS4/JS] Import CALS-Tables with merged cells

    Hello scripters.
    I am actually trying to import CALS-tables (which is in my imported XML) into InDesign.
    I used the convertElementToTable for this.
    That worked, except for the merged cells (only cells which are merged to two or three columns).
    How could I script the automatic generation for merged cells?
    My xml-cals-table looks the following:
    <example>
        <table class="n" width="600" border="0">
            <colgroup>
                <col width="35%"/>
                <col width="30%"/>
                <col width="35%"/>
            </colgroup>
            <tr>
                <td colspan="3">
                    <ta>content content content content content content content content</ta>
                </td>
            </tr>
            <tr>
                <td align="left" valign="top">
                    <ta>content content content content </ta>
                </td>
                <td align="left" valign="top">
                    <ta>content content </ta>
                </td>
                <td align="right" valign="top">
                    <ta>content content </ta>
                </td>
            </tr>
            <tr>
                <td align="left" valign="top">
                    <ta>content content </ta>
                </td>
                <td align="left" valign="bottom">
                    <ta>content content </ta>
                </td>
                <td align="right" valign="bottom">
                    <ta>content content </ta>
                </td>
            </tr>
        </table>
    </example>
    Thanks in advance for any help!
    Franziska

    Hello scripters.
    I am actually trying to import CALS-tables (which is in my imported XML) into InDesign.
    I used the convertElementToTable for this.
    That worked, except for the merged cells (only cells which are merged to two or three columns).
    How could I script the automatic generation for merged cells?
    My xml-cals-table looks the following:
    <example>
        <table class="n" width="600" border="0">
            <colgroup>
                <col width="35%"/>
                <col width="30%"/>
                <col width="35%"/>
            </colgroup>
            <tr>
                <td colspan="3">
                    <ta>content content content content content content content content</ta>
                </td>
            </tr>
            <tr>
                <td align="left" valign="top">
                    <ta>content content content content </ta>
                </td>
                <td align="left" valign="top">
                    <ta>content content </ta>
                </td>
                <td align="right" valign="top">
                    <ta>content content </ta>
                </td>
            </tr>
            <tr>
                <td align="left" valign="top">
                    <ta>content content </ta>
                </td>
                <td align="left" valign="bottom">
                    <ta>content content </ta>
                </td>
                <td align="right" valign="bottom">
                    <ta>content content </ta>
                </td>
            </tr>
        </table>
    </example>
    Thanks in advance for any help!
    Franziska

  • Table  Interface : Merge cells in the same column

    I want to use the Table Interface to accomplish this...
    I need to merge cells that are to the top/bottom of eachother. So, the 2 cells have the same InfoObject. They are 2 different values and i want them to appear in the same cell... for example..
    A regular table returns:
    STATUS
    ¯¯¯¯¯¯¯¯¯
    OPEN
    CLOSED
    I want it to be displayed like:
    STATUS
    ¯¯¯¯¯¯¯¯¯
    OPEN
    CLOSED
    The vertical lines on the right should be lined up but i cant get it to format. Anyway, how can this be accomplished?
    Thanks.

    We have data object which is a very long text.  Much longer than the 60 char limit.  So, we're thinking of breaking the text up into 60 char chunks.  And then put each chuck beneath one another.  But we need the texts to look like they're all in the same cell.
    I first thought of manipulating the borders using CSS styles.  But I couln't figure out how to tell if I've reached the last line of the text.  (I was trying to use I_Y to navigate through the column.)
    Second thought, merge the cells.  This would be more efficient.
    Thanks.

  • Merge Cells in a blank table

    Can anyone tell me how to merge cells in a blank table. For example - while making the table I may need 3 column in one row and only 2 in the next row. So I merge the cells. I have a laptop and am taking my right index finger and directing the mouse to the cell and then moving and tapping on the adjacent cell with my left index - but I must be doing something wrong because 9 out of 10 times it doesn’t work and I can’t figure out what I’m doing wrong. I’m pulling my hair out.
    THANK YOU

    Zaby,
    You might find it easier to select one cell and then Shift-Arrow to extend the selection.
    I assume that you are just making some kind of form and won't ever want to sort the table. Merging and Splitting cells can gum up the works for subsequent operations, so think before you choose that solution to your formatting problem.
    Jerry

  • Keyboard shortcut to merge cells in a table?

    Does anyone know if there's a keyboard shortcut to merge cells in a table in Pages? That would save me a tremendous amount of time. I've looked in the documentation, and there wasn't one listed.

    It was written MANY times that every user may link a shortcut to every available menu item (I took this shortcut for this forum on 2009/01/20).
    It's not an application feature but a System's one.
    Yvan KOENIG (from FRANCE mardi 9 juin 2009 09:25:22)

  • Applescript InDesign to Merge and Format Table Cells

    The subject line says it all:
    I have a document with a table that covers about 100 pages. The table has five or six columns, 25 to 35 rows. I want to be put my curser in a cell on a row, merge the cells in the row, then apply a paragraph format and a cell format.
    And I have no idea how to do that.
    Is anyone willing to give me a hand?
    Thanks!
    Jon.

    @Jon – See the following blog post:
    Marc Autret
    Improve the Way you Merge Cells in InDesign
    http://www.indiscripts.com/post/2012/04/improve-the-way-you-merge-cells-in-indesign
    Uwe

  • Table cells - Problem with merged cells

    Hi
    I was experiencing very weird behavior with my tables until I realized that it was caused by merged cells
    My script gives a dialog which allows the user to choose from which column to start and from which row.
    As the script iterates through the cells in the selection I was getting weird results
    Through using .select() function I was able to see that depending on the column, some times row 5 could be which seems to be row 3!
    The reason was because of merged cells in that row
    I.e., when some cells are merged together, only the first column of those merged cells is recognized - the others are not
    so it comes out that when merging cells from column 3 to 5, column 3 has a cell in that row, columns 4 and 5 do not, and column 6 does!
    Is there a way to get around this behavior?
    Thanks
    Davey

    I don't understand the point of your post.
    If you're trying to report a problem or "bug" with Pages, that is not the purpose of this user-to-user forum. You should leave feedback for the Pages team on this page.
    I've not had a problem opening Word files with tables in Pages. If you're saying Word can't handle tables with merged cells, then don't use merged cells in files you are going to export as Word. Word & Pages must handle merged table cells differently, as I know both can do that. As far as RTF, Pages can open & export as RTF. Again, if you are going to export as RTF, don't use tables. Neither of these is a fault of Pages, just limitations of the formats/programs.

Maybe you are looking for

  • Google play force close on open

    I just got a slightly used HP touch pad and on setup realized that I needed to use Google play to download apps, after setting up my Google account and singing in insuring wifi access ......Google play opens says "server error retry" and force closes

  • Vendor Down Payment issue

    Dear Expert             While doing F-48 Vendor Down Payment am getting below Error Customer 450822 is not defined in company code 1000 Message no. F5102 Diagnosis No master record was created in company code "1000" for customer number "450822". Syst

  • Advice on external hard drives

    hi i am looking to buy an external hard drive of approx 250GB. I want something that will just plug and play. Ease of use and reliability are key! i don't know where to begin - can anyone recommend one? thanks ibook g4   Mac OS X (10.3.9)  

  • Quiz Issues - Not highlighting selected answers when 'back' button pressed

    Any help would be very much appreciated for this problem. On Captivate 5.5. and have a few quizzes with anything from 18 questions to 37, the user enters their name and it moves onto the question page. For example, the user answers question one and g

  • AcroPDDoc in Windows Server 2008 R2

    Simple line: Acrobat.AcroPDDoc pdfDoc = new Acrobat.AcroPDDoc() Works in Windows XP, but fails in AcroPDDoc in Windows Server 2008 R2. Is it a 64 bit issue?  Or I am missing some installations? Any one delt with this problem?  Returning error: Retrie