| using System.Collections.Generic; |
| using System.Linq; |
| |
| namespace AppsheetEpplus; |
| |
| public class Large : ExcelFunction { |
| public override CompileResult Execute( |
| IEnumerable<FunctionArgument> arguments, |
| ParsingContext context) { |
| ValidateArguments(arguments, 2); |
| var args = arguments.ElementAt(0); |
| var index = ArgToInt(arguments, 1) - 1; |
| var values = ArgsToDoubleEnumerable(new List<FunctionArgument> { args }, context); |
| ThrowExcelErrorValueExceptionIf(() => index < 0 || index >= values.Count(), eErrorType.Num); |
| var result = values.OrderByDescending(x => x).ElementAt(index); |
| return CreateResult(result, DataType.Decimal); |
| } |
| } |