This code works:
Dim $aArray[] = ["cars","bikes","boats"] $oWB.Activesheet.Cells(1,1).Resize(1,3) = $aArray
but this does not work:
$oWB.Activesheet.Cells(1,1).Resize(1,3) = ["cars","bikes","boats"]
I like the second approach better, what must I change?
Tx, Andre