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 2014-01-06
|
---|
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.Math
|
---|
32 | {
|
---|
33 | public class Rounddown : ExcelFunction
|
---|
34 | {
|
---|
35 | public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
36 | {
|
---|
37 | ValidateArguments(arguments, 2);
|
---|
38 | var number = ArgToDecimal(arguments, 0);
|
---|
39 | var nDecimals = ArgToInt(arguments, 1);
|
---|
40 |
|
---|
41 | var nFactor = number < 0 ? -1 : 1;
|
---|
42 | number *= nFactor;
|
---|
43 |
|
---|
44 | double result;
|
---|
45 | if (nDecimals > 0)
|
---|
46 | {
|
---|
47 | result = RoundDownDecimalNumber(number, nDecimals);
|
---|
48 | }
|
---|
49 | else
|
---|
50 | {
|
---|
51 | result = (int)System.Math.Floor(number);
|
---|
52 | result = result - (result % System.Math.Pow(10, (nDecimals*-1)));
|
---|
53 | }
|
---|
54 | return CreateResult(result * nFactor, DataType.Decimal);
|
---|
55 | }
|
---|
56 |
|
---|
57 | private static double RoundDownDecimalNumber(double number, int nDecimals)
|
---|
58 | {
|
---|
59 | var integerPart = System.Math.Floor(number);
|
---|
60 | var decimalPart = number - integerPart;
|
---|
61 | decimalPart = System.Math.Pow(10d, nDecimals)*decimalPart;
|
---|
62 | decimalPart = System.Math.Truncate(decimalPart)/System.Math.Pow(10d, nDecimals);
|
---|
63 | var result = integerPart + decimalPart;
|
---|
64 | return result;
|
---|
65 | }
|
---|
66 | }
|
---|
67 | }
|
---|