You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varargs1=func1.Calculate(work);if(args1.Type!=OperandType.BOOLEAN){args1=args1.ToBoolean("Function IF first parameter is error!");if(args1.IsError){returnargs1;}}
18
+
varargs1=func1.Calculate(work);if(args1.Type!=OperandType.BOOLEAN){args1=args1.ToBoolean("Function IF first parameter must be boolean!");if(args1.IsError){returnargs1;}}
varargs1=func1.Calculate(work);if(args1.Type!=OperandType.NUMBER){args1=args1.ToNumber("Function SQRT parameter is error!");if(args1.IsError){returnargs1;}}
80
+
if(args1.NumberValue<0){
81
+
returnOperand.Error("Function SQRT parameter is error!");
varargs1=func1.Calculate(work);if(args1.Type!=OperandType.ARRARY){args1=args1.ToNumber("Function LARGE parameter 1 is error!");if(args1.IsError){returnargs1;}}
352
+
varargs1=func1.Calculate(work);if(args1.Type!=OperandType.ARRARY){args1=args1.ToArray("Function LARGE parameter 1 is error!");if(args1.IsError){returnargs1;}}
350
353
varargs2=func2.Calculate(work);if(args2.Type!=OperandType.NUMBER){args2=args2.ToNumber("Function LARGE parameter 2 is error!");if(args2.IsError){returnargs2;}}
varargs1=func1.Calculate(work);if(args1.Type!=OperandType.ARRARY){args1=args1.ToNumber("Function SMALL parameter 1 is error!");if(args1.IsError){returnargs1;}}
379
+
varargs1=func1.Calculate(work);if(args1.Type!=OperandType.ARRARY){args1=args1.ToArray("Function SMALL parameter 1 is error!");if(args1.IsError){returnargs1;}}
377
380
varargs2=func2.Calculate(work);if(args2.Type!=OperandType.NUMBER){args2=args2.ToNumber("Function SMALL parameter 2 is error!");if(args2.IsError){returnargs2;}}
0 commit comments