You can copy and paste a report into a spreadsheet, but sometimes you want more.
From the Portfolio view, you can File->Print. That will copy the portfolio info to an HTML file.
Here is a batch file I use to then copy the file into the current folder:
=================Begin get_temp.bat========================
rem get_temp.bat: copy last print attempt from Money Portfolio print attempt.
copy %LOCALAPPDATA%\Temp\temp.htm temp.htm
=================End get_temp.bat========================
I put my batch file into a folder that is in the search path, and all I need to type is get_temp to execute the copy. If I then open temp.htm in a spreadsheet, I can do whatever I want with the data. One of my tricks is to save the spreadsheet as a CSV. I can then do a find/grep on temp.csv to do some special stuff.