Results 1 to 8 of 8

Thread: Excel sheet to webpage

  1. #1
    Coder
    Join Date
    Dec 2006
    Posts
    51
    Post Thanks / Like

    Default Excel sheet to webpage

    Sorry if this is has come up before (I'm sure it has), but I tried searching and did not find an answer.

    I'm just trying to get an excel sheet onto my site. I save as a web page but I am then unsure what to do. I want to have the excel sheet inside a div tag on one of my web pages.

    What I've tried so far is to "View as a web page" and then "View source" and try to put this source into my div tags. Is this the correct approach to be taking as the page does not look right when added to my webpage.

    Thanks

  2. #2
    ninja SEO paul's Avatar
    Join Date
    Dec 2006
    Location
    .de
    Posts
    1,501
    Post Thanks / Like

    Default

    You want the table data , or actually open excel ? what if people don't have excel on the computer ?

  3. #3
    Coder
    Join Date
    Dec 2006
    Posts
    51
    Post Thanks / Like

    Default

    sorry if not clear, yes it's the table data displayed, not to open the excel sheet

  4. #4
    ninja SEO paul's Avatar
    Join Date
    Dec 2006
    Location
    .de
    Posts
    1,501
    Post Thanks / Like

    Default

    why don't you use normal HTML for this
    HTML Code:
    <table>
    <tr>
    <th>col 1</th><th>col2</th>
    </tr>
    <tr>
    <td>row 1</td><td>row 2</td>
    </tr>
    </table>

  5. #5
    Coder
    Join Date
    Dec 2006
    Posts
    51
    Post Thanks / Like

    Default

    Well the excel sheet is quite large and it would be nice to be able to import it. Also on occasion the sheet is likely to change, and it would then save creating the table again with html

  6. #6
    ninja SEO paul's Avatar
    Join Date
    Dec 2006
    Location
    .de
    Posts
    1,501
    Post Thanks / Like

    Default

    check out this : Tryit Editor v1.4
    but you have to view it in IE i think
    but this is probably what you are looking for XML Application

  7. #7
    Coder
    Join Date
    Dec 2006
    Posts
    51
    Post Thanks / Like

    Default

    Thanks for the help, but it's not too appealing if it only works in IE. I will investigate further, any other taughts?

  8. #8
    Wannabe Geek
    Join Date
    May 2006
    Posts
    218
    Post Thanks / Like

    Default

    One solution is zohosheets where you keep the functionality of excel:
    Online Spreadsheets - Zoho Sheet
    (not sure if it is free or not)

    If you just want the data table you could do as you have done, save as web page, strip down the code and paste it into your webpage.

    Your code MAY look something like this:

    Code:
    <!--[if !excel]>&nbsp;&nbsp;<![endif]-->
    <!--The following information was generated by Microsoft Office Excel's Publish
    as Web Page wizard.-->
    <!--If the same item is republished from Excel, all information between the DIV
    tags will be replaced.-->
    <!----------------------------->
    <!--START OF OUTPUT FROM EXCEL PUBLISH AS WEB PAGE WIZARD --> <!----------------------------->
    
    <div id="Book1_23242" align=center x:publishsource="Excel">
    
    <table x:str border=0 cellpadding=0 cellspacing=0 width=224 style='border-collapse:
     collapse;table-layout:fixed;width:168pt'>
     <col width=56 span=4 style='width:42pt'>
     <tr height=15 style='height:11.25pt'>
      <td height=15 class=xl1523242 width=56 style='height:11.25pt;width:42pt'>qwe</td>
      <td class=xl1523242 width=56 style='width:42pt'>qwe</td>
      <td class=xl1523242 width=56 style='width:42pt'>qwe</td>
      <td class=xl1523242 width=56 style='width:42pt'>qew</td>
     </tr>
    ..etc etc

    All that crap can be stripped down to:
    Code:
     <table cellpadding=0 cellspacing=0>
     <tr>
      <td>qwe</td>
      <td>qwe</td>
      <td>qwe</td>
      <td>qew</td>
     </tr>
    ... etc etc and then you can add your own styles to pretty-ify it.
    Last edited by enzo; 04-09-2007 at 09:15 AM.

Similar Threads

  1. excel to web
    By bucks in forum Coding Help
    Replies: 6
    Last Post: 02-03-2007, 12:19 AM
  2. What was your first site / webpage?
    By blacknight in forum General Chat
    Replies: 11
    Last Post: 16-08-2006, 12:02 AM

Visitors found this page by searching for:

excel publish as web page wizard

excel sheet to web page without the borders

excel publish page width

excel sheet in web pageexcel WEB PAGE WIZARDexcel publish web page wizardexcels publish as web page wizardexcel publish as web page wizard 2007display excdel sheet in web pageexcel sheet to your webpagerun excel sheet as web pageexcel web page wizard div widthsend div to excel sheetwhere is the coding to post an excel sheet onlineEND OF OUTPUT FROM EXCEL PUBLISH AS WEB PAGE WIZARD

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •