1 | /* Copyright (C) 2011 Jan Källman
|
---|
2 | *
|
---|
3 | * This library is free software; you can redistribute it and/or
|
---|
4 | * modify it under the terms of the GNU Lesser General Public
|
---|
5 | * License as published by the Free Software Foundation; either
|
---|
6 | * version 2.1 of the License, or (at your option) any later version.
|
---|
7 |
|
---|
8 | * This library is distributed in the hope that it will be useful,
|
---|
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
11 | * See the GNU Lesser General Public License for more details.
|
---|
12 | *
|
---|
13 | * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
|
---|
14 | * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
|
---|
15 | *
|
---|
16 | * All code and executables are provided "as is" with no warranty either express or implied.
|
---|
17 | * The author accepts no liability for any damage or loss of business that this product may cause.
|
---|
18 | *
|
---|
19 | * Code change notes:
|
---|
20 | *
|
---|
21 | * Author Change Date
|
---|
22 | *******************************************************************************
|
---|
23 | * Mats Alm Added 2015-01-11
|
---|
24 | *******************************************************************************/
|
---|
25 | using System;
|
---|
26 | using System.Collections.Generic;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using OfficeOpenXml.FormulaParsing.ExpressionGraph;
|
---|
30 |
|
---|
31 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions.RefAndLookup
|
---|
32 | {
|
---|
33 | public class Offset : LookupFunction
|
---|
34 | {
|
---|
35 | public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
36 | {
|
---|
37 | var functionArguments = arguments as FunctionArgument[] ?? arguments.ToArray();
|
---|
38 | ValidateArguments(functionArguments, 3);
|
---|
39 | var startRange = ArgToString(functionArguments, 0);
|
---|
40 | var rowOffset = ArgToInt(functionArguments, 1);
|
---|
41 | var colOffset = ArgToInt(functionArguments, 2);
|
---|
42 | int width = 0, height = 0;
|
---|
43 | if (functionArguments.Length > 3)
|
---|
44 | {
|
---|
45 | height = ArgToInt(functionArguments, 3);
|
---|
46 | ThrowExcelErrorValueExceptionIf(() => height == 0, eErrorType.Ref);
|
---|
47 | }
|
---|
48 | if (functionArguments.Length > 4)
|
---|
49 | {
|
---|
50 | width = ArgToInt(functionArguments, 4);
|
---|
51 | ThrowExcelErrorValueExceptionIf(() => width == 0, eErrorType.Ref);
|
---|
52 | }
|
---|
53 |
|
---|
54 | var adr = new ExcelAddress(startRange);
|
---|
55 | var ws = adr.WorkSheet;
|
---|
56 |
|
---|
57 | var fromRow = adr._fromRow + rowOffset;
|
---|
58 | var fromCol = adr._fromCol + colOffset;
|
---|
59 | var toRow = (height != 0 ? height : adr._toRow) + rowOffset;
|
---|
60 | var toCol = (width != 0 ? width : adr._toCol) + colOffset;
|
---|
61 |
|
---|
62 | var newRange = context.ExcelDataProvider.GetRange(ws, fromRow, fromCol, toRow, toCol);
|
---|
63 | if (!newRange.IsMulti)
|
---|
64 | {
|
---|
65 | if (newRange.IsEmpty) return CompileResult.Empty;
|
---|
66 | var val = newRange.GetValue(fromRow, fromCol);
|
---|
67 | if (IsNumeric(val))
|
---|
68 | {
|
---|
69 | return CreateResult(val, DataType.Decimal);
|
---|
70 | }
|
---|
71 | if (val is ExcelErrorValue)
|
---|
72 | {
|
---|
73 | return CreateResult(val, DataType.ExcelError);
|
---|
74 | }
|
---|
75 | return CreateResult(val, DataType.String);
|
---|
76 | }
|
---|
77 | return CreateResult(newRange, DataType.Enumerable);
|
---|
78 | }
|
---|
79 | }
|
---|
80 | }
|
---|