Get-MoveRequest -TargetDatabase DEUDB01 | Get-MoveRequestStatistics | select DisplayName, TotalMailboxSize, TotalMailboxItemCount, TotalQueuedDuration, TotalInProgressDuration, TotalSuspendedDuration, CompletionTimestamp | export-csv d:\deumoves.csv -NoTypeInformation
This command retrieves all move requests that were destined for the DEUDB01 database, pipes those to Get-MoveRequestStatistics, then selects certain fields for the report. The results are output to a CSV file so they can be opened in Excel.