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