E
egun
I have a macro I use to export Project data to Excel. It has several
options, among which is an option to show or hide summary tasks related to
the filtered tasks. When I choose not to show summary tasks, the VBA code
SelectTaskField Row:=0, Column:=theFieldNames(1), RowRelative:=False, _
Width:=theSel.FieldNameList.Count - 1,
Height:=theSel.Tasks.Count - 1
EditCopy
runs very quickly, usually less than a second. When I show the summary
tasks, the copy command takes many times longer, more than just the increase
in the number of rows being copied. You can verify this manually by applying
a filter with and without summary tasks, selecting all rows, and copying the
data to the clipboard.
Anyone know why the disproportionate amount of time to copy the data with
summary rows? Any workarounds that might speed up the process?
Thanks!
options, among which is an option to show or hide summary tasks related to
the filtered tasks. When I choose not to show summary tasks, the VBA code
SelectTaskField Row:=0, Column:=theFieldNames(1), RowRelative:=False, _
Width:=theSel.FieldNameList.Count - 1,
Height:=theSel.Tasks.Count - 1
EditCopy
runs very quickly, usually less than a second. When I show the summary
tasks, the copy command takes many times longer, more than just the increase
in the number of rows being copied. You can verify this manually by applying
a filter with and without summary tasks, selecting all rows, and copying the
data to the clipboard.
Anyone know why the disproportionate amount of time to copy the data with
summary rows? Any workarounds that might speed up the process?
Thanks!