blob: e71272d01bdc8d3249c0135ef2c1b97cf73b90fe [file] [log] [blame] [edit]
using System.Collections.Generic;
using System.Linq;
namespace AppsheetEpplus;
public class IfError : ExcelFunction {
public override CompileResult Execute(
IEnumerable<FunctionArgument> arguments,
ParsingContext context) {
ValidateArguments(arguments, 1);
var firstArg = arguments.First();
return GetResultByObject(firstArg.Value);
}
}