excel多条件查找返回值答:Function SpecialSum(Str1 As String, Val1 As Single, Rng1 As Range)If Val1 > WorksheetFunction.VLookup(Str1, Rng1, 3, False) ThenSpecialSum = Val1 * WorksheetFunction.VLookup(Str1, Rng1, 2, False)ElseSpecialSum = WorksheetFunction.VLookup(Str1, Rng1, 4, False)End IfEnd ...