ColdFusion Экспорт в Excel - PullRequest
0 голосов
/ 12 июня 2018

У меня есть файл Excel, который был экспортирован из данных ColdFusion.Мой вопрос: есть ли у нас возможность переместить ячейки столбца U & V слева от столбца B с помощью ColdFusion.Вот мой код ниже:

   <cfheader name="Content-Disposition" value="attachment; filename=Reporting.xls"> 
    <cfcontent type="application/vnd.ms-excel">
    <table cellspacing="1" border="0">
        <thead>
            <tr>
                <th colspan="3" style="border-style:none;">&nbsp;</th>
                <th class="cellSpacer">&nbsp;</th>
                <th colspan="7" class="colorHeader">Major Maintenance Expenditure ($k)</th>
                <th class="cellSpacer">&nbsp;</th>
                <th colspan="7" class="colorHeader">Capital Expenditure ($k)</th>
                <th class="cellSpacer">&nbsp;</th>
                <th colspan="7" class="colorHeader">Asset Retirement Obligations ($k)</th>
                <th class="cellSpacer">&nbsp;</th>
                <th colspan="7" class="colorHeader">Environmental Liability ($k)</th>
                <th class="cellSpacer">&nbsp;</th>

            </tr>
<cfoutput query="Myqry">
           <tr>
               <td>#Myquery.columns1#</td>
           </tr>
</cfoutput>
</table>

1 Ответ

0 голосов
/ 13 июня 2018
...