Results 1 to 4 of 4

Thread: Create html table from excel file

  1. #1
    Join Date
    Mar 2009
    Posts
    60

    Create html table from excel file

    I have created excel file, suppose for example it includes two rows and two column. I want to display the same content of excel file in html file. Can anyone tell me how Create html table from excel file with same table content as saved in excel file.

  2. #2
    Join Date
    May 2008
    Posts
    2,297

    Re: Create html table from excel file

    Tables in html are created with <table> tag. A table is divided into rows and column (<tr> tag ) is used. To add data in to row (adding cells) td tag is used.
    For example :
    Code:
    <table border="2">
    <tr>
    <td>row 2, cell 2</td>
    <td>row 2, cell 2</td>
    </tr>
    <tr>
    <td>row 2, cell 2</td>
    <td>row 2, cell 2</td>
    </tr>
    </table>

  3. #3
    Join Date
    Jan 2009
    Posts
    199

    Re: Create html table from excel file

    You can create HTML table form excel by using click to Convert adds toolbars and menus to Word, Excel and PowerPoint, allowing users true one-click convert doc to HTML and PDF file creation. Convert Excel to HTML in the matter of no time at all!

    Download Click to Convert

  4. #4
    Join Date
    Dec 2008
    Posts
    177

    Re: Create html table from excel file

    You cancreate html table from excel file by following procedure :
    Save the Excel file as tab-delimited text and then search for (^t) in text file and replace each (^t) tag with </TD><TD>. Search (^p) and replace it with </TD> {this td stands for table data } </TR> {it stands for table row} ^p<TR><TD>. Add the <TABLE> tag at the top and </TABLE> at the end and you're ready to copy the document into your HTML page.

Similar Threads

  1. Convert Excel data to HTML Table
    By Chalina in forum Software Development
    Replies: 2
    Last Post: 04-08-2009, 11:21 PM
  2. How to Create super thin table borders in html
    By CAILYN in forum Software Development
    Replies: 3
    Last Post: 18-06-2009, 11:41 PM
  3. Insertion of clean Excel data into oracle table using html
    By Valerian in forum Software Development
    Replies: 3
    Last Post: 13-06-2009, 09:34 PM
  4. How to create scrollbar around the table in HTML
    By Ralph Lauren in forum Software Development
    Replies: 3
    Last Post: 14-05-2009, 12:51 PM
  5. Importing HTML table in a Spreadsheet - Excel 2007
    By Aarif in forum Tips & Tweaks
    Replies: 1
    Last Post: 01-12-2008, 02:35 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,964,409.44682 seconds with 17 queries