Subject: | didn't make a node |
I've followed the documentation as best I can. I understand
Cell::Autosize to be a drop-in replacement for Cell, allowing one to go:
<cellautosize text="$cust_num" />
When I do this I get:
'CELLAUTOSIZE' (text $cust_num) didn't make a node!
Here is my template:
<workbook>
<worksheet autofilter='A1:J65536' name="Single Pline Customers">
<row>
<cell>Customer Number</cell>
<cell>Major Group</cell>
<cell>Product Line</cell>
<cell>CYTD Sales</cell>
<cell>CYTD Order Count</cell>
<cell>CYTD Freight Charges</cell>
<cell>PYTD Sales</cell>
<cell>PYTD Order Count</cell>
<cell>PYTD Freight Charges</cell>
</row>
<loop name="customers">
<row>
<cellautosize text="$cust_num" />
<cellautosize text="$major_group" />
<cellautosize text="$pline" />
<cellautosize text="$cytd_tot_ord_dol" />
<cellautosize text="$cytd_tot_ord_cnt" />
<cellautosize text="$cytd_tot_ord_frt" />
<cellautosize text="$pytd_tot_ord_dol" />
<cellautosize text="$pytd_tot_ord_cnt" />
<cellautosize text="$pytd_tot_ord_frt" />
</row>
</loop>
</worksheet>
</workbook>
Any ideas? Or is there something wrong? If this isn't how it works,
perhaps the docs should be changed.