Skip Menu |

This queue is for tickets about the Excel-Template-Element-Cell-AutoSize CPAN distribution.

Report information
The Basics
Id: 62113
Status: new
Priority: 0/
Queue: Excel-Template-Element-Cell-AutoSize

People
Owner: Nobody in particular
Requestors: mike [...] mikebaas.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.04
Fixed in: (no value)



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.