У меня есть файл 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;"> </th>
<th class="cellSpacer"> </th>
<th colspan="7" class="colorHeader">Major Maintenance Expenditure ($k)</th>
<th class="cellSpacer"> </th>
<th colspan="7" class="colorHeader">Capital Expenditure ($k)</th>
<th class="cellSpacer"> </th>
<th colspan="7" class="colorHeader">Asset Retirement Obligations ($k)</th>
<th class="cellSpacer"> </th>
<th colspan="7" class="colorHeader">Environmental Liability ($k)</th>
<th class="cellSpacer"> </th>
</tr>
<cfoutput query="Myqry">
<tr>
<td>#Myquery.columns1#</td>
</tr>
</cfoutput>
</table>