Les Mizzell wrote:
>
> <cfsetting enablecfoutputonly="Yes">
>
> <cfquery name="viewAPP" datasource="myDATA">
>     SELECT * FROM CAT_ORD
>    </cfquery>
>
> <cfcontent type="application/msexcel">

You might want to add a reset attribute here.

> <cfheader name="Content-Disposition" value="filename=myLIST.xls"> --->
>
> <cfoutput><table cols="13"></cfoutput>
> <tr>
>    <td>DATE</td>
>    <td>NAME</td>
>    ...more columns
> </tr>
> <cfoutput query="viewAPP">
> <tr>
>    <td>#HN_DATE#</td>
>    <td>#HN_Name#</td>
>    ...more columns
> </tr></cfoutput>
> <cfoutput></table></cfoutput>
>
> Is working sorta OK. Got a question
>
> 1. One field comes in as a list. I'd like all the values in that list to
> end up in one cell, but regardless of what I try, it insist on putting
> them in individual cells .

Have you tried quoting the list?

Jochem
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to