<< Click to Display Table of Contents >> Results.SumByType Property |
Returns the number of specified differences found. Read only Long value.
expression.SumByType(Type,id)
expression. A variable representing a Results object.
Name |
Type |
Description |
Type |
Constant selects group of results to return. |
|
id |
Optional. Only needed for MissingCols and MissingRows. Leave blank to return combined results. |
This example prints out some differences.
With oProj.Results
'print out entered value/formula differences
Debug.Print "Different values/formulas: " & .SumByType(ResultType_DifferentContent)
'print out missing rows in source file
Debug.Print "Missing Rows Source: " & .SumByType(ResultType_MissingRow, sideID_src)
'print out missing rows in target file
Debug.Print "Missing Rows Target: " & .SumByType(ResultType_MissingRow, sideID_tgt)
End With