You have to be a bit careful with the nomenclature.
There is a big difference between "Insert into array" and "replace array element" (what you really want.
The insert into array function "grows" the array. In the case if a 1D array, the output will be larger by the size of the inserted part. In the case of a 2D array, you add entire rows/columns.
You have a fixed size array and want to replace the current content of a cell (e.g. "empty string") with a new value. Here's one possibility:
Message Edited by altenbach on 05-24-2007 09:06 AM