http://qs321.pair.com?node_id=1231210


in reply to Re^2: How to modify column in WriteExcel?
in thread How to modify column in WriteExcel?

If this is the output of print Dumper $url; then you need to use $url->[0][0] instead of $url->[0] (the latter being the same as ${$url}[0]).

Update: or ${${$url}[0]}[0] if you prefer.