using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using OfficeOpenXml.FormulaParsing.ExpressionGraph; | |
namespace OfficeOpenXml.FormulaParsing.Excel.Functions.Logical | |
{ | |
public class IfNa : ExcelFunction | |
{ | |
public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context) | |
{ | |
ValidateArguments(arguments, 1); | |
var firstArg = arguments.First(); | |
return GetResultByObject(firstArg.Value); | |
} | |
} | |
} |