Ask a Question related to Coldfusion Database Access, Design and Development.
-
whatsaname #1
Download to Excel
Here is my code sofar.
<cfsetting enablecfoutputonly="Yes">
<cfquery name="laden" datasource="ISSUE">
SELECT * FROM tbl_issue ORDER BY issue_number ASC
</cfquery>
<cfset TabChar = Chr(9)>
<cfset NewLine = Chr(13) & Chr(10)>
<cfcontent type="application/msexcel">
<cfheader name="Content-Disposition" value="filename=issue.xls">
<cfloop query="laden">
<cfoutput>#laden.issue_number##TabChar##laden.inte rnal_nr##TabChar##laden.region
##TabChar##laden.channel##TabChar##laden.issue_typ e##TabChar##laden.vendor##TabC
har##laden.carrier##TabChar##laden.qrb_cat##TabCha r##laden.customer_impact##NewL
ine#</cfoutput>
</cfloop>
whatsaname Guest
-
Download to Word & Excel with defined templates
I'm needing to access a pre-defined view , take the record set and then download the data to either/or an MS Word or Excel file with the final... -
Download query results to Excel file
Hello, I am trying to create this reporting tool - where users can select the criteria and generate a montly report - which I wanted them to... -
Excel and download
pike1510 wrote: Not sure if this is relevant, but I had a similar problem with file corruption at the client end due to a some funky mod_gzip... -
Place Excel into table with ability to link when native Excel file is updated.
Is it possible to place an Excel file into InDesign and create a link so that any changes made later to the Excel file can be updated in InDesign? ... -
[PHP] PHP, Excel, jpgraph - can the graph be included in the Excel output?
You need a class that can create xls files with images. Or you can create a Web Archive: http://officeupdate.microsoft.com/office/webarchive.htm ...



Reply With Quote

