Html to excel (advanced)

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Html to excel (advanced)

    I know how to add the following code to the top of the a .cfm file in order to
    put the code in an excel format. <!--- These two lines are what put this into
    an excel spread sheet format---> <CFHEADER NAME='content-disposition'
    VALUE='attachment; filename=results.xls'> <!--- Set the content type of the
    file.---> <CFCONTENT TYPE='text/tabdelimited'> This is the easy part. But now
    I have spoiled my users and they want to split the data up into different
    sheets in the .xls file. Does anyone have any idea how to do this? I've looked
    everywhere but cannot determine if this can be done. Be my hero and show me a
    way. Thanks Dave

    david_sternberg Guest

  2. Similar Questions and Discussions

    1. Advanced HTML Editor
      Hi folks, Has anyone heard if George Petrov's 'Advanced HTML Editor' will work or is going to be made compatible with DW CS3?
    2. Excel & html
      I would like to nest excel data in a pre-configured html table (easy enough). The part I am trying to figure out is how to get the webpage data to...
    3. Excel/Word to HTML
      I'm looking for a script that I can cron to look in a directory and parse every M$ file into a straight HTML file, regardless of it being Wird,...
    4. Excel to HTML
      I am using Perl's Spreadsheet Module to write a nicely formatted Report. Now the customer want to convert it into "HTML" format, keeping the same...
    5. HTML to Excel Chart
      Hi, Recently, I developed some code to export DataGrid to excel base on the html stream technology. But that one works only with worksheet cell....
  3. #2

    Default Re: Html to excel (advanced)

    Hi Dave, You definitely have to interact with the Excel DLL to do this, or,
    heaven forbid, roll your own mso:namespace stuff. I don't envy you. Someone
    out there probably has some concrete examples; keep your ear to the ground.

    philh Guest

  4. #3

    Default Re: Html to excel (advanced)

    If you're using CFMX, you can use java to access the Excel format using [url]http://www.d-ross.org/index.cfm?objectid=9C65ECEC-508B-E116-6F8A9F878188D7CA[/url] has code examples.
    cf_menace Guest

  5. #4

    Default Re: Html to excel (advanced)

    Thanks. I'm just going to tell them. It can't be done. I have too many other things to do that require my attention.

    Dave
    david_sternberg Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139