#20964
Yutaka Emura
Keymaster

Hello,

I wrote a macro that just that for you:

iColumn = document.selection.GetActivePointX( eePosCell );
nLines = document.GetLines();
if( document.GetLine( nLines ) == "" )  nLines--;
sText = "";
for( y = 1; y <= nLines; y++ ) {
	sText += document.GetCell( y, iColumn, eeCellIncludeNone ) + "\r\n";
}
clipboardData.setData("Text", sText );