Pranjal Jain wrote:
> Hi I am new to Ruby.
>
> can any one suggest me how we can write the data into the Excel Sheet
> from the array.
>
>
> Can we use the command like this
>
> $worksheet.Range("b1:b12").Insert = a[k]
>
> Can I insert in excel sheet via the Insert command or some other command
> is used??
>
> Thanks in advance.
check this out:
http://rubyonwindows.blogspot.com/
$worksheet.Range("b1:b12").value=a[k]
-r.
--
Posted via
http://www.ruby-forum.com/.