├── .gitattributes ├── .gitignore ├── README.md ├── distribution ├── pom.xml └── src │ └── main │ ├── assembly │ └── distributionDefault.xml │ └── scripts │ ├── genjobdef.bat │ ├── grammarcheck.bat │ └── run.bat ├── examples ├── customers.txt ├── customers1.txt ├── customers11.txt ├── customers2.txt ├── exceljobtemplate.xls ├── samplejob.xml ├── samplejobtemplate.xml └── state.txt ├── libbase ├── ChangeLog.txt ├── README.txt ├── build-res │ └── subfloor.xml ├── build.properties ├── build.xml ├── devresource │ ├── META-INF │ │ └── MANIFEST.MF │ ├── commons-logging.properties │ └── simplelog.properties ├── eclipse-bin │ ├── .gitignore │ ├── META-INF │ │ └── MANIFEST.MF │ ├── commons-logging.properties │ ├── libbase.properties │ ├── org │ │ └── pentaho │ │ │ └── reporting │ │ │ └── libraries │ │ │ └── base │ │ │ ├── Util.gwt.xml │ │ │ └── libbase.properties │ └── simplelog.properties ├── ivy.xml ├── ivysettings.xml ├── libbase.eml ├── licence-LGPL.txt ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── pentaho │ │ └── reporting │ │ └── libraries │ │ └── base │ │ ├── LibBaseBoot.java │ │ ├── LibBaseInfo.java │ │ ├── Util.gwt.xml │ │ ├── boot │ │ ├── AbstractBoot.java │ │ ├── AbstractModule.java │ │ ├── DefaultModuleInfo.java │ │ ├── DefaultObjectFactory.java │ │ ├── DefaultObjectFactoryBuilder.java │ │ ├── Module.java │ │ ├── ModuleInfo.java │ │ ├── ModuleInitializeException.java │ │ ├── ModuleInitializer.java │ │ ├── ObjectFactory.java │ │ ├── ObjectFactoryBuilder.java │ │ ├── ObjectFactoryException.java │ │ ├── PackageManager.java │ │ ├── PackageSorter.java │ │ ├── PackageState.java │ │ ├── SingletonHint.java │ │ └── SubSystem.java │ │ ├── config │ │ ├── Configuration.java │ │ ├── DefaultConfiguration.java │ │ ├── ExtendedConfiguration.java │ │ ├── ExtendedConfigurationWrapper.java │ │ ├── HierarchicalConfiguration.java │ │ ├── ModifiableConfiguration.java │ │ ├── PropertyFileConfiguration.java │ │ ├── StringEnumeration.java │ │ ├── SystemPropertyConfiguration.java │ │ └── metadata │ │ │ ├── ConfigurationDomain.java │ │ │ ├── ConfigurationMetaData.java │ │ │ ├── ConfigurationMetaDataEntry.java │ │ │ └── ConfigurationMetaDataParser.java │ │ ├── encoder │ │ ├── ImageEncoder.java │ │ ├── ImageEncoderRegistry.java │ │ ├── JpegImageEncoder.java │ │ └── UnsupportedEncoderException.java │ │ ├── libbase.properties │ │ ├── util │ │ ├── ArgumentNullException.java │ │ ├── BulkDataUtility.java │ │ ├── CSVQuoter.java │ │ ├── CSVTokenizer.java │ │ ├── ClassQueryTool.java │ │ ├── DebugLog.java │ │ ├── Empty.java │ │ ├── EmptyIterator.java │ │ ├── EmptyPerformanceLoggingStopWatch.java │ │ ├── FastStack.java │ │ ├── FilesystemFilter.java │ │ ├── FloatDimension.java │ │ ├── FormattedMessage.java │ │ ├── GenericObjectTable.java │ │ ├── HashNMap.java │ │ ├── IOUtils.java │ │ ├── LFUMap.java │ │ ├── LinkedMap.java │ │ ├── LoggingStopWatch.java │ │ ├── MemoryByteArrayOutputStream.java │ │ ├── MemoryStringReader.java │ │ ├── MemoryStringWriter.java │ │ ├── MemoryUsageMessage.java │ │ ├── Messages.java │ │ ├── NullOutputStream.java │ │ ├── ObjectTable.java │ │ ├── ObjectUtilities.java │ │ ├── PadMessage.java │ │ ├── PasswordObscurification.java │ │ ├── PasswordObscurification48.java │ │ ├── PerformanceLoggingStopWatch.java │ │ ├── PngEncoder.java │ │ ├── ResourceBundleSupport.java │ │ ├── SecurePasswordEncryption.java │ │ ├── SqlCommentScrubber.java │ │ ├── SqlScriptUtils.java │ │ ├── StackableException.java │ │ ├── StackableRuntimeException.java │ │ ├── StopWatch.java │ │ ├── StringBufferWriter.java │ │ ├── StringUtils.java │ │ ├── SystemInformation.java │ │ ├── URLEncoder.java │ │ ├── UrlBuilder.java │ │ └── WaitingImageObserver.java │ │ └── versioning │ │ ├── DependencyInformation.java │ │ ├── Licenses.java │ │ ├── ProjectInformation.java │ │ └── VersionHelper.java │ └── test1 │ └── java │ ├── libbase.properties │ └── org │ └── pentaho │ └── reporting │ └── libraries │ └── base │ ├── boot │ ├── ObjectFactorySingleton.java │ └── ObjectFactoryTest.java │ ├── encoder │ └── ImageEncoderTest.java │ ├── util │ ├── BulkDataUtilityTest.java │ ├── CSVTokenizerTest.java │ ├── IOUtilsTest.java │ ├── LFUMapTest.java │ ├── LinkedMapTest.java │ ├── PasswordObscurificationTest.java │ ├── SecurePasswordEncryptionTest.java │ ├── StringUtilsTest.java │ └── UrlBuilderTest.java │ └── versioning │ └── VersionHelperTest.java ├── libformula ├── ChangeLog.txt ├── README.txt ├── build-res │ └── subfloor.xml ├── build.properties ├── build.xml ├── demo │ └── org │ │ └── pentaho │ │ └── reporting │ │ └── libraries │ │ └── formula │ │ └── demo │ │ ├── DemoApplication.java │ │ ├── DemoFormulaContext.java │ │ ├── FormulaParsePosition.java │ │ └── PrintAllFunctions.java ├── devresource │ └── META-INF │ │ └── MANIFEST.MF ├── eclipse-bin │ ├── .gitignore │ ├── META-INF │ │ └── MANIFEST.MF │ └── org │ │ └── pentaho │ │ └── reporting │ │ └── libraries │ │ └── formula │ │ ├── function │ │ ├── database │ │ │ ├── BeginsWith-Function.properties │ │ │ ├── Contains-Function.properties │ │ │ ├── EndsWith-Function.properties │ │ │ ├── Equals-Function.properties │ │ │ ├── In-Function.properties │ │ │ ├── Like-Function.properties │ │ │ └── category.properties │ │ ├── datetime │ │ │ ├── Date-Function.properties │ │ │ ├── DateDif-Function.properties │ │ │ ├── DateTimeValue-Function.properties │ │ │ ├── DateValue-Function.properties │ │ │ ├── Day-Function.properties │ │ │ ├── Days-Function.properties │ │ │ ├── Hour-Function.properties │ │ │ ├── Minute-Function.properties │ │ │ ├── Month-Function.properties │ │ │ ├── MonthEnd-Function.properties │ │ │ ├── Now-Function.properties │ │ │ ├── PrevWeekday-Function.properties │ │ │ ├── Second-Function.properties │ │ │ ├── Time-Function.properties │ │ │ ├── TimeValue-Function.properties │ │ │ ├── Today-Function.properties │ │ │ ├── WeekDay-Function.properties │ │ │ ├── Year-Function.properties │ │ │ ├── Yesterday-Function.properties │ │ │ └── category.properties │ │ ├── financial │ │ │ └── category.properties │ │ ├── information │ │ │ ├── Choose-Function.properties │ │ │ ├── Count-Function.properties │ │ │ ├── CountA-Function.properties │ │ │ ├── CountBlank-Function.properties │ │ │ ├── Error-Function.properties │ │ │ ├── HasChanged-Function.properties │ │ │ ├── Index-Function.properties │ │ │ ├── IsBlank-Function.properties │ │ │ ├── IsErr-Function.properties │ │ │ ├── IsError-Function.properties │ │ │ ├── IsEven-Function.properties │ │ │ ├── IsLogical-Function.properties │ │ │ ├── IsNa-Function.properties │ │ │ ├── IsNonText-Function.properties │ │ │ ├── IsNumber-Function.properties │ │ │ ├── IsOdd-Function.properties │ │ │ ├── IsRef-Function.properties │ │ │ ├── IsText-Function.properties │ │ │ ├── Lookup-Function.properties │ │ │ ├── Na-Function.properties │ │ │ ├── Value-Function.properties │ │ │ └── category.properties │ │ ├── logical │ │ │ ├── And-Function.properties │ │ │ ├── False-Function.properties │ │ │ ├── If-Function.properties │ │ │ ├── IfNa-Function.properties │ │ │ ├── Not-Function.properties │ │ │ ├── Or-Function.properties │ │ │ ├── True-Function.properties │ │ │ ├── Xor-Function.properties │ │ │ └── category.properties │ │ ├── math │ │ │ ├── Abs-Function.properties │ │ │ ├── Acos-Function.properties │ │ │ ├── Acosh-Function.properties │ │ │ ├── Asin-Function.properties │ │ │ ├── Atan-Function.properties │ │ │ ├── Atan2-Function.properties │ │ │ ├── Average-Function.properties │ │ │ ├── AverageA-Function.properties │ │ │ ├── Cos-Function.properties │ │ │ ├── Even-Function.properties │ │ │ ├── Exp-Function.properties │ │ │ ├── Ln-Function.properties │ │ │ ├── Log-Function.properties │ │ │ ├── Log10-Function.properties │ │ │ ├── Max-Function.properties │ │ │ ├── MaxA-Function.properties │ │ │ ├── Min-Function.properties │ │ │ ├── MinA-Function.properties │ │ │ ├── Mod-Function.properties │ │ │ ├── N-Function.properties │ │ │ ├── Odd-Function.properties │ │ │ ├── Pi-Function.properties │ │ │ ├── Power-Function.properties │ │ │ ├── Sin-Function.properties │ │ │ ├── Sqrt-Function.properties │ │ │ ├── Sum-Function.properties │ │ │ ├── SumA-Function.properties │ │ │ ├── Var-Function.properties │ │ │ └── category.properties │ │ ├── rounding │ │ │ ├── Int-Function.properties │ │ │ └── category.properties │ │ ├── text │ │ │ ├── Asc-Function.properties │ │ │ ├── Char-Function.properties │ │ │ ├── Clean-Function.properties │ │ │ ├── Code-Function.properties │ │ │ ├── Concatenate-Function.properties │ │ │ ├── Dollar-Function.properties │ │ │ ├── Exact-Function.properties │ │ │ ├── Find-Function.properties │ │ │ ├── Fixed-Function.properties │ │ │ ├── Left-Function.properties │ │ │ ├── Len-Function.properties │ │ │ ├── Lower-Function.properties │ │ │ ├── Message-Function.properties │ │ │ ├── Mid-Function.properties │ │ │ ├── Proper-Function.properties │ │ │ ├── Replace-Function.properties │ │ │ ├── Rept-Function.properties │ │ │ ├── Right-Function.properties │ │ │ ├── Search-Function.properties │ │ │ ├── StringCount-Function.properties │ │ │ ├── Substitute-Function.properties │ │ │ ├── T-Function.properties │ │ │ ├── Text-Function.properties │ │ │ ├── Trim-Function.properties │ │ │ ├── URLEncode-Function.properties │ │ │ ├── Unichar-Function.properties │ │ │ ├── Unicode-Function.properties │ │ │ ├── Upper-Function.properties │ │ │ └── category.properties │ │ └── userdefined │ │ │ ├── ArrayConcatenate-Function.properties │ │ │ ├── ArrayContains-Function.properties │ │ │ ├── ArrayLeft-Function.properties │ │ │ ├── ArrayMid-Function.properties │ │ │ ├── ArrayRight-Function.properties │ │ │ ├── CsvArray-Function.properties │ │ │ ├── CsvText-Function.properties │ │ │ ├── NormalizeArray-Function.properties │ │ │ ├── Null-Function.properties │ │ │ ├── ParseDate-Function.properties │ │ │ ├── SequenceQuoter-Function.properties │ │ │ └── category.properties │ │ ├── libformula.properties │ │ ├── messages.properties │ │ └── parser │ │ └── Parser.jj ├── ivy.xml ├── ivysettings.xml ├── libformula.eml ├── licence-LGPL.txt ├── pom.xml ├── src │ └── main │ │ └── java │ │ └── org │ │ └── pentaho │ │ └── reporting │ │ └── libraries │ │ └── formula │ │ ├── CustomErrorValue.java │ │ ├── DefaultFormulaContext.java │ │ ├── DefaultFormulaContextFactory.java │ │ ├── DefaultLocalizationContext.java │ │ ├── ErrorValue.java │ │ ├── EvaluationException.java │ │ ├── Formula.java │ │ ├── FormulaContext.java │ │ ├── FormulaContextFactory.java │ │ ├── LibFormulaBoot.java │ │ ├── LibFormulaErrorValue.java │ │ ├── LibFormulaInfo.java │ │ ├── LocalizationContext.java │ │ ├── Messages.java │ │ ├── function │ │ ├── AbstractFunctionCategory.java │ │ ├── AbstractFunctionDescription.java │ │ ├── DefaultFunctionDescription.java │ │ ├── DefaultFunctionRegistry.java │ │ ├── Function.java │ │ ├── FunctionCategory.java │ │ ├── FunctionDescription.java │ │ ├── FunctionRegistry.java │ │ ├── InvalidFunctionCategory.java │ │ ├── ParameterCallback.java │ │ ├── database │ │ │ ├── BeginsWith-Function.properties │ │ │ ├── BeginsWithFunction.java │ │ │ ├── BeginsWithFunctionDescription.java │ │ │ ├── Contains-Function.properties │ │ │ ├── ContainsFunction.java │ │ │ ├── ContainsFunctionDescription.java │ │ │ ├── DatabaseFunctionCategory.java │ │ │ ├── EndsWith-Function.properties │ │ │ ├── EndsWithFunction.java │ │ │ ├── EndsWithFunctionDescription.java │ │ │ ├── Equals-Function.properties │ │ │ ├── EqualsFunction.java │ │ │ ├── EqualsFunctionDescription.java │ │ │ ├── In-Function.properties │ │ │ ├── InFunction.java │ │ │ ├── InFunctionDescription.java │ │ │ ├── Like-Function.properties │ │ │ ├── LikeFunction.java │ │ │ ├── LikeFunctionDescription.java │ │ │ └── category.properties │ │ ├── datetime │ │ │ ├── Date-Function.properties │ │ │ ├── DateAddFunction.java │ │ │ ├── DateAddFunctionDescription.java │ │ │ ├── DateDif-Function.properties │ │ │ ├── DateDifFunction.java │ │ │ ├── DateDifFunctionDescription.java │ │ │ ├── DateFunction.java │ │ │ ├── DateFunctionDescription.java │ │ │ ├── DateTimeFunctionCategory.java │ │ │ ├── DateTimeValue-Function.properties │ │ │ ├── DateTimeValueFunction.java │ │ │ ├── DateTimeValueFunctionDescription.java │ │ │ ├── DateValue-Function.properties │ │ │ ├── DateValueFunction.java │ │ │ ├── DateValueFunctionDescription.java │ │ │ ├── Day-Function.properties │ │ │ ├── DayFunction.java │ │ │ ├── DayFunctionDescription.java │ │ │ ├── Days-Function.properties │ │ │ ├── DaysFunction.java │ │ │ ├── DaysFunctionDescription.java │ │ │ ├── Hour-Function.properties │ │ │ ├── HourFunction.java │ │ │ ├── HourFunctionDescription.java │ │ │ ├── Minute-Function.properties │ │ │ ├── MinuteFunction.java │ │ │ ├── MinuteFunctionDescription.java │ │ │ ├── Month-Function.properties │ │ │ ├── MonthEnd-Function.properties │ │ │ ├── MonthEndFunction.java │ │ │ ├── MonthEndFunctionDescription.java │ │ │ ├── MonthFunction.java │ │ │ ├── MonthFunctionDescription.java │ │ │ ├── Now-Function.properties │ │ │ ├── NowFunction.java │ │ │ ├── NowFunctionDescription.java │ │ │ ├── PrevWeekday-Function.properties │ │ │ ├── PrevWeekdayFunction.java │ │ │ ├── PrevWeekdayFunctionDescription.java │ │ │ ├── Second-Function.properties │ │ │ ├── SecondFunction.java │ │ │ ├── SecondFunctionDescription.java │ │ │ ├── Time-Function.properties │ │ │ ├── TimeFunction.java │ │ │ ├── TimeFunctionDescription.java │ │ │ ├── TimeValue-Function.properties │ │ │ ├── TimeValueFunction.java │ │ │ ├── TimeValueFunctionDescription.java │ │ │ ├── Today-Function.properties │ │ │ ├── TodayFunction.java │ │ │ ├── TodayFunctionDescription.java │ │ │ ├── WeekDay-Function.properties │ │ │ ├── WeekDayFunction.java │ │ │ ├── WeekDayFunctionDescription.java │ │ │ ├── Year-Function.properties │ │ │ ├── YearFunction.java │ │ │ ├── YearFunctionDescription.java │ │ │ ├── Yesterday-Function.properties │ │ │ ├── YesterdayFunction.java │ │ │ ├── YesterdayFunctionDescription.java │ │ │ └── category.properties │ │ ├── financial │ │ │ ├── FinancialFunctionCategory.java │ │ │ └── category.properties │ │ ├── information │ │ │ ├── Choose-Function.properties │ │ │ ├── ChooseFunction.java │ │ │ ├── ChooseFunctionDescription.java │ │ │ ├── Count-Function.properties │ │ │ ├── CountA-Function.properties │ │ │ ├── CountAFunction.java │ │ │ ├── CountAFunctionDescription.java │ │ │ ├── CountBlank-Function.properties │ │ │ ├── CountBlankFunction.java │ │ │ ├── CountBlankFunctionDescription.java │ │ │ ├── CountFunction.java │ │ │ ├── CountFunctionDescription.java │ │ │ ├── Error-Function.properties │ │ │ ├── ErrorFunction.java │ │ │ ├── ErrorFunctionDescription.java │ │ │ ├── HasChanged-Function.properties │ │ │ ├── HasChangedFunction.java │ │ │ ├── HasChangedFunctionDescription.java │ │ │ ├── Index-Function.properties │ │ │ ├── IndexFunction.java │ │ │ ├── IndexFunctionDescription.java │ │ │ ├── InformationFunctionCategory.java │ │ │ ├── IsBlank-Function.properties │ │ │ ├── IsBlankFunction.java │ │ │ ├── IsBlankFunctionDescription.java │ │ │ ├── IsErr-Function.properties │ │ │ ├── IsErrFunction.java │ │ │ ├── IsErrFunctionDescription.java │ │ │ ├── IsError-Function.properties │ │ │ ├── IsErrorFunction.java │ │ │ ├── IsErrorFunctionDescription.java │ │ │ ├── IsEven-Function.properties │ │ │ ├── IsEvenFunction.java │ │ │ ├── IsEvenFunctionDescription.java │ │ │ ├── IsLogical-Function.properties │ │ │ ├── IsLogicalFunction.java │ │ │ ├── IsLogicalFunctionDescription.java │ │ │ ├── IsNa-Function.properties │ │ │ ├── IsNaFunction.java │ │ │ ├── IsNaFunctionDescription.java │ │ │ ├── IsNonText-Function.properties │ │ │ ├── IsNonTextFunction.java │ │ │ ├── IsNonTextFunctionDescription.java │ │ │ ├── IsNumber-Function.properties │ │ │ ├── IsNumberFunction.java │ │ │ ├── IsNumberFunctionDescription.java │ │ │ ├── IsOdd-Function.properties │ │ │ ├── IsOddFunction.java │ │ │ ├── IsOddFunctionDescription.java │ │ │ ├── IsRef-Function.properties │ │ │ ├── IsRefFunction.java │ │ │ ├── IsRefFunctionDescription.java │ │ │ ├── IsText-Function.properties │ │ │ ├── IsTextFunction.java │ │ │ ├── IsTextFunctionDescription.java │ │ │ ├── Lookup-Function.properties │ │ │ ├── LookupFunction.java │ │ │ ├── LookupFunctionDescription.java │ │ │ ├── Na-Function.properties │ │ │ ├── NaFunction.java │ │ │ ├── NaFunctionDescription.java │ │ │ ├── Value-Function.properties │ │ │ ├── ValueFunction.java │ │ │ ├── ValueFunctionDescription.java │ │ │ └── category.properties │ │ ├── logical │ │ │ ├── And-Function.properties │ │ │ ├── AndFunction.java │ │ │ ├── AndFunctionDescription.java │ │ │ ├── False-Function.properties │ │ │ ├── FalseFunction.java │ │ │ ├── FalseFunctionDescription.java │ │ │ ├── If-Function.properties │ │ │ ├── IfFunction.java │ │ │ ├── IfFunctionDescription.java │ │ │ ├── IfNa-Function.properties │ │ │ ├── IfNaFunction.java │ │ │ ├── IfNaFunctionDescription.java │ │ │ ├── LogicalFunctionCategory.java │ │ │ ├── Not-Function.properties │ │ │ ├── NotFunction.java │ │ │ ├── NotFunctionDescription.java │ │ │ ├── Or-Function.properties │ │ │ ├── OrFunction.java │ │ │ ├── OrFunctionDescription.java │ │ │ ├── True-Function.properties │ │ │ ├── TrueFunction.java │ │ │ ├── TrueFunctionDescription.java │ │ │ ├── Xor-Function.properties │ │ │ ├── XorFunction.java │ │ │ ├── XorFunctionDescription.java │ │ │ └── category.properties │ │ ├── math │ │ │ ├── Abs-Function.properties │ │ │ ├── AbsFunction.java │ │ │ ├── AbsFunctionDescription.java │ │ │ ├── Acos-Function.properties │ │ │ ├── AcosFunction.java │ │ │ ├── AcosFunctionDescription.java │ │ │ ├── Acosh-Function.properties │ │ │ ├── AcoshFunction.java │ │ │ ├── AcoshFunctionDescription.java │ │ │ ├── Asin-Function.properties │ │ │ ├── AsinFunction.java │ │ │ ├── AsinFunctionDescription.java │ │ │ ├── Atan-Function.properties │ │ │ ├── Atan2-Function.properties │ │ │ ├── Atan2Function.java │ │ │ ├── Atan2FunctionDescription.java │ │ │ ├── AtanFunction.java │ │ │ ├── AtanFunctionDescription.java │ │ │ ├── Average-Function.properties │ │ │ ├── AverageA-Function.properties │ │ │ ├── AverageAFunction.java │ │ │ ├── AverageAFunctionDescription.java │ │ │ ├── AverageFunction.java │ │ │ ├── AverageFunctionDescription.java │ │ │ ├── Cos-Function.properties │ │ │ ├── CosFunction.java │ │ │ ├── CosFunctionDescription.java │ │ │ ├── Even-Function.properties │ │ │ ├── EvenFunction.java │ │ │ ├── EvenFunctionDescription.java │ │ │ ├── Exp-Function.properties │ │ │ ├── ExpFunction.java │ │ │ ├── ExpFunctionDescription.java │ │ │ ├── Ln-Function.properties │ │ │ ├── LnFunction.java │ │ │ ├── LnFunctionDescription.java │ │ │ ├── Log-Function.properties │ │ │ ├── Log10-Function.properties │ │ │ ├── Log10Function.java │ │ │ ├── Log10FunctionDescription.java │ │ │ ├── LogFunction.java │ │ │ ├── LogFunctionDescription.java │ │ │ ├── MathFunctionCategory.java │ │ │ ├── Max-Function.properties │ │ │ ├── MaxA-Function.properties │ │ │ ├── MaxAFunction.java │ │ │ ├── MaxAFunctionDescription.java │ │ │ ├── MaxFunction.java │ │ │ ├── MaxFunctionDescription.java │ │ │ ├── Min-Function.properties │ │ │ ├── MinA-Function.properties │ │ │ ├── MinAFunction.java │ │ │ ├── MinAFunctionDescription.java │ │ │ ├── MinFunction.java │ │ │ ├── MinFunctionDescription.java │ │ │ ├── Mod-Function.properties │ │ │ ├── ModFunction.java │ │ │ ├── ModFunctionDescription.java │ │ │ ├── N-Function.properties │ │ │ ├── NFunction.java │ │ │ ├── NFunctionDescription.java │ │ │ ├── Odd-Function.properties │ │ │ ├── OddFunction.java │ │ │ ├── OddFunctionDescription.java │ │ │ ├── Pi-Function.properties │ │ │ ├── PiFunction.java │ │ │ ├── PiFunctionDescription.java │ │ │ ├── Power-Function.properties │ │ │ ├── PowerFunction.java │ │ │ ├── PowerFunctionDescription.java │ │ │ ├── Sin-Function.properties │ │ │ ├── SinFunction.java │ │ │ ├── SinFunctionDescription.java │ │ │ ├── Sqrt-Function.properties │ │ │ ├── SqrtFunction.java │ │ │ ├── SqrtFunctionDescription.java │ │ │ ├── Sum-Function.properties │ │ │ ├── SumA-Function.properties │ │ │ ├── SumAFunction.java │ │ │ ├── SumAFunctionDescription.java │ │ │ ├── SumFunction.java │ │ │ ├── SumFunctionDescription.java │ │ │ ├── Var-Function.properties │ │ │ ├── VarFunction.java │ │ │ ├── VarFunctionDescription.java │ │ │ └── category.properties │ │ ├── rounding │ │ │ ├── Int-Function.properties │ │ │ ├── IntFunction.java │ │ │ ├── IntFunctionDescription.java │ │ │ ├── RoundingFunctionCategory.java │ │ │ └── category.properties │ │ ├── text │ │ │ ├── Asc-Function.properties │ │ │ ├── AscFunction.java │ │ │ ├── AscFunctionDescription.java │ │ │ ├── Char-Function.properties │ │ │ ├── CharFunction.java │ │ │ ├── CharFunctionDescription.java │ │ │ ├── Clean-Function.properties │ │ │ ├── CleanFunction.java │ │ │ ├── CleanFunctionDescription.java │ │ │ ├── Code-Function.properties │ │ │ ├── CodeFunction.java │ │ │ ├── CodeFunctionDescription.java │ │ │ ├── Concatenate-Function.properties │ │ │ ├── ConcatenateFunction.java │ │ │ ├── ConcatenateFunctionDescription.java │ │ │ ├── Dollar-Function.properties │ │ │ ├── DollarFunction.java │ │ │ ├── DollarFunctionDescription.java │ │ │ ├── Exact-Function.properties │ │ │ ├── ExactFunction.java │ │ │ ├── ExactFunctionDescription.java │ │ │ ├── Find-Function.properties │ │ │ ├── FindFunction.java │ │ │ ├── FindFunctionDescription.java │ │ │ ├── Fixed-Function.properties │ │ │ ├── FixedFunction.java │ │ │ ├── FixedFunctionDescription.java │ │ │ ├── Left-Function.properties │ │ │ ├── LeftFunction.java │ │ │ ├── LeftFunctionDescription.java │ │ │ ├── Len-Function.properties │ │ │ ├── LenFunction.java │ │ │ ├── LenFunctionDescription.java │ │ │ ├── Lower-Function.properties │ │ │ ├── LowerFunction.java │ │ │ ├── LowerFunctionDescription.java │ │ │ ├── Message-Function.properties │ │ │ ├── MessageFunction.java │ │ │ ├── MessageFunctionDescription.java │ │ │ ├── Mid-Function.properties │ │ │ ├── MidFunction.java │ │ │ ├── MidFunctionDescription.java │ │ │ ├── Proper-Function.properties │ │ │ ├── ProperFunction.java │ │ │ ├── ProperFunctionDescription.java │ │ │ ├── Replace-Function.properties │ │ │ ├── ReplaceFunction.java │ │ │ ├── ReplaceFunctionDescription.java │ │ │ ├── Rept-Function.properties │ │ │ ├── ReptFunction.java │ │ │ ├── ReptFunctionDescription.java │ │ │ ├── Right-Function.properties │ │ │ ├── RightFunction.java │ │ │ ├── RightFunctionDescription.java │ │ │ ├── Search-Function.properties │ │ │ ├── SearchFunction.java │ │ │ ├── SearchFunctionDescription.java │ │ │ ├── StringCount-Function.properties │ │ │ ├── StringCountFunction.java │ │ │ ├── StringCountFunctionDescription.java │ │ │ ├── Substitute-Function.properties │ │ │ ├── SubstituteFunction.java │ │ │ ├── SubstituteFunctionDescription.java │ │ │ ├── T-Function.properties │ │ │ ├── TFunction.java │ │ │ ├── TFunctionDescription.java │ │ │ ├── Text-Function.properties │ │ │ ├── TextFunction.java │ │ │ ├── TextFunctionCategory.java │ │ │ ├── TextFunctionDescription.java │ │ │ ├── Trim-Function.properties │ │ │ ├── TrimFunction.java │ │ │ ├── TrimFunctionDescription.java │ │ │ ├── URLEncode-Function.properties │ │ │ ├── URLEncodeFunction.java │ │ │ ├── URLEncodeFunctionDescription.java │ │ │ ├── Unichar-Function.properties │ │ │ ├── UnicharFunction.java │ │ │ ├── UnicharFunctionDescription.java │ │ │ ├── Unicode-Function.properties │ │ │ ├── UnicodeFunction.java │ │ │ ├── UnicodeFunctionDescription.java │ │ │ ├── Upper-Function.properties │ │ │ ├── UpperFunction.java │ │ │ ├── UpperFunctionDescription.java │ │ │ └── category.properties │ │ └── userdefined │ │ │ ├── ArrayConcatenate-Function.properties │ │ │ ├── ArrayConcatenateFunction.java │ │ │ ├── ArrayConcatenateFunctionDescription.java │ │ │ ├── ArrayContains-Function.properties │ │ │ ├── ArrayContainsFunction.java │ │ │ ├── ArrayContainsFunctionDescription.java │ │ │ ├── ArrayLeft-Function.properties │ │ │ ├── ArrayLeftFunction.java │ │ │ ├── ArrayLeftFunctionDescription.java │ │ │ ├── ArrayMid-Function.properties │ │ │ ├── ArrayMidFunction.java │ │ │ ├── ArrayMidFunctionDescription.java │ │ │ ├── ArrayRight-Function.properties │ │ │ ├── ArrayRightFunction.java │ │ │ ├── ArrayRightFunctionDescription.java │ │ │ ├── CsvArray-Function.properties │ │ │ ├── CsvArrayFunction.java │ │ │ ├── CsvArrayFunctionDescription.java │ │ │ ├── CsvText-Function.properties │ │ │ ├── CsvTextFunction.java │ │ │ ├── CsvTextFunctionDescription.java │ │ │ ├── NormalizeArray-Function.properties │ │ │ ├── NormalizeArrayFunction.java │ │ │ ├── NormalizeArrayFunctionDescription.java │ │ │ ├── Null-Function.properties │ │ │ ├── NullFunction.java │ │ │ ├── NullFunctionDescription.java │ │ │ ├── ParseDate-Function.properties │ │ │ ├── ParseDateFunction.java │ │ │ ├── ParseDateFunctionDescription.java │ │ │ ├── SequenceQuoter-Function.properties │ │ │ ├── SequenceQuoterFunction.java │ │ │ ├── SequenceQuoterFunctionDescription.java │ │ │ ├── UserDefinedFunctionCategory.java │ │ │ └── category.properties │ │ ├── libformula.properties │ │ ├── lvalues │ │ ├── AbstractLValue.java │ │ ├── ContextLookup.java │ │ ├── DataCube.java │ │ ├── DataTable.java │ │ ├── DefaultDataTable.java │ │ ├── FormulaFunction.java │ │ ├── LValue.java │ │ ├── ParsePosition.java │ │ ├── PostfixTerm.java │ │ ├── PrefixTerm.java │ │ ├── StaticValue.java │ │ ├── Term.java │ │ └── TypeValuePair.java │ │ ├── messages.properties │ │ ├── operators │ │ ├── AbstractCompareOperator.java │ │ ├── AbstractNumericOperator.java │ │ ├── AddOperator.java │ │ ├── AndOperator.java │ │ ├── ConcatOperator.java │ │ ├── DefaultOperatorFactory.java │ │ ├── DivideOperator.java │ │ ├── EqualOperator.java │ │ ├── GreaterEqualOperator.java │ │ ├── GreaterOperator.java │ │ ├── InfixOperator.java │ │ ├── LesserEqualOperator.java │ │ ├── LesserOperator.java │ │ ├── MinusSignOperator.java │ │ ├── MultiplyOperator.java │ │ ├── NotEqualOperator.java │ │ ├── NotOperator.java │ │ ├── OperatorFactory.java │ │ ├── OrOperator.java │ │ ├── PercentageOperator.java │ │ ├── PlusSignOperator.java │ │ ├── PostfixOperator.java │ │ ├── PowerOperator.java │ │ ├── PrefixOperator.java │ │ └── SubtractOperator.java │ │ ├── parser │ │ ├── FormulaParseException.java │ │ ├── FormulaParser.java │ │ ├── GeneratedFormulaParser.java │ │ ├── GeneratedFormulaParserConstants.java │ │ ├── GeneratedFormulaParserTokenManager.java │ │ ├── JavaCharStream.java │ │ ├── ParseException.java │ │ ├── Parser.jj │ │ ├── ParserTools.java │ │ ├── Token.java │ │ └── TokenMgrError.java │ │ ├── statement │ │ └── IfStatement.java │ │ ├── typing │ │ ├── ArrayCallback.java │ │ ├── DefaultComparator.java │ │ ├── DefaultType.java │ │ ├── DefaultTypeRegistry.java │ │ ├── ExtendedComparator.java │ │ ├── NumberConverter.java │ │ ├── NumberSequence.java │ │ ├── Sequence.java │ │ ├── StaticArrayCallback.java │ │ ├── Type.java │ │ ├── TypeConversionException.java │ │ ├── TypeRegistry.java │ │ ├── TypeUtil.java │ │ ├── coretypes │ │ │ ├── AnyType.java │ │ │ ├── DateTimeType.java │ │ │ ├── ErrorType.java │ │ │ ├── LogicalType.java │ │ │ ├── NumberType.java │ │ │ └── TextType.java │ │ └── sequence │ │ │ ├── AnyNumberSequence.java │ │ │ ├── AnySequence.java │ │ │ ├── DefaultNumberSequence.java │ │ │ ├── RawArraySequence.java │ │ │ └── RecursiveSequence.java │ │ └── util │ │ ├── DateUtil.java │ │ ├── FormulaUtil.java │ │ ├── HSSFDateUtil.java │ │ ├── NumberUtil.java │ │ └── URLEncoder.java ├── test │ └── org │ │ └── pentaho │ │ └── reporting │ │ └── libraries │ │ └── formula │ │ ├── FormulaParsingTest.java │ │ ├── FormulaTestBase.java │ │ ├── FormulaTranslationTest.java │ │ ├── OpenFormulaConformance.java │ │ ├── common │ │ ├── OperatorTest.java │ │ └── TestFormulaContext.java │ │ ├── function │ │ ├── datetime │ │ │ ├── DateDifFunctionTest.java │ │ │ ├── DateFunctionTest.java │ │ │ ├── DateValueFunctionTest.java │ │ │ ├── DayFunctionTest.java │ │ │ ├── HourFunctionTest.java │ │ │ ├── MinuteFunctionTest.java │ │ │ ├── MonthFunctionTest.java │ │ │ ├── NowFunctionTest.java │ │ │ ├── SecondFunctionTest.java │ │ │ ├── TimeFunctionTest.java │ │ │ ├── TodayFunctionTest.java │ │ │ ├── WeekDayFunctionTest.java │ │ │ ├── YearFunctionTest.java │ │ │ └── YesterdayFunctionTest.java │ │ ├── information │ │ │ ├── ChooseFunctionTest.java │ │ │ ├── CountAFunctionTest.java │ │ │ ├── CountBlankFunctionTest.java │ │ │ ├── CountFunctionTest.java │ │ │ ├── IndexFunctionTest.java │ │ │ ├── IsBlankFunctionTest.java │ │ │ ├── IsErrFunctionTest.java │ │ │ ├── IsErrorFunctionTest.java │ │ │ ├── IsEvenFunctionTest.java │ │ │ ├── IsLogicalFunctionTest.java │ │ │ ├── IsNaFunctionTest.java │ │ │ ├── IsNonTextFunctionTest.java │ │ │ ├── IsNumberFunctionTest.java │ │ │ ├── IsOddFunctionTest.java │ │ │ ├── IsRefFunctionTest.java │ │ │ ├── IsTextFunctionTest.java │ │ │ └── NaFunctionTest.java │ │ ├── logical │ │ │ ├── AndFunctionTest.java │ │ │ ├── FalseFunctionTest.java │ │ │ ├── IfFunctionTest.java │ │ │ ├── NotFunctionTest.java │ │ │ ├── OrFunctionTest.java │ │ │ └── XorFunctionTest.java │ │ ├── math │ │ │ ├── AbsFunctionTest.java │ │ │ ├── AverageFunctionTest.java │ │ │ ├── EvenFunctionTest.java │ │ │ ├── MaxFunctionTest.java │ │ │ ├── MinFunctionTest.java │ │ │ ├── ModFunctionTest.java │ │ │ ├── NFunctionTest.java │ │ │ ├── OddFunctionTest.java │ │ │ ├── PowerFunctionTest.java │ │ │ └── SumFunctionTest.java │ │ ├── rounding │ │ │ └── IntFunctionTest.java │ │ ├── text │ │ │ ├── AscFunctionTest.java │ │ │ ├── CharFunctionTest.java │ │ │ ├── CleanFunctionTest.java │ │ │ ├── CodeFunctionTest.java │ │ │ ├── ConcatenateFunctionTest.java │ │ │ ├── ExactFunctionTest.java │ │ │ ├── FindFunctionTest.java │ │ │ ├── LeftFunctionTest.java │ │ │ ├── LenFunctionTest.java │ │ │ ├── LowerFunctionTest.java │ │ │ ├── MidFunctionTest.java │ │ │ ├── ReplaceFunctionTest.java │ │ │ ├── ReptFunctionTest.java │ │ │ ├── RightFunctionTest.java │ │ │ ├── SearchFunctionTest.java │ │ │ ├── SubstituteFunctionTest.java │ │ │ ├── TFunctionTest.java │ │ │ ├── TextFunctionTest.java │ │ │ ├── TrimFunctionTest.java │ │ │ └── UpperFunctionTest.java │ │ └── userdefined │ │ │ ├── ArrayConcatenateFunctionTest.java │ │ │ ├── ArrayContainsFunctionTest.java │ │ │ ├── ArrayLeftFunctionTest.java │ │ │ ├── ArrayMidFunctionTest.java │ │ │ ├── ArrayRightFunctionTest.java │ │ │ └── NormalizeArrayFunctionTest.java │ │ ├── operators │ │ ├── ArithmeticOperatorTest.java │ │ ├── DateOperatorTest.java │ │ ├── EqualOperatorTest.java │ │ ├── MinusSignOperatorTest.java │ │ └── PercentageOperatorTest.java │ │ ├── statement │ │ └── IfStataementTest.java │ │ ├── typing │ │ ├── AnySequenceTest.java │ │ ├── ArrayTest.java │ │ ├── DateConversionTest.java │ │ └── TypeRegisteryTest.java │ │ └── util │ │ └── FormulaUtilTest.java └── todo │ ├── ACOS-Function.properties │ ├── ACOT-Function.properties │ ├── ACOTH-Function.properties │ ├── ADDRESS-Function.properties │ ├── ARABIC-Function.properties │ ├── AREAS-Function.properties │ ├── ASC-Function.properties │ ├── ASINH-Function.properties │ ├── ATANH-Function.properties │ ├── AVEDEV-Function.properties │ ├── B-Function.properties │ ├── BASE-Function.properties │ ├── BETADIST-Function.properties │ ├── BETAINV-Function.properties │ ├── BINOMDIST-Function.properties │ ├── CEILING-Function.properties │ ├── CELL-Function.properties │ ├── CHAR-Function.properties │ ├── CHOOSE-Function.properties │ ├── CLEAN-Function.properties │ ├── CODE-Function.properties │ ├── COLUMN-Function.properties │ ├── COLUMNS-Function.properties │ ├── COM.MICROSOFT.BAHTTEXT-Function.properties │ ├── COMBIN-Function.properties │ ├── COMBINA-Function.properties │ ├── CONCATENATE-Function.properties │ ├── CONFIDENCE-Function.properties │ ├── CORREL-Function.properties │ ├── COSH-Function.properties │ ├── COT-Function.properties │ ├── COTH-Function.properties │ ├── COUNTIF-Function.properties │ ├── COVAR-Function.properties │ ├── CRITBINOM-Function.properties │ ├── CUMIPMT-Function.properties │ ├── CUMPRINC-Function.properties │ ├── DAVERAGE-Function.properties │ ├── DAYS360-Function.properties │ ├── DB-Function.properties │ ├── DCOUNT-Function.properties │ ├── DCOUNTA-Function.properties │ ├── DDB-Function.properties │ ├── DDE-Function.properties │ ├── DECIMAL-Function.properties │ ├── DEGREES-Function.properties │ ├── DEVSQ-Function.properties │ ├── DGET-Function.properties │ ├── DMAX-Function.properties │ ├── DMIN-Function.properties │ ├── DOLLAR-Function.properties │ ├── DPRODUCT-Function.properties │ ├── DSTDEV-Function.properties │ ├── DSTDEVP-Function.properties │ ├── DSUM-Function.properties │ ├── DVAR-Function.properties │ ├── DVARP-Function.properties │ ├── EASTERSUNDAY-Function.properties │ ├── EFFECT-Function.properties │ ├── EUROCONVERT-Function.properties │ ├── EXPONDIST-Function.properties │ ├── FACT-Function.properties │ ├── FISHER-Function.properties │ ├── FISHERINV-Function.properties │ ├── FIXED-Function.properties │ ├── FLOOR-Function.properties │ ├── FORECAST-Function.properties │ ├── FORMULA-Function.properties │ ├── FREQUENCY-Function.properties │ ├── FTEST-Function.properties │ ├── FV-Function.properties │ ├── GAMMADIST-Function.properties │ ├── GAMMAINV-Function.properties │ ├── GAMMALN-Function.properties │ ├── GAUSS-Function.properties │ ├── GCD-Function.properties │ ├── GEOMEAN-Function.properties │ ├── GETPIVOTDATA-Function.properties │ ├── GROWTH-Function.properties │ ├── HARMEAN-Function.properties │ ├── HLOOKUP-Function.properties │ ├── HYPERLINK-Function.properties │ ├── HYPGEOMDIST-Function.properties │ ├── INDEX-Function.properties │ ├── INDIRECT-Function.properties │ ├── INFO-Function.properties │ ├── INTERCEPT-Function.properties │ ├── IPMT-Function.properties │ ├── IRR-Function.properties │ ├── ISFORMULA-Function.properties │ ├── ISOWEEKNUM-Function.properties │ ├── ISPMT-Function.properties │ ├── JIS-Function.properties │ ├── KURT-Function.properties │ ├── LARGE-Function.properties │ ├── LCM-Function.properties │ ├── LEGACY.CHIDIST-Function.properties │ ├── LEGACY.CHIINV-Function.properties │ ├── LEGACY.CHITEST-Function.properties │ ├── LEGACY.FDIST-Function.properties │ ├── LEGACY.FINV-Function.properties │ ├── LEGACY.NORMSDIST-Function.properties │ ├── LEGACY.NORMSINV-Function.properties │ ├── LINEST-Function.properties │ ├── LOGEST-Function.properties │ ├── LOGINV-Function.properties │ ├── LOGNORMDIST-Function.properties │ ├── LOOKUP-Function.properties │ ├── MATCH-Function.properties │ ├── MDETERM-Function.properties │ ├── MEDIAN-Function.properties │ ├── MINVERSE-Function.properties │ ├── MIRR-Function.properties │ ├── MMULT-Function.properties │ ├── MODE-Function.properties │ ├── MUNIT-Function.properties │ ├── N-Function.properties │ ├── NEGBINOMDIST-Function.properties │ ├── NOMINAL-Function.properties │ ├── NORMDIST-Function.properties │ ├── NORMINV-Function.properties │ ├── NPER-Function.properties │ ├── NPV-Function.properties │ ├── NUMBERVALUE-Function.properties │ ├── OFFSET-Function.properties │ ├── ORG.OPENOFFICE.CONVERT-Function.properties │ ├── ORG.OPENOFFICE.CURRENT-Function.properties │ ├── ORG.OPENOFFICE.ERRORTYPE-Function.properties │ ├── ORG.OPENOFFICE.STYLE-Function.properties │ ├── PDURATION-Function.properties │ ├── PEARSON-Function.properties │ ├── PERCENTILE-Function.properties │ ├── PERCENTRANK-Function.properties │ ├── PERMUT-Function.properties │ ├── PERMUTATIONA-Function.properties │ ├── PHI-Function.properties │ ├── PMT-Function.properties │ ├── POISSON-Function.properties │ ├── POWER-Function.properties │ ├── PPMT-Function.properties │ ├── PROB-Function.properties │ ├── PRODUCT-Function.properties │ ├── PROPER-Function.properties │ ├── PV-Function.properties │ ├── QUARTILE-Function.properties │ ├── RADIANS-Function.properties │ ├── RAND-Function.properties │ ├── RANK-Function.properties │ ├── RATE-Function.properties │ ├── ROMAN-Function.properties │ ├── ROUND-Function.properties │ ├── ROUNDDOWN-Function.properties │ ├── ROUNDUP-Function.properties │ ├── ROW-Function.properties │ ├── ROWS-Function.properties │ ├── RSQ-Function.properties │ ├── SEARCH-Function.properties │ ├── SHEET-Function.properties │ ├── SHEETS-Function.properties │ ├── SIGN-Function.properties │ ├── SINH-Function.properties │ ├── SKEW-Function.properties │ ├── SLN-Function.properties │ ├── SLOPE-Function.properties │ ├── SMALL-Function.properties │ ├── STANDARDIZE-Function.properties │ ├── STDEV-Function.properties │ ├── STDEVA-Function.properties │ ├── STDEVP-Function.properties │ ├── STDEVPA-Function.properties │ ├── STEYX-Function.properties │ ├── SUBTOTAL-Function.properties │ ├── SUMIF-Function.properties │ ├── SUMPRODUCT-Function.properties │ ├── SUMSQ-Function.properties │ ├── SUMX2MY2-Function.properties │ ├── SUMX2PY2-Function.properties │ ├── SUMXMY2-Function.properties │ ├── SYD-Function.properties │ ├── TAN-Function.properties │ ├── TANH-Function.properties │ ├── TDIST-Function.properties │ ├── TINV-Function.properties │ ├── TRANSPOSE-Function.properties │ ├── TREND-Function.properties │ ├── TRIMMEAN-Function.properties │ ├── TRUNC-Function.properties │ ├── TTEST-Function.properties │ ├── TYPE-Function.properties │ ├── VALUE-Function.properties │ ├── VARA-Function.properties │ ├── VARP-Function.properties │ ├── VARPA-Function.properties │ ├── VDB-Function.properties │ ├── VLOOKUP-Function.properties │ ├── WEIBULL-Function.properties │ ├── ZGZ-Function.properties │ └── ZTEST-Function.properties ├── pom.xml └── smartETL ├── pom.xml └── src ├── main ├── java │ ├── logback.xml │ └── org │ │ └── f3tools │ │ └── incredible │ │ └── smartETL │ │ ├── AbstractDataSet.java │ │ ├── AbstractStep.java │ │ ├── BlockingDataSet.java │ │ ├── Const.java │ │ ├── Context.java │ │ ├── DataDef.java │ │ ├── DataDefRegistry.java │ │ ├── DataRow.java │ │ ├── DataSet.java │ │ ├── DataSetFile.java │ │ ├── Flow.java │ │ ├── Job.java │ │ ├── JobDef.java │ │ ├── JobRunner.java │ │ ├── Lookup.java │ │ ├── LookupManager.java │ │ ├── Step.java │ │ ├── StepDef.java │ │ ├── StepFactory.java │ │ ├── StepInitThread.java │ │ ├── StepRunThread.java │ │ ├── StepStats.java │ │ ├── StepStatsManager.java │ │ ├── Variable.java │ │ ├── formula │ │ ├── FormulaException.java │ │ ├── FormulaUtl.java │ │ ├── ICFormula.java │ │ └── ICFormulaContext.java │ │ ├── function │ │ ├── Drop-Function.properties │ │ ├── DropFunction.java │ │ ├── DropFunctionDescription.java │ │ ├── Exist-Function.properties │ │ ├── ExistFunction.java │ │ ├── ExistFunctionDescription.java │ │ ├── IsNull-Function.properties │ │ ├── IsNullFunction.java │ │ ├── IsNullFunctionDescription.java │ │ ├── Lookup-Function.properties │ │ ├── LookupFunction.java │ │ ├── LookupFunctionDescription.java │ │ ├── NullEmpty-Function.properties │ │ ├── NullEmptyFunction.java │ │ └── NullEmptyFunctionDescription.java │ │ ├── steps │ │ ├── csvinput │ │ │ ├── CSVInput.java │ │ │ └── CSVInputDef.java │ │ ├── csvoutput │ │ │ ├── CSVOutput.java │ │ │ └── CSVOutputDef.java │ │ ├── dummy │ │ │ └── Dummy.java │ │ ├── join │ │ │ ├── Join.java │ │ │ └── JoinDef.java │ │ ├── smarttrans │ │ │ ├── SmartTrans.java │ │ │ └── SmartTransDef.java │ │ └── sort │ │ │ ├── Sort.java │ │ │ └── SortDef.java │ │ ├── tools │ │ ├── GenJobDef.java │ │ └── GrammarCheck.java │ │ └── utilities │ │ ├── AntPathStringMatcher.java │ │ ├── CSVFile.java │ │ ├── ETLException.java │ │ ├── FileUtl.java │ │ ├── IndexedList.java │ │ ├── Utl.java │ │ └── XMLUtl.java └── resources │ └── job.xsd └── test └── java └── org └── f3tools └── incredible └── smartETL ├── LookupTest.java ├── formula └── ICFormulaTest.java └── utilities └── FileUtlTest.java /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /distribution/src/main/scripts/genjobdef.bat: -------------------------------------------------------------------------------- 1 | cd %~p0 2 | java -cp ../lib/smartETL-0.0.1.jar;../lib/libbase-0.0.1.jar;../lib/libformula-0.0.1.jar;../lib/commons-logging-1.1.3.jar;../lib/poi-3.11.jar;../lib/commons-lang-2.3.jar;../lib/commons-codec-1.9.jar org.f3tools.incredible.smartETL.tools.GenJobDef %1 %2 %3 -------------------------------------------------------------------------------- /distribution/src/main/scripts/grammarcheck.bat: -------------------------------------------------------------------------------- 1 | cd %~p0 2 | java -cp ../lib/smartETL-0.0.1.jar;../lib/libbase-0.0.1.jar;../lib/libformula-0.0.1.jar;../lib/commons-logging-1.1.3.jar;../lib/poi-3.11.jar;../lib/commons-lang-2.3.jar;../lib/commons-codec-1.9.jar org.f3tools.incredible.smartETL.tools.GrammarCheck %1 %2 -------------------------------------------------------------------------------- /distribution/src/main/scripts/run.bat: -------------------------------------------------------------------------------- 1 | java -cp lib/smartETL-0.0.1.jar;lib/libbase-0.0.1.jar;lib/libformula-0.0.1.jar;lib/commons-logging-1.1.3.jar;lib/logback-classic-1.0.13.jar;lib/logback-core-1.0.13.jar;lib/slf4j-api-1.7.5.jar org.f3tools.incredible.smartETL.JobRunner examples/samplejob.xml -------------------------------------------------------------------------------- /examples/customers.txt: -------------------------------------------------------------------------------- 1 | "id";"name";"firstname";"zip";"city";"birthdate";"street";"housenr";"stateCode";"state" 2 | "1";"";"fsj-firstname"; " 13520";oem-city;"1954/02/07";"amrb-str;eet";" 145";"AK";"ALASKA" 3 | "2";"flhxu-name";"tum-firstname";" 17520";"buo-city";"1966/04/24"; "wfyz-street";" 96";"GA";"GEORGIA" 4 | "3";"xthfg-name";"gfe-firstname"; " 12560";"vtz-city";"1990/01/11";"doxx-street";" 46";"NJ";"NEW JERSEY" -------------------------------------------------------------------------------- /examples/customers2.txt: -------------------------------------------------------------------------------- 1 | id;name;firstname;zip;city;birthdate;street;housenr;stateCode;state 2 | 1;jwcdf-name;; 13520;oem-city;1954/02/07;amrb-street; 145;AK;ALASKA 3 | -------------------------------------------------------------------------------- /examples/exceljobtemplate.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisk28/SmartETL/3c443321b026014655452df9d24aad422bd3d7f4/examples/exceljobtemplate.xls -------------------------------------------------------------------------------- /examples/state.txt: -------------------------------------------------------------------------------- 1 | zip;stateCode;population 2 | 13520;AK;52000 3 | 17520;GA;45000 4 | 12560;NJ;334563 5 | 22998;CN;999999 -------------------------------------------------------------------------------- /libbase/devresource/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Implementation-Title: LibBase 2 | Implementation-Vendor: Pentaho Corporation 3 | Implementation-ProductID: libbase 4 | Release-Major-Number: 1 5 | Release-Minor-Number: 0 6 | Release-Milestone-Number: 0 7 | Release-Candidate-Token: GA 8 | -------------------------------------------------------------------------------- /libbase/devresource/commons-logging.properties: -------------------------------------------------------------------------------- 1 | org.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog 2 | -------------------------------------------------------------------------------- /libbase/eclipse-bin/.gitignore: -------------------------------------------------------------------------------- 1 | /META-INF/ 2 | /commons-logging.properties 3 | /libbase.properties 4 | /org/ 5 | /simplelog.properties 6 | -------------------------------------------------------------------------------- /libbase/eclipse-bin/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Implementation-Title: LibBase 2 | Implementation-Vendor: Pentaho Corporation 3 | Implementation-ProductID: libbase 4 | Release-Major-Number: 1 5 | Release-Minor-Number: 0 6 | Release-Milestone-Number: 0 7 | Release-Candidate-Token: GA 8 | -------------------------------------------------------------------------------- /libbase/eclipse-bin/commons-logging.properties: -------------------------------------------------------------------------------- 1 | org.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog 2 | -------------------------------------------------------------------------------- /libbase/eclipse-bin/libbase.properties: -------------------------------------------------------------------------------- 1 | java.util.ArrayList=java.util.ArrayList 2 | org.pentaho.reporting.libraries.base.boot.ObjectFactorySingleton=org.pentaho.reporting.libraries.base.boot.ObjectFactorySingleton 3 | -------------------------------------------------------------------------------- /libbase/eclipse-bin/org/pentaho/reporting/libraries/base/libbase.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisk28/SmartETL/3c443321b026014655452df9d24aad422bd3d7f4/libbase/eclipse-bin/org/pentaho/reporting/libraries/base/libbase.properties -------------------------------------------------------------------------------- /libbase/src/main/java/org/pentaho/reporting/libraries/base/boot/SingletonHint.java: -------------------------------------------------------------------------------- 1 | package org.pentaho.reporting.libraries.base.boot; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.TYPE) 10 | public @interface SingletonHint 11 | { 12 | } 13 | -------------------------------------------------------------------------------- /libbase/src/main/java/org/pentaho/reporting/libraries/base/libbase.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dennisk28/SmartETL/3c443321b026014655452df9d24aad422bd3d7f4/libbase/src/main/java/org/pentaho/reporting/libraries/base/libbase.properties -------------------------------------------------------------------------------- /libbase/src/test1/java/libbase.properties: -------------------------------------------------------------------------------- 1 | java.util.ArrayList=java.util.ArrayList 2 | org.pentaho.reporting.libraries.base.boot.ObjectFactorySingleton=org.pentaho.reporting.libraries.base.boot.ObjectFactorySingleton 3 | -------------------------------------------------------------------------------- /libbase/src/test1/java/org/pentaho/reporting/libraries/base/boot/ObjectFactorySingleton.java: -------------------------------------------------------------------------------- 1 | package org.pentaho.reporting.libraries.base.boot; 2 | 3 | import java.util.UUID; 4 | 5 | @SingletonHint 6 | public class ObjectFactorySingleton 7 | { 8 | private UUID id; 9 | 10 | public ObjectFactorySingleton() 11 | { 12 | this.id = UUID.randomUUID(); 13 | } 14 | 15 | public UUID getId() 16 | { 17 | return id; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /libformula/devresource/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Implementation-Title: LibFormula 2 | Implementation-Vendor: Pentaho Corporation 3 | Implementation-ProductID: libformula 4 | Release-Major-Number: 1 5 | Release-Minor-Number: 2 6 | Release-Milestone-Number: 0 7 | Release-Candidate-Token: GA 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/.gitignore: -------------------------------------------------------------------------------- 1 | /META-INF/ 2 | /org/ 3 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Implementation-Title: LibFormula 2 | Implementation-Vendor: Pentaho Corporation 3 | Implementation-ProductID: libformula 4 | Release-Major-Number: 1 5 | Release-Minor-Number: 2 6 | Release-Milestone-Number: 0 7 | Release-Candidate-Token: GA 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/database/BeginsWith-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2009, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=BEGINSWITH 5 | description=This function checks to see if a string is begins with another string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to check for the substring. 8 | parameter.1.display-name=substring 9 | parameter.1.description=The substring to look for in the text. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/database/Contains-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2009, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=CONTAINS 5 | description=This function checks to see if a string is within another string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to check for the substring. 8 | parameter.1.display-name=substring 9 | parameter.1.description=The substring to look for in the text. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/database/EndsWith-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2009, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ENDSSWITH 5 | description=This function checks to see if a string is ends with another string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to check for the substring. 8 | parameter.1.display-name=substring 9 | parameter.1.description=The substring to look for in the text. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/database/Equals-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2011, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=EQUALS 5 | description=Returns TRUE if both parameters equal one another 6 | parameter.0.display-name=value 1 7 | parameter.0.description=The first parameter 8 | parameter.1.display-name=value 2 9 | parameter.1.description=The second parameter 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/database/Like-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2009, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=LIKE 5 | description=Acts like the SQL LIKE function, comparing the first value to a regular expression 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to compare to the regular expression. 8 | parameter.1.display-name=regular expression 9 | parameter.1.description=The regular expression. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/DateDif-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=DATEDIF 6 | description=Returns the number of years, months, or days between two dates. 7 | parameter.0.display-name=StartDate 8 | parameter.0.description=First date. 9 | parameter.1.display-name=EndDate 10 | parameter.1.description=Second date. 11 | parameter.2.display-name=Format 12 | parameter.2.description=Format code. 13 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/DateTimeValue-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=DATETIMEVALUE 5 | description=Returns an internal number for a text having a possible date format. 6 | parameter.0.display-name=text 7 | parameter.0.description=A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/DateValue-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=DATEVALUE 5 | description=Returns an internal number for a text having a possible date format. 6 | parameter.0.display-name=text 7 | parameter.0.description=A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Day-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=DAY 5 | description=Returns the sequential date of the month as an integer (1-31) in relation to the date value. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The internal number for the date. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Days-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DAYS 2 | description=Calculates the number of days between two dates. 3 | parameter.0.display-name=Date_2 4 | parameter.0.description=The end date for calculating the difference in days. 5 | parameter.1.display-name=Date_1 6 | parameter.1.description=The start date for calculating the difference in days. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Hour-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=HOUR 6 | description=Determines the sequential number of the hour of the day (0-23) for the time value. 7 | parameter.0.display-name=Number 8 | parameter.0.description=Internal time value 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Minute-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MINUTE 6 | description=Determines the sequential number for the minute of the hour (0-59) for the time value. 7 | parameter.0.display-name=Number 8 | parameter.0.description=Internal time value. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Month-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MONTH 6 | description=Determines the sequential number of a month of the year (1-12) for the date value. 7 | parameter.0.display-name=Number 8 | parameter.0.description=The internal number of the date. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/MonthEnd-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MONTHEND 6 | description=Return the date at month end. 7 | parameter.0.display-name=Date 8 | parameter.0.description=Internal number of the date. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Now-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=NOW 6 | description=Determines the current time of the computer. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/PrevWeekday-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=PREVWEEKDAY 6 | description=Determines the date of the previeous working day. 7 | parameter.0.display-name=Type 8 | parameter.0.description=Fixes the start of the weekend and the type of calculation to be used.\ 9 | (1 = weekend = saturday + sunday, \ 10 | 2 = weekend = friday + saturday) 11 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Second-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SECOND 2 | description=Determines the sequential number of the second of a minute (0-59) for the time value. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The internal time value. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Time-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=TIME 6 | description=Determines a time value from the details for hour, minute and second. 7 | parameter.0.display-name=hour 8 | parameter.0.description=The integer for the hour. 9 | parameter.1.display-name=minute 10 | parameter.1.description=The integer for the minute. 11 | parameter.2.display-name=second 12 | parameter.2.description=The integer for the second. 13 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/TimeValue-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TIMEVALUE 2 | description=Returns a sequential number for a text shown in a possible time entry format. 3 | parameter.0.display-name=text 4 | parameter.0.description=A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Today-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=TODAY 6 | description=Determines the current date of the computer. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Year-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=YEAR 6 | description=Returns the year of a date value as an integer. 7 | parameter.0.display-name=Number 8 | parameter.0.description=Internal number of the date. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/Yesterday-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=YESTERDAY 6 | description=Determines the yesterday's date of the computer. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/datetime/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Date/Time 6 | description=Contains functions that compute time and date values. -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/financial/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Financial 6 | description=Contains financial functions. -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/Choose-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=CHOOSE 6 | description=Selects a value from a list of up to 30 value arguments. 7 | parameter.0.display-name=Index 8 | parameter.0.description=The index of the value (1..30) selected. 9 | parameter.1.display-name=value 10 | parameter.1.description=Value 1, value 2,... The list of arguments from which a value is chosen. 11 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/Count-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=COUNT 6 | description=Counts how many numbers are in the list of arguments. 7 | parameter.0.display-name=value 8 | parameter.0.description=Value 1, value 2, ... are 1 to 30 arguments containing different data types but where only numbers are counted. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/CountA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=COUNTA 6 | description=Counts how many values are in the list of arguments. 7 | parameter.0.display-name=value 8 | parameter.0.description=Value 1, value 2, ... are 1 to 30 arguments representing the values to be counted. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/CountBlank-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=COUNTBLANK 6 | description=Counts the blank cells in a specified range. 7 | parameter.0.display-name=range 8 | parameter.0.description=The range in which empty cells are to be counted. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/HasChanged-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=HASCHANGED 6 | description=Checks whether the columns specified by the given names has changed. 7 | parameter.0.description=Column name 8 | parameter.0.display-name=A name of the column. 9 | 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/Index-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=INDEX 2 | description=Select a value using a row and column index value (and optionally an area index). 3 | parameter.0.display-name=Array 4 | parameter.0.description=The DataSource. 5 | parameter.1.display-name=Row 6 | parameter.1.description=The Row-Index. 7 | parameter.2.display-name=Column 8 | parameter.2.description=The Column-Index. 9 | parameter.3.display-name=Area 10 | parameter.3.description=The Area Index. 11 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsBlank-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISBLANK 6 | description=Returns TRUE if value refers to an empty cell. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsErr-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISERR 5 | description=Returns TRUE if the value is an error value not equal to #N/A. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsError-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISERROR 5 | description=Returns TRUE if the value is an error value. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsEven-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISEVEN 6 | description=Returns TRUE if value is an even integer. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsLogical-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISLOGICAL 6 | description=Returns TRUE if the value carries a logical number format. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsNa-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISNA 6 | description=Returns TRUE if value equals #N/A. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsNonText-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISNONTEXT 5 | description=Returns TRUE if the value is not text. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsNumber-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISNUMBER 5 | description=Returns TRUE if value is a number. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsOdd-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISODD 6 | description=Returns TRUE if value is an odd integer. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsRef-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISREF 5 | description=Returns TRUE if value is a reference. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/IsText-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISTEXT 5 | description=Returns TRUE if value is text. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/Na-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=NA 5 | description=Not available. Returns the error value #N/A. 6 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/Value-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=VALUE 5 | description=Returns the number value of a string. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The string whose numeric value is to be returned. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/information/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Information 6 | description=Contains functions which provide meta-data. -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/logical/And-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=AND 5 | description=Returns TRUE if all arguments are TRUE. 6 | parameter.0.display-name=Logical value 7 | parameter.0.description=Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and each returns either TRUE or FALSE. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/logical/False-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=FALSE 6 | description=Defines the logical value as FALSE. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/logical/IfNa-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=IFNA 6 | description=Return X unless it is an NA, in which case return an alternative value. 7 | parameter.0.display-name=Field or Value 8 | parameter.0.description=Any value or expression. 9 | parameter.1.display-name=Alternative Value 10 | parameter.1.description=The result of the function if the Field or Value was NA. 11 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/logical/Not-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=NOT 6 | description=Reverses the value of the argument. 7 | parameter.0.display-name=Logical value 8 | parameter.0.description=An expression that can be either TRUE or FALSE. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/logical/Or-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=OR 5 | description=Returns TRUE if an argument is TRUE. 6 | parameter.0.display-name=Logical value 7 | parameter.0.description=Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and which return either TRUE or FALSE. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/logical/True-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=TRUE 5 | description=Returns the logical value TRUE. 6 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/logical/Xor-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=XOR 5 | description=Returns TRUE if a odd number of arguments are TRUE. 6 | parameter.0.display-name=Logical value 7 | parameter.0.description=Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and each returns either TRUE or FALSE. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/logical/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Logical 6 | description=Contains functions that deal with or produce logical values. -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Abs-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ABS 5 | description=Absolute value of a number. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The number whose absolute value is to be returned. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Acos-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ACOS 2 | description=Returns the arccosine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value between -1 and 1 for which the arccosine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Acosh-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ACOSH 2 | description=Returns the inverse hyperbolic cosine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value greater than or equal to 1 for which the hyperbolic cosine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Asin-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ASIN 2 | description=Returns the arcsine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value between -1 and 1 for which the arcsine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Atan-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ATAN 2 | description=Returns the arctangent of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the arctangent is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Atan2-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ATAN2 2 | description=Returns the arctangent for the specified coordinates. 3 | parameter.0.display-name=number_x 4 | parameter.0.description=The value for the x coordinate. 5 | parameter.1.display-name=number_y 6 | parameter.1.description=The value for the y coordinate. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Average-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=AVERAGE 5 | description=Returns the average of a sample. 6 | parameter.0.display-name=number 7 | parameter.0.description=Number 1, number 2;...are 1 to 30 numeric arguments representing a population sample. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/AverageA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=AVERAGEA 5 | description=Returns the average value for a sample. Text is evaluated as zero. 6 | parameter.0.display-name=value 7 | parameter.0.description=Value 1; value 2;.. .are 1 to 30 arguments representing a sample taken from a basic total population. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Cos-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COS 2 | description=Returns the cosine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The angle in the radians for which the cosine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Even-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=EVEN 5 | description=Rounds a positive number up and negative number down to the nearest even integer. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The number to be rounded up. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Exp-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=EXP 2 | description=Calculates the exponent for basis e. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The exponent applied to base e. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Ln-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LN 2 | description=Calculates the natural logarithm of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value greater than 0 for which the natural logarithm is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Log-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LOG 2 | description=Calculates the logarithm to any specified base. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value greater than 0 for which the logarithm is to be calculated. 5 | parameter.1.display-name=Base 6 | parameter.1.description=The base of the logarithm. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Log10-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LOG10 2 | description=Calculates the base-10 logarithm of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value greater than 0 for which the logarithm is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Max-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MAX 6 | description=Returns the maximum value in a list of arguments. 7 | parameter.0.display-name=number 8 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/MaxA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MAXA 6 | description=Returns the maximum value in a list of arguments. Text is evaluated as zero. 7 | parameter.0.display-name=number 8 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Min-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=MIN 5 | description=Returns the minimum value in a list of arguments. 6 | parameter.0.display-name=number 7 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments for which the smallest number is to be determined. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/MinA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=MINA 5 | description=Returns the smallest value in a list of arguments. Text is evaluated as zero. 6 | parameter.0.display-name=value 7 | parameter.0.description=Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be determined. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Mod-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=MOD 5 | description=Calculates the remainder of a division. 6 | parameter.0.display-name=Dividend 7 | parameter.0.description=The number to be divided. 8 | parameter.1.display-name=Divisor 9 | parameter.1.description=The number by which the dividend is divided. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/N-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=N 5 | description=Return the number of a value. 6 | parameter.0.display-name=Value 7 | parameter.0.description=The value that should be a number. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Odd-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ODD 6 | description=Rounds a positive number up and negative number down to the nearest odd integer. 7 | parameter.0.display-name=Number 8 | parameter.0.description=The number to be rounded up. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Pi-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PI 2 | description=Returns the value of the number Pi. 3 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Power-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=POWER 5 | description=Computes a number raised to the power by another number. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The number. 8 | parameter.1.display-name=Power 9 | parameter.1.description=The power. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Sin-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SIN 2 | description=Returns the sine of a number. 3 | parameter.0.display-name=number 4 | parameter.0.description=The angle in radians for which the sine is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Sqrt-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SQRT 2 | description=Returns the square root of a number. 3 | parameter.0.display-name=number 4 | parameter.0.description=A positive value for which the square root is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Sum-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=SUM 6 | description=Returns the sum of all arguments. 7 | parameter.0.display-name=number 8 | parameter.0.description=Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/SumA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=SUMA 6 | description=Returns the sum of all arguments. Numbers, text and logical values are included in the calculation too. 7 | parameter.0.display-name=number 8 | parameter.0.description=Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/Var-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=VAR 2 | description=Calculates the variance based on a sample. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/math/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Mathematical 6 | description=Contains functions that provide general mathematical functionality. -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/rounding/Int-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=INT 6 | description=Rounds a number down to the nearest integer. 7 | parameter.0.display-name=Number 8 | parameter.0.description=The number to be rounded down. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/rounding/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Rounding 6 | description=Contains rounding functions. -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Asc-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ASC 5 | description=Converts full-width to half-width ASCII and katakana characters. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to be converted. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Char-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CHAR 2 | description=Converts a code number into a ASCII character or letter. 3 | parameter.0.display-name=number 4 | parameter.0.description=The code value for the character. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Clean-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=CLEAN 5 | description=Removes all non-printable characters from the given text. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to be cleaned. 8 | parameter.1.display-name=encoding 9 | parameter.1.description=The optional encoding. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Code-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CODE 2 | description=Returns the numeric code for the first character character in a text string. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the text for which the code of the first character is to be found. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Concatenate-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CONCATENATE 2 | description=Concatenate the text strings. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the text that should be concatenated. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Dollar-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DOLLAR 2 | description=Convert the parameters to Text formatted as currency. 3 | parameter.0.display-name=number 4 | parameter.0.description=The value for the character. 5 | parameter.1.display-name=decimals 6 | parameter.1.description=The number of decimal places to be used during the formatting. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Exact-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=EXACT 5 | description=Specifies whether two texts are identical. 6 | parameter.0.display-name=text_1 7 | parameter.0.description=The first text to be used for comparing texts. 8 | parameter.1.display-name=text_2 9 | parameter.1.description=The second text for comparing texts. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Find-Function.properties: -------------------------------------------------------------------------------- 1 | 2 | 3 | display-name=DLOOKUP 4 | description=Lookup for a value using a set of keys 5 | parameter.0.display-name=find_text 6 | parameter.0.description=The text to be found. 7 | parameter.1.display-name=text 8 | parameter.1.description=The text in which a search is to be made. 9 | parameter.2.display-name=position 10 | parameter.2.description=The position in the text from which the search starts. 11 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Fixed-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DOLLAR 2 | description=Round the number to a specified number of decimals and format the result as a text. 3 | parameter.0.display-name=number 4 | parameter.0.description=The value for the character. 5 | parameter.1.display-name=decimals 6 | parameter.1.description=The number of decimal places to be used during the formatting. 7 | parameter.2.display-name=OmitSeparators 8 | parameter.2.description=Whether or not the resulting text should have group separators. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Left-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=LEFT 5 | description=Returns the first character or characters of a text. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text where the initial partial words are to be determined. 8 | parameter.1.display-name=number 9 | parameter.1.description=The number of characters for the start text. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Len-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=LEN 5 | description=Calculates length of a text string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which the length is to be determined. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Lower-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=LOWER 5 | description=Converts text to lowercase. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which capitals are converted to lower case letters. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Message-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=MESSAGE 5 | description=Formats the values using the given message-format. 6 | parameter.0.display-name=Format 7 | parameter.0.description=The text that describes the format. 8 | parameter.1.display-name=Parameter 9 | parameter.1.description=The value to be formatted. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Mid-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MID 6 | description=Returns a partial text string of a text. 7 | parameter.0.display-name=text 8 | parameter.0.description=The text in which partial words are to be determined. 9 | parameter.1.display-name=start 10 | parameter.1.description=The position from which the part word is to be determined. 11 | parameter.2.display-name=number 12 | parameter.2.description=The number of characters for the text. 13 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Proper-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=PROPER 5 | description=Return the input string with the first letter of each word converted to an uppercase 6 | letter and the rest of the letters in the word converted to lowercase. 7 | parameter.0.display-name=text 8 | parameter.0.description=The text in which lower case letters are to be converted to capitals. 9 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Rept-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=REPT 5 | description=Repeats text a given number of times. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to be repeated. 8 | parameter.1.display-name=number 9 | parameter.1.description=The number of times the text is to be repeated. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Right-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=RIGHT 5 | description=Returns the last character or characters of a text. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which the end partial words are to be determined. 8 | parameter.1.display-name=number 9 | parameter.1.description=The number of characters for the end text. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Search-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=SEARCH 6 | description=Looks for a string of text within another (NOT case sensitive) 7 | parameter.0.display-name=find_text 8 | parameter.0.description=The text to be found. 9 | parameter.1.display-name=text 10 | parameter.1.description=The text in which a search is to be made. 11 | parameter.2.display-name=position 12 | parameter.2.description=The position in the text from which the search starts. 13 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/StringCount-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=STRINGCOUNT 5 | description=Counts the occurrences of new text in a string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which partial words are to be counted. 8 | parameter.1.display-name=search_text 9 | parameter.1.description=The partial string to be counted. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/T-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=T 2 | description=Returns the value (if text) else return an empty text. 3 | parameter.0.display-name=value 4 | parameter.0.description=The value to be filtered. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Text-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=TEXT 5 | description=Converts a number to text according to a given format. 6 | parameter.0.display-name=number 7 | parameter.0.description=The numeric value to be converted. 8 | parameter.1.display-name=Format 9 | parameter.1.description=The text that describes the format. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Trim-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=TRIM 5 | description=Removes extra spaces from text. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which extra spaces between words are to be deleted. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/URLEncode-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=URLENCODE 6 | description=Applies URL-Encoding to a text given in the first parameter \ 7 | using the encoding specified in the second parameter. If no encoding is \ 8 | given, UTF-8 is assumed. 9 | parameter.0.description=The text that should be encoded. 10 | parameter.0.display-name=Text 11 | parameter.1.description=The Encoding to be used. 12 | parameter.1.display-name=Encoding 13 | 14 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Unichar-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=UNICHAR 2 | description=Converts a code number into a Unicode character or letter. 3 | parameter.0.display-name=number 4 | parameter.0.description=The code value for the character. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Unicode-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=UNICODE 2 | description=Returns the numeric code for the first Unicode character in a text string. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the text for which the code of the first character is to be found. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/Upper-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=UPPER 5 | description=Converts text to uppercase. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which lower case letters are to be converted to capitals. 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/text/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Text 6 | description=Contains functions that provide text processing functionality. -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/ArrayConcatenate-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ARRAYCONCATENATE 2 | description=Concatenate the arrays. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the array that should be concatenated. 5 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/ArrayLeft-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ARRAYLEFT 2 | description=Returns the first element or elements of an array. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text where the initial elements are to be determined. 5 | parameter.1.display-name=number 6 | parameter.1.description=The number of elements for the start array. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/ArrayRight-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ARRAYRIGHT 5 | description=Returns the last element or elements of an array. 6 | parameter.0.display-name=text 7 | parameter.0.description=The array in which the end elements are to be determined. 8 | parameter.1.display-name=number 9 | parameter.1.description=The number of elements for the end text. 10 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/CsvArray-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CSVARRAY 2 | description=Converts a CSV-text into an array. 3 | parameter.0.display-name=String 4 | parameter.0.description=The CSV text. 5 | parameter.1.display-name=Apply Quoting 6 | parameter.1.description=Flag indicating whether values should be quoted. 7 | parameter.2.display-name=Separator 8 | parameter.2.description=The Separator Character. 9 | parameter.3.display-name=Quote 10 | parameter.3.description=The Quote Character. 11 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/CsvText-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CSVTEXT 2 | description=Converts a Array into a CSV-Text. 3 | parameter.0.display-name=Array 4 | parameter.0.description=The DataSource, used as a sequence. 5 | parameter.1.display-name=Apply Quoting 6 | parameter.1.description=Flag indicating whether values should be quoted. 7 | parameter.2.display-name=Separator 8 | parameter.2.description=The Separator Character. 9 | parameter.3.display-name=Quote 10 | parameter.3.description=The Quote Character. 11 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/NormalizeArray-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=NORMALIZEARRAY 2 | description=Converts a Array, Database or sequence into a flat array. 3 | parameter.0.display-name=Array 4 | parameter.0.description=The DataSource, used as a sequence. 5 | parameter.1.display-name=Remove Null-Values 6 | parameter.1.description=A boolean flag that indicates whether null values should be removed from the result. 7 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/Null-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=NULL 6 | description=Returns a NULL-Value (Deprecated: Use NA() instead) 7 | 8 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/ParseDate-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PARSEDATE 2 | description=Converts Text into a Date using a SimpleDateFormat. 3 | parameter.0.display-name=Text 4 | parameter.0.description=The text that should be parsed. 5 | parameter.1.display-name=Pattern 6 | parameter.1.description=The SimpleDateFormat pattern. 7 | parameter.2.display-name=Locale 8 | parameter.2.description=The Locale that should be used. 9 | parameter.3.display-name=TimeZone 10 | parameter.3.description=The TimeZone that should be used. 11 | -------------------------------------------------------------------------------- /libformula/eclipse-bin/org/pentaho/reporting/libraries/formula/function/userdefined/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=User-Defined 6 | description=Contains unclassified functions -------------------------------------------------------------------------------- /libformula/libformula.eml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/database/BeginsWith-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2009, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=BEGINSWITH 5 | description=This function checks to see if a string is begins with another string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to check for the substring. 8 | parameter.1.display-name=substring 9 | parameter.1.description=The substring to look for in the text. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/database/Contains-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2009, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=CONTAINS 5 | description=This function checks to see if a string is within another string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to check for the substring. 8 | parameter.1.display-name=substring 9 | parameter.1.description=The substring to look for in the text. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/database/EndsWith-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2009, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ENDSSWITH 5 | description=This function checks to see if a string is ends with another string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to check for the substring. 8 | parameter.1.display-name=substring 9 | parameter.1.description=The substring to look for in the text. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/database/Equals-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2011, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=EQUALS 5 | description=Returns TRUE if both parameters equal one another 6 | parameter.0.display-name=value 1 7 | parameter.0.description=The first parameter 8 | parameter.1.display-name=value 2 9 | parameter.1.description=The second parameter 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/database/Like-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2009, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=LIKE 5 | description=Acts like the SQL LIKE function, comparing the first value to a regular expression 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to compare to the regular expression. 8 | parameter.1.display-name=regular expression 9 | parameter.1.description=The regular expression. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/DateDif-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=DATEDIF 6 | description=Returns the number of years, months, or days between two dates. 7 | parameter.0.display-name=StartDate 8 | parameter.0.description=First date. 9 | parameter.1.display-name=EndDate 10 | parameter.1.description=Second date. 11 | parameter.2.display-name=Format 12 | parameter.2.description=Format code. 13 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/DateTimeValue-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=DATETIMEVALUE 5 | description=Returns an internal number for a text having a possible date format. 6 | parameter.0.display-name=text 7 | parameter.0.description=A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/DateValue-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=DATEVALUE 5 | description=Returns an internal number for a text having a possible date format. 6 | parameter.0.display-name=text 7 | parameter.0.description=A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Day-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=DAY 5 | description=Returns the sequential date of the month as an integer (1-31) in relation to the date value. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The internal number for the date. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Days-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DAYS 2 | description=Calculates the number of days between two dates. 3 | parameter.0.display-name=Date_2 4 | parameter.0.description=The end date for calculating the difference in days. 5 | parameter.1.display-name=Date_1 6 | parameter.1.description=The start date for calculating the difference in days. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Hour-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=HOUR 6 | description=Determines the sequential number of the hour of the day (0-23) for the time value. 7 | parameter.0.display-name=Number 8 | parameter.0.description=Internal time value 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Minute-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MINUTE 6 | description=Determines the sequential number for the minute of the hour (0-59) for the time value. 7 | parameter.0.display-name=Number 8 | parameter.0.description=Internal time value. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Month-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MONTH 6 | description=Determines the sequential number of a month of the year (1-12) for the date value. 7 | parameter.0.display-name=Number 8 | parameter.0.description=The internal number of the date. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/MonthEnd-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MONTHEND 6 | description=Return the date at month end. 7 | parameter.0.display-name=Date 8 | parameter.0.description=Internal number of the date. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Now-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=NOW 6 | description=Determines the current time of the computer. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/PrevWeekday-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=PREVWEEKDAY 6 | description=Determines the date of the previeous working day. 7 | parameter.0.display-name=Type 8 | parameter.0.description=Fixes the start of the weekend and the type of calculation to be used.\ 9 | (1 = weekend = saturday + sunday, \ 10 | 2 = weekend = friday + saturday) 11 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Second-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SECOND 2 | description=Determines the sequential number of the second of a minute (0-59) for the time value. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The internal time value. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Time-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=TIME 6 | description=Determines a time value from the details for hour, minute and second. 7 | parameter.0.display-name=hour 8 | parameter.0.description=The integer for the hour. 9 | parameter.1.display-name=minute 10 | parameter.1.description=The integer for the minute. 11 | parameter.2.display-name=second 12 | parameter.2.description=The integer for the second. 13 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/TimeValue-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TIMEVALUE 2 | description=Returns a sequential number for a text shown in a possible time entry format. 3 | parameter.0.display-name=text 4 | parameter.0.description=A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Today-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=TODAY 6 | description=Determines the current date of the computer. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Year-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=YEAR 6 | description=Returns the year of a date value as an integer. 7 | parameter.0.display-name=Number 8 | parameter.0.description=Internal number of the date. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/Yesterday-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=YESTERDAY 6 | description=Determines the yesterday's date of the computer. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/datetime/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Date/Time 6 | description=Contains functions that compute time and date values. -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/financial/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Financial 6 | description=Contains financial functions. -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/Choose-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=CHOOSE 6 | description=Selects a value from a list of up to 30 value arguments. 7 | parameter.0.display-name=Index 8 | parameter.0.description=The index of the value (1..30) selected. 9 | parameter.1.display-name=value 10 | parameter.1.description=Value 1, value 2,... The list of arguments from which a value is chosen. 11 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/Count-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=COUNT 6 | description=Counts how many numbers are in the list of arguments. 7 | parameter.0.display-name=value 8 | parameter.0.description=Value 1, value 2, ... are 1 to 30 arguments containing different data types but where only numbers are counted. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/CountA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=COUNTA 6 | description=Counts how many values are in the list of arguments. 7 | parameter.0.display-name=value 8 | parameter.0.description=Value 1, value 2, ... are 1 to 30 arguments representing the values to be counted. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/CountBlank-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=COUNTBLANK 6 | description=Counts the blank cells in a specified range. 7 | parameter.0.display-name=range 8 | parameter.0.description=The range in which empty cells are to be counted. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/HasChanged-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=HASCHANGED 6 | description=Checks whether the columns specified by the given names has changed. 7 | parameter.0.description=Column name 8 | parameter.0.display-name=A name of the column. 9 | 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/Index-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=INDEX 2 | description=Select a value using a row and column index value (and optionally an area index). 3 | parameter.0.display-name=Array 4 | parameter.0.description=The DataSource. 5 | parameter.1.display-name=Row 6 | parameter.1.description=The Row-Index. 7 | parameter.2.display-name=Column 8 | parameter.2.description=The Column-Index. 9 | parameter.3.display-name=Area 10 | parameter.3.description=The Area Index. 11 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsBlank-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISBLANK 6 | description=Returns TRUE if value refers to an empty cell. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsErr-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISERR 5 | description=Returns TRUE if the value is an error value not equal to #N/A. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsError-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISERROR 5 | description=Returns TRUE if the value is an error value. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsEven-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISEVEN 6 | description=Returns TRUE if value is an even integer. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsLogical-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISLOGICAL 6 | description=Returns TRUE if the value carries a logical number format. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsNa-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISNA 6 | description=Returns TRUE if value equals #N/A. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsNonText-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISNONTEXT 5 | description=Returns TRUE if the value is not text. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsNumber-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISNUMBER 5 | description=Returns TRUE if value is a number. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsOdd-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ISODD 6 | description=Returns TRUE if value is an odd integer. 7 | parameter.0.display-name=value 8 | parameter.0.description=The value to be tested. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsRef-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISREF 5 | description=Returns TRUE if value is a reference. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/IsText-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ISTEXT 5 | description=Returns TRUE if value is text. 6 | parameter.0.display-name=value 7 | parameter.0.description=The value to be tested. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/Na-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=NA 5 | description=Not available. Returns the error value #N/A. 6 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/Value-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=VALUE 5 | description=Returns the number value of a string. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The string whose numeric value is to be returned. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/information/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Information 6 | description=Contains functions which provide meta-data. -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/logical/And-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=AND 5 | description=Returns TRUE if all arguments are TRUE. 6 | parameter.0.display-name=Logical value 7 | parameter.0.description=Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and each returns either TRUE or FALSE. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/logical/False-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=FALSE 6 | description=Defines the logical value as FALSE. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/logical/IfNa-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=IFNA 6 | description=Return X unless it is an NA, in which case return an alternative value. 7 | parameter.0.display-name=Field or Value 8 | parameter.0.description=Any value or expression. 9 | parameter.1.display-name=Alternative Value 10 | parameter.1.description=The result of the function if the Field or Value was NA. 11 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/logical/Not-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=NOT 6 | description=Reverses the value of the argument. 7 | parameter.0.display-name=Logical value 8 | parameter.0.description=An expression that can be either TRUE or FALSE. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/logical/Or-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=OR 5 | description=Returns TRUE if an argument is TRUE. 6 | parameter.0.display-name=Logical value 7 | parameter.0.description=Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and which return either TRUE or FALSE. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/logical/True-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=TRUE 5 | description=Returns the logical value TRUE. 6 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/logical/Xor-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=XOR 5 | description=Returns TRUE if a odd number of arguments are TRUE. 6 | parameter.0.display-name=Logical value 7 | parameter.0.description=Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and each returns either TRUE or FALSE. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/logical/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Logical 6 | description=Contains functions that deal with or produce logical values. -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Abs-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ABS 5 | description=Absolute value of a number. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The number whose absolute value is to be returned. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Acos-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ACOS 2 | description=Returns the arccosine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value between -1 and 1 for which the arccosine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Acosh-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ACOSH 2 | description=Returns the inverse hyperbolic cosine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value greater than or equal to 1 for which the hyperbolic cosine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Asin-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ASIN 2 | description=Returns the arcsine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value between -1 and 1 for which the arcsine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Atan-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ATAN 2 | description=Returns the arctangent of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the arctangent is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Atan2-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ATAN2 2 | description=Returns the arctangent for the specified coordinates. 3 | parameter.0.display-name=number_x 4 | parameter.0.description=The value for the x coordinate. 5 | parameter.1.display-name=number_y 6 | parameter.1.description=The value for the y coordinate. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Average-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=AVERAGE 5 | description=Returns the average of a sample. 6 | parameter.0.display-name=number 7 | parameter.0.description=Number 1, number 2;...are 1 to 30 numeric arguments representing a population sample. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/AverageA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=AVERAGEA 5 | description=Returns the average value for a sample. Text is evaluated as zero. 6 | parameter.0.display-name=value 7 | parameter.0.description=Value 1; value 2;.. .are 1 to 30 arguments representing a sample taken from a basic total population. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Cos-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COS 2 | description=Returns the cosine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The angle in the radians for which the cosine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Even-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=EVEN 5 | description=Rounds a positive number up and negative number down to the nearest even integer. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The number to be rounded up. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Exp-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=EXP 2 | description=Calculates the exponent for basis e. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The exponent applied to base e. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Ln-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LN 2 | description=Calculates the natural logarithm of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value greater than 0 for which the natural logarithm is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Log-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LOG 2 | description=Calculates the logarithm to any specified base. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value greater than 0 for which the logarithm is to be calculated. 5 | parameter.1.display-name=Base 6 | parameter.1.description=The base of the logarithm. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Log10-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LOG10 2 | description=Calculates the base-10 logarithm of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value greater than 0 for which the logarithm is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Max-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MAX 6 | description=Returns the maximum value in a list of arguments. 7 | parameter.0.display-name=number 8 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/MaxA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MAXA 6 | description=Returns the maximum value in a list of arguments. Text is evaluated as zero. 7 | parameter.0.display-name=number 8 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Min-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=MIN 5 | description=Returns the minimum value in a list of arguments. 6 | parameter.0.display-name=number 7 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments for which the smallest number is to be determined. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/MinA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=MINA 5 | description=Returns the smallest value in a list of arguments. Text is evaluated as zero. 6 | parameter.0.display-name=value 7 | parameter.0.description=Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be determined. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Mod-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=MOD 5 | description=Calculates the remainder of a division. 6 | parameter.0.display-name=Dividend 7 | parameter.0.description=The number to be divided. 8 | parameter.1.display-name=Divisor 9 | parameter.1.description=The number by which the dividend is divided. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/N-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=N 5 | description=Return the number of a value. 6 | parameter.0.display-name=Value 7 | parameter.0.description=The value that should be a number. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Odd-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=ODD 6 | description=Rounds a positive number up and negative number down to the nearest odd integer. 7 | parameter.0.display-name=Number 8 | parameter.0.description=The number to be rounded up. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Pi-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PI 2 | description=Returns the value of the number Pi. 3 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Power-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=POWER 5 | description=Computes a number raised to the power by another number. 6 | parameter.0.display-name=Number 7 | parameter.0.description=The number. 8 | parameter.1.display-name=Power 9 | parameter.1.description=The power. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Sin-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SIN 2 | description=Returns the sine of a number. 3 | parameter.0.display-name=number 4 | parameter.0.description=The angle in radians for which the sine is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Sqrt-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SQRT 2 | description=Returns the square root of a number. 3 | parameter.0.display-name=number 4 | parameter.0.description=A positive value for which the square root is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Sum-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=SUM 6 | description=Returns the sum of all arguments. 7 | parameter.0.display-name=number 8 | parameter.0.description=Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/SumA-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=SUMA 6 | description=Returns the sum of all arguments. Numbers, text and logical values are included in the calculation too. 7 | parameter.0.display-name=number 8 | parameter.0.description=Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/Var-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=VAR 2 | description=Calculates the variance based on a sample. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/math/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Mathematical 6 | description=Contains functions that provide general mathematical functionality. -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/rounding/Int-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=INT 6 | description=Rounds a number down to the nearest integer. 7 | parameter.0.display-name=Number 8 | parameter.0.description=The number to be rounded down. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/rounding/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Rounding 6 | description=Contains rounding functions. -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Asc-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ASC 5 | description=Converts full-width to half-width ASCII and katakana characters. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to be converted. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Char-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CHAR 2 | description=Converts a code number into a ASCII character or letter. 3 | parameter.0.display-name=number 4 | parameter.0.description=The code value for the character. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Clean-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=CLEAN 5 | description=Removes all non-printable characters from the given text. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to be cleaned. 8 | parameter.1.display-name=encoding 9 | parameter.1.description=The optional encoding. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Code-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CODE 2 | description=Returns the numeric code for the first character character in a text string. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the text for which the code of the first character is to be found. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Concatenate-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CONCATENATE 2 | description=Concatenate the text strings. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the text that should be concatenated. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Dollar-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DOLLAR 2 | description=Convert the parameters to Text formatted as currency. 3 | parameter.0.display-name=number 4 | parameter.0.description=The value for the character. 5 | parameter.1.display-name=decimals 6 | parameter.1.description=The number of decimal places to be used during the formatting. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Exact-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=EXACT 5 | description=Specifies whether two texts are identical. 6 | parameter.0.display-name=text_1 7 | parameter.0.description=The first text to be used for comparing texts. 8 | parameter.1.display-name=text_2 9 | parameter.1.description=The second text for comparing texts. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Find-Function.properties: -------------------------------------------------------------------------------- 1 | 2 | 3 | display-name=DLOOKUP 4 | description=Lookup for a value using a set of keys 5 | parameter.0.display-name=find_text 6 | parameter.0.description=The text to be found. 7 | parameter.1.display-name=text 8 | parameter.1.description=The text in which a search is to be made. 9 | parameter.2.display-name=position 10 | parameter.2.description=The position in the text from which the search starts. 11 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Fixed-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DOLLAR 2 | description=Round the number to a specified number of decimals and format the result as a text. 3 | parameter.0.display-name=number 4 | parameter.0.description=The value for the character. 5 | parameter.1.display-name=decimals 6 | parameter.1.description=The number of decimal places to be used during the formatting. 7 | parameter.2.display-name=OmitSeparators 8 | parameter.2.description=Whether or not the resulting text should have group separators. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Left-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=LEFT 5 | description=Returns the first character or characters of a text. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text where the initial partial words are to be determined. 8 | parameter.1.display-name=number 9 | parameter.1.description=The number of characters for the start text. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Len-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=LEN 5 | description=Calculates length of a text string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which the length is to be determined. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Lower-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=LOWER 5 | description=Converts text to lowercase. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which capitals are converted to lower case letters. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Message-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=MESSAGE 5 | description=Formats the values using the given message-format. 6 | parameter.0.display-name=Format 7 | parameter.0.description=The text that describes the format. 8 | parameter.1.display-name=Parameter 9 | parameter.1.description=The value to be formatted. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Mid-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=MID 6 | description=Returns a partial text string of a text. 7 | parameter.0.display-name=text 8 | parameter.0.description=The text in which partial words are to be determined. 9 | parameter.1.display-name=start 10 | parameter.1.description=The position from which the part word is to be determined. 11 | parameter.2.display-name=number 12 | parameter.2.description=The number of characters for the text. 13 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Proper-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=PROPER 5 | description=Return the input string with the first letter of each word converted to an uppercase 6 | letter and the rest of the letters in the word converted to lowercase. 7 | parameter.0.display-name=text 8 | parameter.0.description=The text in which lower case letters are to be converted to capitals. 9 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Rept-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=REPT 5 | description=Repeats text a given number of times. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text to be repeated. 8 | parameter.1.display-name=number 9 | parameter.1.description=The number of times the text is to be repeated. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Right-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=RIGHT 5 | description=Returns the last character or characters of a text. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which the end partial words are to be determined. 8 | parameter.1.display-name=number 9 | parameter.1.description=The number of characters for the end text. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Search-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=SEARCH 6 | description=Looks for a string of text within another (NOT case sensitive) 7 | parameter.0.display-name=find_text 8 | parameter.0.description=The text to be found. 9 | parameter.1.display-name=text 10 | parameter.1.description=The text in which a search is to be made. 11 | parameter.2.display-name=position 12 | parameter.2.description=The position in the text from which the search starts. 13 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/StringCount-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=STRINGCOUNT 5 | description=Counts the occurrences of new text in a string. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which partial words are to be counted. 8 | parameter.1.display-name=search_text 9 | parameter.1.description=The partial string to be counted. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/T-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=T 2 | description=Returns the value (if text) else return an empty text. 3 | parameter.0.display-name=value 4 | parameter.0.description=The value to be filtered. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Text-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=TEXT 5 | description=Converts a number to text according to a given format. 6 | parameter.0.display-name=number 7 | parameter.0.description=The numeric value to be converted. 8 | parameter.1.display-name=Format 9 | parameter.1.description=The text that describes the format. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Trim-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=TRIM 5 | description=Removes extra spaces from text. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which extra spaces between words are to be deleted. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/URLEncode-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=URLENCODE 6 | description=Applies URL-Encoding to a text given in the first parameter \ 7 | using the encoding specified in the second parameter. If no encoding is \ 8 | given, UTF-8 is assumed. 9 | parameter.0.description=The text that should be encoded. 10 | parameter.0.display-name=Text 11 | parameter.1.description=The Encoding to be used. 12 | parameter.1.display-name=Encoding 13 | 14 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Unichar-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=UNICHAR 2 | description=Converts a code number into a Unicode character or letter. 3 | parameter.0.display-name=number 4 | parameter.0.description=The code value for the character. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Unicode-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=UNICODE 2 | description=Returns the numeric code for the first Unicode character in a text string. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the text for which the code of the first character is to be found. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/Upper-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=UPPER 5 | description=Converts text to uppercase. 6 | parameter.0.display-name=text 7 | parameter.0.description=The text in which lower case letters are to be converted to capitals. 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/text/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=Text 6 | description=Contains functions that provide text processing functionality. -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/ArrayConcatenate-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ARRAYCONCATENATE 2 | description=Concatenate the arrays. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the array that should be concatenated. 5 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/ArrayLeft-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ARRAYLEFT 2 | description=Returns the first element or elements of an array. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text where the initial elements are to be determined. 5 | parameter.1.display-name=number 6 | parameter.1.description=The number of elements for the start array. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/ArrayRight-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | display-name=ARRAYRIGHT 5 | description=Returns the last element or elements of an array. 6 | parameter.0.display-name=text 7 | parameter.0.description=The array in which the end elements are to be determined. 8 | parameter.1.display-name=number 9 | parameter.1.description=The number of elements for the end text. 10 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/CsvArray-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CSVARRAY 2 | description=Converts a CSV-text into an array. 3 | parameter.0.display-name=String 4 | parameter.0.description=The CSV text. 5 | parameter.1.display-name=Apply Quoting 6 | parameter.1.description=Flag indicating whether values should be quoted. 7 | parameter.2.display-name=Separator 8 | parameter.2.description=The Separator Character. 9 | parameter.3.display-name=Quote 10 | parameter.3.description=The Quote Character. 11 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/CsvText-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CSVTEXT 2 | description=Converts a Array into a CSV-Text. 3 | parameter.0.display-name=Array 4 | parameter.0.description=The DataSource, used as a sequence. 5 | parameter.1.display-name=Apply Quoting 6 | parameter.1.description=Flag indicating whether values should be quoted. 7 | parameter.2.display-name=Separator 8 | parameter.2.description=The Separator Character. 9 | parameter.3.display-name=Quote 10 | parameter.3.description=The Quote Character. 11 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/NormalizeArray-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=NORMALIZEARRAY 2 | description=Converts a Array, Database or sequence into a flat array. 3 | parameter.0.display-name=Array 4 | parameter.0.description=The DataSource, used as a sequence. 5 | parameter.1.display-name=Remove Null-Values 6 | parameter.1.description=A boolean flag that indicates whether null values should be removed from the result. 7 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/Null-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=NULL 6 | description=Returns a NULL-Value (Deprecated: Use NA() instead) 7 | 8 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/ParseDate-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PARSEDATE 2 | description=Converts Text into a Date using a SimpleDateFormat. 3 | parameter.0.display-name=Text 4 | parameter.0.description=The text that should be parsed. 5 | parameter.1.display-name=Pattern 6 | parameter.1.description=The SimpleDateFormat pattern. 7 | parameter.2.display-name=Locale 8 | parameter.2.description=The Locale that should be used. 9 | parameter.3.display-name=TimeZone 10 | parameter.3.description=The TimeZone that should be used. 11 | -------------------------------------------------------------------------------- /libformula/src/main/java/org/pentaho/reporting/libraries/formula/function/userdefined/category.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=User-Defined 6 | description=Contains unclassified functions -------------------------------------------------------------------------------- /libformula/todo/ACOS-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ACOS 2 | description=Returns the arccosine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value between -1 and 1 for which the arccosine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/ACOT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ACOT 2 | description=Returns the inverse cotangent of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the inverse cotangent is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/ACOTH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ACOTH 2 | description=Returns the inverse hyperbolic cotangent of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/ARABIC-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ARABIC 2 | description=Calculates the value of a Roman numeral. 3 | parameter.0.display-name=Text 4 | parameter.0.description=The text that represents a Roman numeral. 5 | -------------------------------------------------------------------------------- /libformula/todo/AREAS-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=AREAS 2 | description=Returns the number of individual ranges that belong to a (multiple) range. 3 | parameter.0.display-name=reference 4 | parameter.0.description=The reference to a (multiple) range. 5 | -------------------------------------------------------------------------------- /libformula/todo/ASC-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ASC 2 | description=Converts full-width ASCII and katakana characters to half-width. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text to convert. 5 | -------------------------------------------------------------------------------- /libformula/todo/ASINH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ASINH 2 | description=Returns the inverse hyperbolic sine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the inverse hyperbolic sine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/ATANH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ATANH 2 | description=Returns the inverse hyperbolic tangent of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/AVEDEV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=AVEDEV 2 | description=Returns the average of the absolute deviations of a sample from the mean. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2;...are 1 to 30 numerical arguments representing a sample. 5 | -------------------------------------------------------------------------------- /libformula/todo/B-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=B 2 | description=Returns the probability of a trial result using binomial distribution. 3 | parameter.0.display-name=trials 4 | parameter.0.description=The number of trials. 5 | parameter.1.display-name=SP 6 | parameter.1.description=The individual probability of a trial result. 7 | parameter.2.display-name=T_1 8 | parameter.2.description=Lower limit for the number of trials. 9 | parameter.3.display-name=T_2 10 | parameter.3.description=Upper limit for the number of trials. 11 | -------------------------------------------------------------------------------- /libformula/todo/BASE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=BASE 2 | description=Converts a positive integer to text from a number system to the base defined. 3 | parameter.0.display-name=number 4 | parameter.0.description=The number to be converted. 5 | parameter.1.display-name=radix 6 | parameter.1.description=The base number for conversion must be in the range 2 - 36. 7 | parameter.2.display-name=Minimum length 8 | parameter.2.description=If the text is shorter than the specified length, zeros are added to the left of the string. 9 | -------------------------------------------------------------------------------- /libformula/todo/BINOMDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=BINOMDIST 2 | description=Values of the binomial distribution. 3 | parameter.0.display-name=X 4 | parameter.0.description=The number of successes in a series of trials. 5 | parameter.1.display-name=trials 6 | parameter.1.description=The total number of trials. 7 | parameter.2.display-name=SP 8 | parameter.2.description=The success probability of a trial. 9 | parameter.3.display-name=C 10 | parameter.3.description=Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability. 11 | -------------------------------------------------------------------------------- /libformula/todo/CEILING-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CEILING 2 | description=Rounds a number up to the nearest multiple of significance. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The number to be rounded up. 5 | parameter.1.display-name=Significance 6 | parameter.1.description=The number to whose multiple the value is rounded. 7 | parameter.2.display-name=Mode 8 | parameter.2.description=If given and not equal to zero then rounded up according to amount when a negative number and significance. 9 | -------------------------------------------------------------------------------- /libformula/todo/CELL-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CELL 2 | description=Determines information about address, formatting or contents of a cell. 3 | parameter.0.display-name=info_type 4 | parameter.0.description=String that specifies the type of information. 5 | parameter.1.display-name=Reference 6 | parameter.1.description=The position of the cell you want to examine. 7 | -------------------------------------------------------------------------------- /libformula/todo/CHAR-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CHAR 2 | description=Converts a code number into a character or letter. 3 | parameter.0.display-name=number 4 | parameter.0.description=The code value for the character. 5 | -------------------------------------------------------------------------------- /libformula/todo/CHOOSE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CHOOSE 2 | description=Selects a value from a list of up to 30 value arguments. 3 | parameter.0.display-name=Index 4 | parameter.0.description=The index of the value (1..30) selected. 5 | parameter.1.display-name=value 6 | parameter.1.description=Value 1, value 2,... The list of arguments from which a value is chosen. 7 | -------------------------------------------------------------------------------- /libformula/todo/CLEAN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CLEAN 2 | description=Removes all nonprintable characters from text. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text from which nonprintable characters are to be removed. 5 | -------------------------------------------------------------------------------- /libformula/todo/CODE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CODE 2 | description=Returns a numeric code for the first character in a text string. 3 | parameter.0.display-name=text 4 | parameter.0.description=This is the text for which the code of the first character is to be found. 5 | -------------------------------------------------------------------------------- /libformula/todo/COLUMN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COLUMN 2 | description=Returns the internal column number of a reference. 3 | parameter.0.display-name=reference 4 | parameter.0.description=The reference to a cell or a range. 5 | -------------------------------------------------------------------------------- /libformula/todo/COLUMNS-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COLUMNS 2 | description=Returns the number of columns in an array or reference. 3 | parameter.0.display-name=array 4 | parameter.0.description=The array (reference) for which the number of columns is to be determined. 5 | -------------------------------------------------------------------------------- /libformula/todo/COM.MICROSOFT.BAHTTEXT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COM.MICROSOFT.BAHTTEXT 2 | description=Converts a number to text (Baht). 3 | parameter.0.display-name=Number 4 | parameter.0.description=The number to convert. 5 | -------------------------------------------------------------------------------- /libformula/todo/COMBIN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COMBIN 2 | description=Calculates the number of combinations for elements without repetition. 3 | parameter.0.display-name=number_1 4 | parameter.0.description=The total number of elements. 5 | parameter.1.display-name=number_2 6 | parameter.1.description=The number of elements selected. 7 | -------------------------------------------------------------------------------- /libformula/todo/COMBINA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COMBINA 2 | description=Calculates the number of combinations of elements including repetition. 3 | parameter.0.display-name=number_1 4 | parameter.0.description=The total number of elements. 5 | parameter.1.display-name=number_2 6 | parameter.1.description=The number of elements selected. 7 | -------------------------------------------------------------------------------- /libformula/todo/CONCATENATE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CONCATENATE 2 | description=Combines several text items into one. 3 | parameter.0.display-name=text 4 | parameter.0.description=Text for the concatentation. 5 | -------------------------------------------------------------------------------- /libformula/todo/CONFIDENCE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CONFIDENCE 2 | description=Returns a (1 alpha) confidence interval for a normal distribution. 3 | parameter.0.display-name=alpha 4 | parameter.0.description=The level of the confidence interval. 5 | parameter.1.display-name=STDEV 6 | parameter.1.description=The standard deviation of the population. 7 | parameter.2.display-name=size 8 | parameter.2.description=The size of the population. 9 | -------------------------------------------------------------------------------- /libformula/todo/CORREL-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CORREL 2 | description=Returns the correlation coefficient. 3 | parameter.0.display-name=Data_1 4 | parameter.0.description=The first record array. 5 | parameter.1.display-name=Data_2 6 | parameter.1.description=The second record array. 7 | -------------------------------------------------------------------------------- /libformula/todo/COSH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COSH 2 | description=Returns the hyperbolic cosine of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the hyperbolic cosine is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/COT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COT 2 | description=Returns the cotangent of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The angle in radians whose cotangent value is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/COTH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COTH 2 | description=Returns the hyperbolic cotangent of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=A value not equal to 0 for which the hyperbolic cotangent is to be returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/COUNTIF-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COUNTIF 2 | description=Counts the arguments which meet the set conditions. 3 | parameter.0.display-name=range 4 | parameter.0.description=The range of cells on which the criteria are to be applied. 5 | parameter.1.display-name=criteria 6 | parameter.1.description=The cell range in which the search criteria are given. 7 | -------------------------------------------------------------------------------- /libformula/todo/COVAR-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=COVAR 2 | description=Calculates the covariance. 3 | parameter.0.display-name=Data_1 4 | parameter.0.description=The first record array. 5 | parameter.1.display-name=Data_2 6 | parameter.1.description=The second record array. 7 | -------------------------------------------------------------------------------- /libformula/todo/CRITBINOM-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=CRITBINOM 2 | description=Border arguments of the binomial distribution. 3 | parameter.0.display-name=trials 4 | parameter.0.description=The total number of trials. 5 | parameter.1.display-name=SP 6 | parameter.1.description=The success probability of a trial. 7 | parameter.2.display-name=alpha 8 | parameter.2.description=The border probability that is attained or exceeded. 9 | -------------------------------------------------------------------------------- /libformula/todo/DAVERAGE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DAVERAGE 2 | description=Returns the average value of all the cells of a data range whose contents match the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DAYS360-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DAYS360 2 | description=Calculates the number of days between two dates based on a 360-day year. 3 | parameter.0.display-name=Date_1 4 | parameter.0.description=The start date for calculating the difference in days. 5 | parameter.1.display-name=Date_2 6 | parameter.1.description=The end date for calculating the difference in days. 7 | parameter.2.display-name=Type 8 | parameter.2.description=Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method. 9 | -------------------------------------------------------------------------------- /libformula/todo/DCOUNT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DCOUNT 2 | description=Counts the cells of a data range whose contents match the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DCOUNTA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DCOUNTA 2 | description=Counts all non-blank cells of a data range where the content corresponds to the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DDE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DDE 2 | description=Result of a DDE link. 3 | parameter.0.display-name=server 4 | parameter.0.description=The name of the server application. 5 | parameter.1.display-name=File 6 | parameter.1.description=The name of the file. 7 | parameter.2.display-name=range 8 | parameter.2.description=The range from which data is to be taken. 9 | parameter.3.display-name=mode 10 | parameter.3.description=Defines how data is to be converted to numbers. 11 | -------------------------------------------------------------------------------- /libformula/todo/DECIMAL-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DECIMAL 2 | description=Converts a text of a specified number system to a positive integer in the base given. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text to be converted. 5 | parameter.1.display-name=radix 6 | parameter.1.description=The base number for conversion must be in the range 2 - 36. 7 | -------------------------------------------------------------------------------- /libformula/todo/DEGREES-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DEGREES 2 | description=Converts a radian to degrees 3 | parameter.0.display-name=Number 4 | parameter.0.description=The angle in a radian 5 | -------------------------------------------------------------------------------- /libformula/todo/DEVSQ-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DEVSQ 2 | description=Returns the sum of squares of deviations from the sample mean value 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample. 5 | -------------------------------------------------------------------------------- /libformula/todo/DGET-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DGET 2 | description=Defines the contents of the cell of a data range which matches the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DMAX-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DMAX 2 | description=Returns the maximum value from all of the cells of a data range which correspond to the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DMIN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DMIN 2 | description=Returns the minimum of all cells of a data range where the contents correspond to the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DOLLAR-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DOLLAR 2 | description=Converts a number to text in currency format. 3 | parameter.0.display-name=value 4 | parameter.0.description=Value is a number, a reference to a cell containing a number or a formula that results in a number. 5 | parameter.1.display-name=decimals 6 | parameter.1.description=Decimal places. Denotes the number of digits to the right of the decimal point. 7 | -------------------------------------------------------------------------------- /libformula/todo/DPRODUCT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DPRODUCT 2 | description=Multiplies all cells of a data range where the contents match the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DSTDEV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DSTDEV 2 | description=Calculates the standard deviation of all cells in a data range whose contents match the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DSTDEVP-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DSTDEVP 2 | description=Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DSUM-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DSUM 2 | description=Adds all the cells of a data range where the contents match the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DVAR-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DVAR 2 | description=Determines the variance of all the cells in a data range where the contents match the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/DVARP-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=DVARP 2 | description=Determines variance of a population based on all cells in a data range where contents match the search criteria. 3 | parameter.0.display-name=Database 4 | parameter.0.description=The range of cells containing data. 5 | parameter.1.display-name=Database field 6 | parameter.1.description=Indicates which database field (column) is to be used for the search criteria. 7 | parameter.2.display-name=Search criteria 8 | parameter.2.description=Defines the cell range containing the search criteria. 9 | -------------------------------------------------------------------------------- /libformula/todo/EASTERSUNDAY-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=EASTERSUNDAY 2 | description=Calculates the date of Easter Sunday in a given year. 3 | parameter.0.display-name=year 4 | parameter.0.description=An interger between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set). 5 | -------------------------------------------------------------------------------- /libformula/todo/EFFECT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=EFFECT 2 | description=Calculates the annual net interest rate for a nominal interest rate. 3 | parameter.0.display-name=NOM 4 | parameter.0.description=Nominal Interest 5 | parameter.1.display-name=P 6 | parameter.1.description=Periods. The number of interest payments per year. 7 | -------------------------------------------------------------------------------- /libformula/todo/EXPONDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=EXPONDIST 2 | description=Values of the exponential distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value to which the exponential distribution is to be calculated. 5 | parameter.1.display-name=lambda 6 | parameter.1.description=The parameters of the exponential distribution. 7 | parameter.2.display-name=C 8 | parameter.2.description=Cumulated. C=0 calculates the density function, C=1 the distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/FACT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FACT 2 | description=Calculates the factorial of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The number for which the factorial is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/FISHER-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FISHER 2 | description=Returns the Fisher transformation. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value to be transformed (-1 < VALUE < 1). 5 | -------------------------------------------------------------------------------- /libformula/todo/FISHERINV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FISHERINV 2 | description=Returns the inverse of the Fisher transformation. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value that is to be transformed back. 5 | -------------------------------------------------------------------------------- /libformula/todo/FIXED-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FIXED 2 | description=Formats a number with a fixed number of places after the decimal point and thousands separator. 3 | parameter.0.display-name=number 4 | parameter.0.description=The number to be formatted. 5 | parameter.1.display-name=Decimals 6 | parameter.1.description=Decimal places. The number of fixed decimal places that are to be displayed. 7 | parameter.2.display-name=No thousands separators 8 | parameter.2.description=No thousands separator. True value, if existing and TRUE (unequal to 0), no thousands separators are set. 9 | -------------------------------------------------------------------------------- /libformula/todo/FLOOR-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FLOOR 2 | description=Rounds number down to the nearest multiple of significance. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The number to be rounded down. 5 | parameter.1.display-name=Significance 6 | parameter.1.description=The number to whose multiple the value is to be rounded down. 7 | parameter.2.display-name=Mode 8 | parameter.2.description=If given and not equal to zero then rounded down according to amount when a negative number and significance. 9 | -------------------------------------------------------------------------------- /libformula/todo/FORECAST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FORECAST 2 | description=Returns a value along a linear regression 3 | parameter.0.display-name=value 4 | parameter.0.description=The X value for which the Y value on the regression linear is to be calculated. 5 | parameter.1.display-name=data_Y 6 | parameter.1.description=The Y data array. 7 | parameter.2.display-name=data_X 8 | parameter.2.description=The X data array. 9 | -------------------------------------------------------------------------------- /libformula/todo/FORMULA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FORMULA 2 | description=Returns the formula of a formula cell. 3 | parameter.0.display-name=Reference 4 | parameter.0.description=The formula cell. 5 | -------------------------------------------------------------------------------- /libformula/todo/FREQUENCY-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FREQUENCY 2 | description=Returns a frequency distribution as a vertical array. 3 | parameter.0.display-name=data 4 | parameter.0.description=The array of the data. 5 | parameter.1.display-name=classes 6 | parameter.1.description=The array for forming classes. 7 | -------------------------------------------------------------------------------- /libformula/todo/FTEST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=FTEST 2 | description=Calculates the F test. 3 | parameter.0.display-name=data_1 4 | parameter.0.description=The first record array. 5 | parameter.1.display-name=data_2 6 | parameter.1.description=The second record array. 7 | -------------------------------------------------------------------------------- /libformula/todo/GAMMADIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=GAMMADIST 2 | description=Values of the gamma distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the gamma distribution is to be calculated. 5 | parameter.1.display-name=alpha 6 | parameter.1.description=The Alpha parameter of the Gamma distribution. 7 | parameter.2.display-name=beta 8 | parameter.2.description=The Beta parameter of the Gamma distribution. 9 | parameter.3.display-name=C 10 | parameter.3.description=Cumulated. C=0 calculates the density function, C=1 the distribution. 11 | -------------------------------------------------------------------------------- /libformula/todo/GAMMAINV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=GAMMAINV 2 | description=Values of the inverse gamma distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=The probability value for which the inverse gamma distribution is to be calculated. 5 | parameter.1.display-name=alpha 6 | parameter.1.description=The Alpha parameter of the Gamma distribution. 7 | parameter.2.display-name=beta 8 | parameter.2.description=The Beta parameter of the Gamma distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/GAMMALN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=GAMMALN 2 | description=Returns the natural logarithm of the gamma function. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the natural logarithm of the gamma function is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/GAUSS-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=GAUSS 2 | description=Returns the integral values of the standard normal cumulative distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the integral value of the standard normal distribution is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/GCD-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=GCD 2 | description=Greatest Common Divisor 3 | parameter.0.display-name=Integer 4 | parameter.0.description=Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/GEOMEAN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=GEOMEAN 2 | description=Returns the geometric mean of a sample. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample. 5 | -------------------------------------------------------------------------------- /libformula/todo/GETPIVOTDATA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=GETPIVOTDATA 2 | description=Extracts value(s) from a DataPilot table. 3 | parameter.0.display-name=Data Field 4 | parameter.0.description=The name of the data pilot field to extract. 5 | parameter.1.display-name=DataPilot 6 | parameter.1.description=A reference to a cell or range in the DataPilot table. 7 | parameter.2.display-name=Field Name / Item 8 | parameter.2.description=Field name/value pair to filter the target data. 9 | -------------------------------------------------------------------------------- /libformula/todo/HARMEAN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=HARMEAN 2 | description=Returns the harmonic mean of a sample. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample. 5 | -------------------------------------------------------------------------------- /libformula/todo/HLOOKUP-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=HLOOKUP 2 | description=Horizontal search and reference to the cells located below. 3 | parameter.0.display-name=search_criteria 4 | parameter.0.description=The value to be found in the first row. 5 | parameter.1.display-name=array 6 | parameter.1.description=The array or the range for the reference. 7 | parameter.2.display-name=Index 8 | parameter.2.description=The row index in the array. 9 | parameter.3.display-name=sorted 10 | parameter.3.description=If the value is TRUE or not given, the search row of the array must be sorted in ascending order. 11 | -------------------------------------------------------------------------------- /libformula/todo/HYPERLINK-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=HYPERLINK 2 | description=Hyperlink. 3 | parameter.0.display-name=URL 4 | parameter.0.description=URL 5 | parameter.1.display-name=CellText 6 | parameter.1.description=Cell Text 7 | -------------------------------------------------------------------------------- /libformula/todo/HYPGEOMDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=HYPGEOMDIST 2 | description=Values of the hypergeometric distribution. 3 | parameter.0.display-name=X 4 | parameter.0.description=The number of successes in the sample. 5 | parameter.1.display-name=n_sample 6 | parameter.1.description=The size of the sample. 7 | parameter.2.display-name=successes 8 | parameter.2.description=The number of successes in the population. 9 | parameter.3.display-name=n_population 10 | parameter.3.description=The population size. 11 | -------------------------------------------------------------------------------- /libformula/todo/INDEX-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=INDEX 2 | description=Returns a reference to a cell from a defined range. 3 | parameter.0.display-name=reference 4 | parameter.0.description=The reference to a (multiple) range. 5 | parameter.1.display-name=row 6 | parameter.1.description=The row in the range. 7 | parameter.2.display-name=column 8 | parameter.2.description=The column in the range. 9 | parameter.3.display-name=range 10 | parameter.3.description=The index of the subrange if referring to a multiple range. 11 | -------------------------------------------------------------------------------- /libformula/todo/INDIRECT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=INDIRECT 2 | description=Returns the contents of a cell that is referenced in text form. 3 | parameter.0.display-name=ref 4 | parameter.0.description=The cell whose contents are to be evaluated is to be referenced in text form (e.g. "A1"). 5 | parameter.1.display-name=A1 6 | parameter.1.description=The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style. 7 | -------------------------------------------------------------------------------- /libformula/todo/INFO-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=INFO 2 | description=Returns information about the environment. 3 | parameter.0.display-name=Text 4 | parameter.0.description=Can be "osversion", "system", "release", "numfile", and "recalc". 5 | -------------------------------------------------------------------------------- /libformula/todo/INTERCEPT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=INTERCEPT 2 | description=Returns the intercept of the linear regression line and the Y axis. 3 | parameter.0.display-name=data_Y 4 | parameter.0.description=The Y data array. 5 | parameter.1.display-name=data_X 6 | parameter.1.description=The X data array. 7 | -------------------------------------------------------------------------------- /libformula/todo/IRR-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=IRR 2 | description=Returns the actuarial rate of interest of an investment excluding costs or profits. 3 | parameter.0.display-name=Values 4 | parameter.0.description=An array or reference to cells whose contents correspond to the payments. 5 | parameter.1.display-name=Guess 6 | parameter.1.description=Guess. An estimated value of the rate of return to be used for the iteration calculation. 7 | -------------------------------------------------------------------------------- /libformula/todo/ISFORMULA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ISFORMULA 2 | description=Returns TRUE if the cell is a formula cell. 3 | parameter.0.display-name=reference 4 | parameter.0.description=The cell to be checked. 5 | -------------------------------------------------------------------------------- /libformula/todo/ISOWEEKNUM-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ISOWEEKNUM 2 | description=Calculates the calendar week corresponding to the given date. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The internal number of the date. 5 | parameter.1.display-name=mode 6 | parameter.1.description=Indicates the first day of the week (1 = Sunday, other values = Monday). 7 | -------------------------------------------------------------------------------- /libformula/todo/ISPMT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ISPMT 2 | description=Returns the amount of interest for constant amortization rates. 3 | parameter.0.display-name=rate 4 | parameter.0.description=Interest rate for a single amortization rate. 5 | parameter.1.display-name=Period 6 | parameter.1.description=Number of amortization periods for the calculation of the interest. 7 | parameter.2.display-name=total_periods 8 | parameter.2.description=Sum total of amortization periods. 9 | parameter.3.display-name=invest 10 | parameter.3.description=Amount of the investment. 11 | -------------------------------------------------------------------------------- /libformula/todo/JIS-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=JIS 2 | description=Converts half-width ASCII and katakana characters to full-width. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text to convert. 5 | -------------------------------------------------------------------------------- /libformula/todo/KURT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=KURT 2 | description=Returns the kurtosis of a distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments, representing a sample of the distribution. 5 | -------------------------------------------------------------------------------- /libformula/todo/LARGE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LARGE 2 | description=Returns the k-th largest value of a sample. 3 | parameter.0.display-name=data 4 | parameter.0.description=The array of the data in the sample. 5 | parameter.1.display-name=Rank_c 6 | parameter.1.description=The ranking of the value. 7 | -------------------------------------------------------------------------------- /libformula/todo/LCM-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LCM 2 | description=Lowest common multiple 3 | parameter.0.display-name=Integer 4 | parameter.0.description=Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/LEGACY.CHIDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LEGACY.CHIDIST 2 | description=Values of the chi square distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the chi square distribution is to be calculated. 5 | parameter.1.display-name=degrees_freedom 6 | parameter.1.description=The degrees of freedom of the chi square distribution. 7 | -------------------------------------------------------------------------------- /libformula/todo/LEGACY.CHIINV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LEGACY.CHIINV 2 | description=Values of the inverse chi-squared distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=The probability value for which the inverse chi square distribution is to be calculated. 5 | parameter.1.display-name=degrees_freedom 6 | parameter.1.description=The degrees of freedom of the chi square distribution. 7 | -------------------------------------------------------------------------------- /libformula/todo/LEGACY.CHITEST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LEGACY.CHITEST 2 | description=Returns the chi square independence test. 3 | parameter.0.display-name=Data_B 4 | parameter.0.description=The observed data array. 5 | parameter.1.display-name=data_E 6 | parameter.1.description=The expected data array. 7 | -------------------------------------------------------------------------------- /libformula/todo/LEGACY.FDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LEGACY.FDIST 2 | description=Values of the F probability distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the F distribution is to be calculated. 5 | parameter.1.display-name=degrees_freedom_1 6 | parameter.1.description=The degrees of freedom in the numerator of the F distribution. 7 | parameter.2.display-name=degrees_freedom_2 8 | parameter.2.description=The degrees of freedom in the denominator of the F distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/LEGACY.FINV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LEGACY.FINV 2 | description=Values of the inverse F distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=The probability value for which the inverse F distribution is to be calculated. 5 | parameter.1.display-name=degrees_freedom_1 6 | parameter.1.description=The degrees of freedom in the numerator of the F distribution. 7 | parameter.2.display-name=degrees_freedom_2 8 | parameter.2.description=The degrees of freedom in the denominator of the F distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/LEGACY.NORMSDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LEGACY.NORMSDIST 2 | description=The values of the standard normal cumulative distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the standard normal distribution is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/LEGACY.NORMSINV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LEGACY.NORMSINV 2 | description=Values of the inverse standard normal distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=The probability value for which the inverse standard normal distribution is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/LOGINV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LOGINV 2 | description=Values of the inverse of the lognormal distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=The probability value for which the inverse log normal distribution is to be calculated. 5 | parameter.1.display-name=mean 6 | parameter.1.description=Mean value. The mean value of the log normal distribution. 7 | parameter.2.display-name=STDEV 8 | parameter.2.description=Standard deviation. The standard deviation of the log normal distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/LOGNORMDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LOGNORMDIST 2 | description=Values of the log normal distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the log normal distribution is to be calculated. 5 | parameter.1.display-name=mean 6 | parameter.1.description=Mean value. The mean value of the log normal distribution. 7 | parameter.2.display-name=STDEV 8 | parameter.2.description=Standard deviation. The standard deviation of the log normal distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/LOOKUP-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=LOOKUP 2 | description=Determines a value in a vector by comparison to values in another vector. 3 | parameter.0.display-name=Search criterion 4 | parameter.0.description=The value to be used for comparison. 5 | parameter.1.display-name=Search vector 6 | parameter.1.description=The vector (row or column) in which to search. 7 | parameter.2.display-name=result_vector 8 | parameter.2.description=The vector (row or range) from which the value is to be determined. 9 | -------------------------------------------------------------------------------- /libformula/todo/MATCH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=MATCH 2 | description=Defines a position in a array after comparing values. 3 | parameter.0.display-name=Search criterion 4 | parameter.0.description=The value to be used for comparison. 5 | parameter.1.display-name=lookup_array 6 | parameter.1.description=The array (range) in which the search is made. 7 | parameter.2.display-name=Type 8 | parameter.2.description=Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes. 9 | -------------------------------------------------------------------------------- /libformula/todo/MDETERM-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=MDETERM 2 | description=Returns the array determinant. 3 | parameter.0.display-name=array 4 | parameter.0.description=The array for which the determinant is to be determined. 5 | -------------------------------------------------------------------------------- /libformula/todo/MEDIAN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=MEDIAN 2 | description=Returns the median of a given sample. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample. 5 | -------------------------------------------------------------------------------- /libformula/todo/MINVERSE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=MINVERSE 2 | description=Returns the inverse of an array. 3 | parameter.0.display-name=array 4 | parameter.0.description=The array to be inverted. 5 | -------------------------------------------------------------------------------- /libformula/todo/MIRR-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=MIRR 2 | description=Returns the modified internal rate of return for a series of investments. 3 | parameter.0.display-name=Values 4 | parameter.0.description=An array or reference to cells whose contents correspond to the payments. 5 | parameter.1.display-name=investment 6 | parameter.1.description=Interest rate for investments (the negative values in the array). 7 | parameter.2.display-name=reinvest_rate 8 | parameter.2.description=interest rate for reinvestments (the positive values in the array). 9 | -------------------------------------------------------------------------------- /libformula/todo/MMULT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=MMULT 2 | description=Array multiplication. Returns the product of two arrays. 3 | parameter.0.display-name=array 4 | parameter.0.description=The first array for the array product. 5 | parameter.1.display-name=array 6 | parameter.1.description=The second array having the same number of rows as the first array has columns. 7 | -------------------------------------------------------------------------------- /libformula/todo/MODE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=MODE 2 | description=Returns the most common value in a sample. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample. 5 | -------------------------------------------------------------------------------- /libformula/todo/MUNIT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=MUNIT 2 | description=Returns the unitary square array of a certain size. 3 | parameter.0.display-name=Dimensions 4 | parameter.0.description=The size of the unitary array. 5 | -------------------------------------------------------------------------------- /libformula/todo/N-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=N 2 | description=Converts a value to a number. 3 | parameter.0.display-name=value 4 | parameter.0.description=The value to be interpreted as a number. 5 | -------------------------------------------------------------------------------- /libformula/todo/NEGBINOMDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=NEGBINOMDIST 2 | description=Values of the negative binomial distribution. 3 | parameter.0.display-name=X 4 | parameter.0.description=The number of failures in the trial range. 5 | parameter.1.display-name=R 6 | parameter.1.description=The number of successes in the trial sequence. 7 | parameter.2.display-name=SP 8 | parameter.2.description=The success probability of a trial. 9 | -------------------------------------------------------------------------------- /libformula/todo/NOMINAL-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=NOMINAL 2 | description=Calculates the yearly nominal interest rate as an effective interest rate. 3 | parameter.0.display-name=effect_rate 4 | parameter.0.description=The effective interest rate 5 | parameter.1.display-name=npery 6 | parameter.1.description=Periods. The number of interest payment per year. 7 | -------------------------------------------------------------------------------- /libformula/todo/NORMINV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=NORMINV 2 | description=Values of the inverse normal distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=The probability value for which the inverse normal distribution is to be calculated. 5 | parameter.1.display-name=mean 6 | parameter.1.description=The mean value. The mean value of the normal distribution. 7 | parameter.2.display-name=STDEV 8 | parameter.2.description=Standard deviation. The standard deviation of the normal distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/NPV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=NPV 2 | description=Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate. 3 | parameter.0.display-name=RATE 4 | parameter.0.description=The rate of discount for one period. 5 | parameter.1.display-name=value 6 | parameter.1.description=Value 1, value 2,... are 1 to 30 arguments representing payments and income. 7 | -------------------------------------------------------------------------------- /libformula/todo/NUMBERVALUE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=NUMBERVALUE 2 | description=Converts text to a number, in a locale-independent way. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text to be converted to a number. 5 | parameter.1.display-name=decimal_point 6 | parameter.1.description=Defines the character used as the decimal point. 7 | -------------------------------------------------------------------------------- /libformula/todo/ORG.OPENOFFICE.CONVERT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ORG.OPENOFFICE.CONVERT 2 | description=Converts a value according to a conversion table in the configuration (calc.xcu). 3 | parameter.0.display-name=value 4 | parameter.0.description=The value to be converted. 5 | parameter.1.display-name=text 6 | parameter.1.description=Unit from which something is converted, case-sensitive. 7 | parameter.2.display-name=text 8 | parameter.2.description=Unit into which something is converted, case-sensitive. 9 | -------------------------------------------------------------------------------- /libformula/todo/ORG.OPENOFFICE.CURRENT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ORG.OPENOFFICE.CURRENT 2 | description=Calculates the current value of the formula at the present location. 3 | -------------------------------------------------------------------------------- /libformula/todo/ORG.OPENOFFICE.ERRORTYPE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ORG.OPENOFFICE.ERRORTYPE 2 | description=Returns a number corresponding to an error type 3 | parameter.0.display-name=reference 4 | parameter.0.description=The reference (cell) in which the error occurred. 5 | -------------------------------------------------------------------------------- /libformula/todo/ORG.OPENOFFICE.STYLE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ORG.OPENOFFICE.STYLE 2 | description=Applies a Style to the formula cell. 3 | parameter.0.display-name=Style 4 | parameter.0.description=The name of the Style to be applied. 5 | parameter.1.display-name=Time 6 | parameter.1.description=The time (in seconds) that the Style is to remain valid. 7 | parameter.2.display-name=Style2 8 | parameter.2.description=The Style to be applied after time expires. 9 | -------------------------------------------------------------------------------- /libformula/todo/PDURATION-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PDURATION 2 | description=Duration. Calculates the number of periods required by an investment to attain the desired value. 3 | parameter.0.display-name=RATE 4 | parameter.0.description=The constant rate of interest. 5 | parameter.1.display-name=pv 6 | parameter.1.description=The present value. The current value of the investment. 7 | parameter.2.display-name=FV 8 | parameter.2.description=The future value of the investment. 9 | -------------------------------------------------------------------------------- /libformula/todo/PEARSON-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PEARSON 2 | description=Returns the Pearson product moment correlation coefficient. 3 | parameter.0.display-name=Data_1 4 | parameter.0.description=The first record array. 5 | parameter.1.display-name=Data_2 6 | parameter.1.description=The second record array. 7 | -------------------------------------------------------------------------------- /libformula/todo/PERCENTILE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PERCENTILE 2 | description=Returns the alpha quantile of a sample. 3 | parameter.0.display-name=data 4 | parameter.0.description=The array of the data in the sample. 5 | parameter.1.display-name=Alpha 6 | parameter.1.description=The percentage rate of the quantile between 0 and 1. 7 | -------------------------------------------------------------------------------- /libformula/todo/PERCENTRANK-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PERCENTRANK 2 | description=Returns the percentage rank of a value in a sample. 3 | parameter.0.display-name=data 4 | parameter.0.description=The array of the data in the sample. 5 | parameter.1.display-name=value 6 | parameter.1.description=The value for which percentage ranking is to be determined. 7 | -------------------------------------------------------------------------------- /libformula/todo/PERMUT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PERMUT 2 | description=Returns the number of permutations for a given number of elements without repetition. 3 | parameter.0.display-name=Count_1 4 | parameter.0.description=The total number of elements. 5 | parameter.1.display-name=Count_2 6 | parameter.1.description=The selection number taken from the elements. 7 | -------------------------------------------------------------------------------- /libformula/todo/PERMUTATIONA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PERMUTATIONA 2 | description=Returns the number of permutations for a given number of objects (repetition allowed). 3 | parameter.0.display-name=Count_1 4 | parameter.0.description=The total number of elements. 5 | parameter.1.display-name=Count_2 6 | parameter.1.description=The selection number taken from the elements. 7 | -------------------------------------------------------------------------------- /libformula/todo/PHI-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PHI 2 | description=Values of the distribution function for a standard normal distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=The value for which the standard normal distribution is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/POISSON-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=POISSON 2 | description=Returns the Poisson distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the Poisson distribution is to be calculated. 5 | parameter.1.display-name=mean 6 | parameter.1.description=Mean. The mean value of the Poisson distribution. 7 | parameter.2.display-name=C 8 | parameter.2.description=Cumulated. C=0 calculates the density function, C=1 the distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/POWER-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=POWER 2 | description=Raises a number to the power of another. 3 | parameter.0.display-name=Base 4 | parameter.0.description=The number that is to be raised to the power of another. 5 | parameter.1.display-name=Power 6 | parameter.1.description=The power by which the number is to be raised. 7 | -------------------------------------------------------------------------------- /libformula/todo/PROB-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PROB 2 | description=Returns the discreet probability of an interval. 3 | parameter.0.display-name=data 4 | parameter.0.description=The sample data array. 5 | parameter.1.display-name=probability 6 | parameter.1.description=The array of the associated probabilities. 7 | parameter.2.display-name=Start 8 | parameter.2.description=The start of the value interval whose probabilities is to be totalled. 9 | parameter.3.display-name=End 10 | parameter.3.description=The end of the value interval where the probabilities are to be totalled. 11 | -------------------------------------------------------------------------------- /libformula/todo/PRODUCT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PRODUCT 2 | description=Multiplies the arguments. 3 | parameter.0.display-name=Number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 arguments to be multiplied and a result returned. 5 | -------------------------------------------------------------------------------- /libformula/todo/PROPER-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=PROPER 2 | description=Capitalizes the first letter in all words. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text in which the beginning of words are to be replaced by capital letters. 5 | -------------------------------------------------------------------------------- /libformula/todo/QUARTILE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=QUARTILE 2 | description=Returns the quartile of a sample. 3 | parameter.0.display-name=data 4 | parameter.0.description=The array of the data in the sample. 5 | parameter.1.display-name=Type 6 | parameter.1.description=The type of the quartile (0 = MIN, 1 = 25%, 2 = 50 %, 3 = 75 %, 4 =MAX). 7 | -------------------------------------------------------------------------------- /libformula/todo/RADIANS-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=RADIANS 2 | description=Converts degrees to radians 3 | parameter.0.display-name=Number 4 | parameter.0.description=The angle in degrees. 5 | -------------------------------------------------------------------------------- /libformula/todo/RAND-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=RAND 2 | description=Returns a random number between 0 and 1. 3 | -------------------------------------------------------------------------------- /libformula/todo/RANK-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=RANK 2 | description=Returns the ranking of a value in a sample. 3 | parameter.0.display-name=value 4 | parameter.0.description=The value for which the rank is to be determined. 5 | parameter.1.display-name=Data 6 | parameter.1.description=The array of the data in the sample. 7 | parameter.2.display-name=Type 8 | parameter.2.description=Sequence order: 0 or omitted means descending, any other value than 0 means ascending. 9 | -------------------------------------------------------------------------------- /libformula/todo/ROMAN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ROMAN 2 | description=Converts a number to a Roman numeral. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The number to be converted to a Roman numeral must be in the 0 - 3999 range. 5 | parameter.1.display-name=Mode 6 | parameter.1.description=The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range. 7 | -------------------------------------------------------------------------------- /libformula/todo/ROUND-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ROUND 2 | description=Rounds a number to a predefined accuracy. 3 | parameter.0.display-name=number 4 | parameter.0.description=The number to be rounded. 5 | parameter.1.display-name=count 6 | parameter.1.description=The number of places to which a number is to be rounded. 7 | -------------------------------------------------------------------------------- /libformula/todo/ROUNDDOWN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ROUNDDOWN 2 | description=Rounds a number down to a predefined accuracy. 3 | parameter.0.display-name=number 4 | parameter.0.description=The number to be rounded down. 5 | parameter.1.display-name=count 6 | parameter.1.description=The number of places down to which a number is to be rounded. 7 | -------------------------------------------------------------------------------- /libformula/todo/ROUNDUP-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ROUNDUP 2 | description=Rounds a number up to the predefined accuracy. 3 | parameter.0.display-name=number 4 | parameter.0.description=The number to be rounded up. 5 | parameter.1.display-name=count 6 | parameter.1.description=The number of places to which a number is to be rounded. 7 | -------------------------------------------------------------------------------- /libformula/todo/ROW-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ROW 2 | description=Defines the internal row number of a reference. 3 | parameter.0.display-name=reference 4 | parameter.0.description=The reference to a cell or a range. 5 | -------------------------------------------------------------------------------- /libformula/todo/ROWS-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ROWS 2 | description=Returns the number of rows in a reference or array. 3 | parameter.0.display-name=array 4 | parameter.0.description=The array (reference) for which the number of rows is to be determined. 5 | -------------------------------------------------------------------------------- /libformula/todo/RSQ-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=RSQ 2 | description=Returns the square of the Pearson product moment correlation coefficient. 3 | parameter.0.display-name=data_Y 4 | parameter.0.description=The Y data array. 5 | parameter.1.display-name=data_X 6 | parameter.1.description=The X data array. 7 | -------------------------------------------------------------------------------- /libformula/todo/SEARCH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SEARCH 2 | description=Looks for one text value within another (not case-sensitive). 3 | parameter.0.display-name=find_text 4 | parameter.0.description=The text to be found. 5 | parameter.1.display-name=text 6 | parameter.1.description=The text in which a search is to be made. 7 | parameter.2.display-name=position 8 | parameter.2.description=The position in the text where the search is started. 9 | -------------------------------------------------------------------------------- /libformula/todo/SHEET-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SHEET 2 | description=Returns the internal sheet number of a reference or a string. 3 | parameter.0.display-name=reference 4 | parameter.0.description=The reference to a cell or a range or the character string of a sheet name. 5 | -------------------------------------------------------------------------------- /libformula/todo/SHEETS-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SHEETS 2 | description=Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned. 3 | parameter.0.display-name=reference 4 | parameter.0.description=The reference to a cell or a range. 5 | -------------------------------------------------------------------------------- /libformula/todo/SIGN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SIGN 2 | description=Returns the algebraic sign of a number. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The number for which the algebraic sign is to be determined. 5 | -------------------------------------------------------------------------------- /libformula/todo/SINH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SINH 2 | description=Returns the hyperbolic sine of a number. 3 | parameter.0.display-name=number 4 | parameter.0.description=The value for which the hyperbolic sine is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/SKEW-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SKEW 2 | description=Returns the skewness of a distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample of the distribution. 5 | -------------------------------------------------------------------------------- /libformula/todo/SLN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SLN 2 | description=Calculates the linear depreciation per period. 3 | parameter.0.display-name=Cost 4 | parameter.0.description=Acquisition cost. The initial cost of an asset. 5 | parameter.1.display-name=Salvage 6 | parameter.1.description=Salvage: The remaining value of the asset at the end of its life. 7 | parameter.2.display-name=Life 8 | parameter.2.description=Useful life. The number of periods in the useful life of the asset. 9 | -------------------------------------------------------------------------------- /libformula/todo/SLOPE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SLOPE 2 | description=Returns the slope of the linear regression line. 3 | parameter.0.display-name=data_Y 4 | parameter.0.description=The Y data array. 5 | parameter.1.display-name=data_X 6 | parameter.1.description=The X data array. 7 | -------------------------------------------------------------------------------- /libformula/todo/SMALL-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SMALL 2 | description=Returns the k-th smallest value of a sample. 3 | parameter.0.display-name=data 4 | parameter.0.description=The array of the data in the sample. 5 | parameter.1.display-name=Rank_c 6 | parameter.1.description=The ranking of the value. 7 | -------------------------------------------------------------------------------- /libformula/todo/STANDARDIZE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=STANDARDIZE 2 | description=Converts a random variable to a normalized value. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value to be standardized. 5 | parameter.1.display-name=mean 6 | parameter.1.description=The mean value used for moving. 7 | parameter.2.display-name=STDEV 8 | parameter.2.description=The standard deviation used for scaling. 9 | -------------------------------------------------------------------------------- /libformula/todo/STDEV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=STDEV 2 | description=Calculates the standard deviation based on a sample. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population. 5 | -------------------------------------------------------------------------------- /libformula/todo/STDEVA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=STDEVA 2 | description=Returns the standard deviation based on a sample. Text is evaluated as zero. 3 | parameter.0.display-name=value 4 | parameter.0.description=Value 1; value 2;.. .are 1 to 30 arguments representing a sample taken from a basic total population. 5 | -------------------------------------------------------------------------------- /libformula/todo/STDEVP-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=STDEVP 2 | description=Calculates the standard deviation based on the entire population. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population. 5 | -------------------------------------------------------------------------------- /libformula/todo/STDEVPA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=STDEVPA 2 | description=Returns the standard deviation based on the entire population. Text is evaluated as zero. 3 | parameter.0.display-name=value 4 | parameter.0.description=Value 1; value 2;... are 1 to 30 arguments corresponding to a population. 5 | -------------------------------------------------------------------------------- /libformula/todo/STEYX-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=STEYX 2 | description=Returns the standard error of the linear regression. 3 | parameter.0.display-name=data_Y 4 | parameter.0.description=The Y data array. 5 | parameter.1.display-name=data_X 6 | parameter.1.description=The X data array. 7 | -------------------------------------------------------------------------------- /libformula/todo/SUBTOTAL-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SUBTOTAL 2 | description=Calculates subtotals in a spreadsheet. 3 | parameter.0.display-name=Function 4 | parameter.0.description=Function index. Is an index of the possible functions Total, Max, ... 5 | parameter.1.display-name=range 6 | parameter.1.description=The cells of the range which are to be taken into account. 7 | -------------------------------------------------------------------------------- /libformula/todo/SUMIF-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SUMIF 2 | description=Totals the arguments that meet the conditions. 3 | parameter.0.display-name=range 4 | parameter.0.description=The range to be evaluated by the criteria given. 5 | parameter.1.display-name=criteria 6 | parameter.1.description=The cell range in which the search criteria are given. 7 | parameter.2.display-name=sum_range 8 | parameter.2.description=The range from which the values are to be totalled. 9 | -------------------------------------------------------------------------------- /libformula/todo/SUMPRODUCT-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SUMPRODUCT 2 | description=(Inner products) Returns the sum of the products of array arguments. 3 | parameter.0.display-name=Array 4 | parameter.0.description=Array 1, array 2, ... are up to 30 arrays whose arguments are to be multiplied. 5 | -------------------------------------------------------------------------------- /libformula/todo/SUMSQ-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SUMSQ 2 | description=Returns the sum of the squares of the arguments. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2,... are 1 to 30 arguments for which the sum of the squares is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/SUMX2MY2-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SUMX2MY2 2 | description=Returns the sum of the difference of squares of two arrays. 3 | parameter.0.display-name=array_x 4 | parameter.0.description=First array where the square of the arguments are totalled. 5 | parameter.1.display-name=array_y 6 | parameter.1.description=Second array where the square of the arguments is to be subtracted. 7 | -------------------------------------------------------------------------------- /libformula/todo/SUMX2PY2-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SUMX2PY2 2 | description=Returns the total of the square sum of two arrays. 3 | parameter.0.display-name=array_x 4 | parameter.0.description=First array where the square of the arguments are totalled. 5 | parameter.1.display-name=array_y 6 | parameter.1.description=Second array where the square of the arguments is to be totalled. 7 | -------------------------------------------------------------------------------- /libformula/todo/SUMXMY2-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=SUMXMY2 2 | description=Returns the sum of squares of differences of two arrays. 3 | parameter.0.display-name=array_x 4 | parameter.0.description=First array for forming argument differences. 5 | parameter.1.display-name=array_y 6 | parameter.1.description=Second array for forming the argument differences. 7 | -------------------------------------------------------------------------------- /libformula/todo/TAN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TAN 2 | description=Returns the tangent of a number. 3 | parameter.0.display-name=number 4 | parameter.0.description=The angle in radians for which the tangent is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/TANH-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TANH 2 | description=Returns the hyperbolic tangent of a number. 3 | parameter.0.display-name=number 4 | parameter.0.description=The value for which the hyperbolic tangent is to be calculated. 5 | -------------------------------------------------------------------------------- /libformula/todo/TDIST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TDIST 2 | description=Returns the t-distribution. 3 | parameter.0.display-name=Number 4 | parameter.0.description=The value for which the T distribution is to be calculated. 5 | parameter.1.display-name=degrees_freedom 6 | parameter.1.description=The degrees of freedom of the T distribution. 7 | parameter.2.display-name=mode 8 | parameter.2.description=Mode = 1calculates the one-tailed test, 2 = two-tailed distribution. 9 | -------------------------------------------------------------------------------- /libformula/todo/TINV-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TINV 2 | description=Values of the inverse t-distribution. 3 | parameter.0.display-name=number 4 | parameter.0.description=The probability value for which the inverse T distribution is to be calculated. 5 | parameter.1.display-name=degrees_freedom 6 | parameter.1.description=The degrees of freedom of the T distribution. 7 | -------------------------------------------------------------------------------- /libformula/todo/TRANSPOSE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TRANSPOSE 2 | description=Array transposition. Exchanges the rows and columns of an aray. 3 | parameter.0.display-name=array 4 | parameter.0.description=The array in which the rows and columns have been transposed. 5 | -------------------------------------------------------------------------------- /libformula/todo/TREND-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TREND 2 | description=Calculates points along a regression line. 3 | parameter.0.display-name=data_Y 4 | parameter.0.description=The Y data array. 5 | parameter.1.display-name=data_X 6 | parameter.1.description=The X data array as the basis for the regression. 7 | parameter.2.display-name=new data_X 8 | parameter.2.description=The array of X data for recalculating the values. 9 | parameter.3.display-name=Linear_type 10 | parameter.3.description=If type = 0 the linears will be calculated through the zero point, or else moved linears. 11 | -------------------------------------------------------------------------------- /libformula/todo/TRIMMEAN-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TRIMMEAN 2 | description=Returns the mean of a sample without including the marginal values. 3 | parameter.0.display-name=data 4 | parameter.0.description=The array of the data in the sample. 5 | parameter.1.display-name=Alpha 6 | parameter.1.description=The percentage of marginal data that is not to be taken into account. 7 | -------------------------------------------------------------------------------- /libformula/todo/TRUNC-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TRUNC 2 | description=Truncates the decimal places of a number. 3 | parameter.0.display-name=number 4 | parameter.0.description=The number to be truncated. 5 | parameter.1.display-name=count 6 | parameter.1.description=The number of places after the decimal point that are not to be truncated. 7 | -------------------------------------------------------------------------------- /libformula/todo/TTEST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TTEST 2 | description=Calculates the T test. 3 | parameter.0.display-name=data_1 4 | parameter.0.description=The first record array. 5 | parameter.1.display-name=data_2 6 | parameter.1.description=The second record array. 7 | parameter.2.display-name=mode 8 | parameter.2.description=Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution 9 | parameter.3.display-name=Type 10 | parameter.3.description=The type of the T test. 11 | -------------------------------------------------------------------------------- /libformula/todo/TYPE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=TYPE 2 | description=Defines the data type of a value. 3 | parameter.0.display-name=value 4 | parameter.0.description=The value for which the data type is to be determined. 5 | -------------------------------------------------------------------------------- /libformula/todo/VALUE-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=VALUE 2 | description=Converts text to a number. 3 | parameter.0.display-name=text 4 | parameter.0.description=The text to be converted to a number. 5 | -------------------------------------------------------------------------------- /libformula/todo/VARA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=VARA 2 | description=Returns the variance based on a sample. Text is evaluated as zero. 3 | parameter.0.display-name=value 4 | parameter.0.description=Value 1; value 2;.. .are 1 to 30 arguments representing a sample taken from a basic total population. 5 | -------------------------------------------------------------------------------- /libformula/todo/VARP-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=VARP 2 | description=Calculates variance based on the entire population. 3 | parameter.0.display-name=number 4 | parameter.0.description=Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population. 5 | -------------------------------------------------------------------------------- /libformula/todo/VARPA-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=VARPA 2 | description=Returns the variance based on the entire population. Text is evaluated as zero. 3 | parameter.0.display-name=value 4 | parameter.0.description=Value 1; value 2;... are 1 to 30 arguments representing a population. 5 | -------------------------------------------------------------------------------- /libformula/todo/ZGZ-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ZGZ 2 | description=Interest. Calculates the interest rate which represents the rate of return from an investment. 3 | parameter.0.display-name=P 4 | parameter.0.description=The number of periods used in the calculation. 5 | parameter.1.display-name=pv 6 | parameter.1.description=Present value. The current value of the investment. 7 | parameter.2.display-name=FV 8 | parameter.2.description=The future value of the investment. 9 | -------------------------------------------------------------------------------- /libformula/todo/ZTEST-Function.properties: -------------------------------------------------------------------------------- 1 | display-name=ZTEST 2 | description=Returns the two-tailed P value of a z test. 3 | parameter.0.display-name=data 4 | parameter.0.description=The data array. 5 | parameter.1.display-name=Number 6 | parameter.1.description=The value to be tested. 7 | parameter.2.display-name=sigma 8 | parameter.2.description=The standard deviation of the population. 9 | -------------------------------------------------------------------------------- /smartETL/src/main/java/logback.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %d{yyyy/MM/dd-HH:mm:ss.SSS} %level [%thread] %class{15}:%line>>%msg%n 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/Flow.java: -------------------------------------------------------------------------------- 1 | package org.f3tools.incredible.smartETL; 2 | 3 | public class Flow { 4 | private Step from; 5 | public Step getFrom() { 6 | return from; 7 | } 8 | public void setFrom(Step from) { 9 | this.from = from; 10 | } 11 | public Step getTo() { 12 | return to; 13 | } 14 | public void setTo(Step to) { 15 | this.to = to; 16 | } 17 | private Step to; 18 | 19 | } 20 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/JobRunner.java: -------------------------------------------------------------------------------- 1 | package org.f3tools.incredible.smartETL; 2 | 3 | import org.slf4j.Logger; 4 | import org.slf4j.LoggerFactory; 5 | 6 | 7 | public class JobRunner { 8 | 9 | private static Logger logger = LoggerFactory.getLogger(JobRunner.class); 10 | 11 | public static void main(String[] argc) 12 | { 13 | if (argc.length < 1) 14 | { 15 | logger.info("Usage: jobRunner jobDefFile"); 16 | System.exit(-1); 17 | } 18 | 19 | Job job = new Job(); 20 | job.execute(argc); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/StepInitThread.java: -------------------------------------------------------------------------------- 1 | package org.f3tools.incredible.smartETL; 2 | 3 | public class StepInitThread implements Runnable 4 | { 5 | private Step step; 6 | 7 | public void run() 8 | { 9 | step.setInitialized(step.init()); 10 | } 11 | 12 | public StepInitThread(Step step) 13 | { 14 | this.step = step; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/function/Drop-Function.properties: -------------------------------------------------------------------------------- 1 | 2 | display-name=DROP 3 | description=Drop the row 4 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/function/Exist-Function.properties: -------------------------------------------------------------------------------- 1 | 2 | display-name=EXIST 3 | description=Check whether keys exist in a lookup table 4 | parameter.0.display-name=exist 5 | parameter.0.description=The text to be found. 6 | parameter.1.display-name=text 7 | parameter.1.description=The text in which a search is to be made. 8 | parameter.2.display-name=position 9 | parameter.2.description=The position in the text from which the search starts. 10 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/function/IsNull-Function.properties: -------------------------------------------------------------------------------- 1 | 2 | display-name=ISNULL 3 | description=Check wether a variable is null 4 | parameter.0.display-name=is null 5 | parameter.0.description=The text to be found. 6 | parameter.1.display-name=text 7 | parameter.1.description=The text in which a search is to be made. 8 | parameter.2.display-name=position 9 | parameter.2.description=The position in the text from which the search starts. 10 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/function/Lookup-Function.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2007, Pentaho Corporation. All Rights Reserved. 3 | # 4 | 5 | display-name=FIND 6 | description=Looks for a string of text within another (case sensitive) 7 | parameter.0.display-name=find_text 8 | parameter.0.description=The text to be found. 9 | parameter.1.display-name=text 10 | parameter.1.description=The text in which a search is to be made. 11 | parameter.2.display-name=position 12 | parameter.2.description=The position in the text from which the search starts. 13 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/function/NullEmpty-Function.properties: -------------------------------------------------------------------------------- 1 | 2 | display-name=NULLEMPTY 3 | description=If a value is null, return empty string 4 | parameter.0.display-name=nullempty 5 | parameter.0.description=The text to be found. 6 | parameter.1.display-name=text 7 | parameter.1.description=The text in which a search is to be made. 8 | parameter.2.display-name=position 9 | parameter.2.description=The position in the text from which the search starts. 10 | -------------------------------------------------------------------------------- /smartETL/src/main/java/org/f3tools/incredible/smartETL/steps/csvoutput/CSVOutputDef.java: -------------------------------------------------------------------------------- 1 | package org.f3tools.incredible.smartETL.steps.csvoutput; 2 | 3 | import org.w3c.dom.Node; 4 | import org.f3tools.incredible.smartETL.utilities.ETLException; 5 | import org.f3tools.incredible.smartETL.steps.csvinput.CSVInputDef; 6 | 7 | public class CSVOutputDef extends CSVInputDef 8 | { 9 | public CSVOutputDef(Node node) throws ETLException 10 | { 11 | super(node); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /smartETL/src/test/java/org/f3tools/incredible/smartETL/formula/ICFormulaTest.java: -------------------------------------------------------------------------------- 1 | package org.f3tools.incredible.smartETL.formula; 2 | 3 | import junit.framework.Test; 4 | import junit.framework.TestCase; 5 | import junit.framework.TestSuite; 6 | 7 | public class ICFormulaTest extends TestCase 8 | { 9 | 10 | public static Test suite() 11 | { 12 | return new TestSuite( ICFormulaTest.class ); 13 | } 14 | 15 | public ICFormulaTest(String name) { 16 | super(name); 17 | } 18 | 19 | public void testFormula() 20 | { 21 | ICFormula formula = new ICFormula(); 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /smartETL/src/test/java/org/f3tools/incredible/smartETL/utilities/FileUtlTest.java: -------------------------------------------------------------------------------- 1 | package org.f3tools.incredible.smartETL.utilities; 2 | 3 | import java.io.File; 4 | import junit.framework.TestCase; 5 | 6 | public class FileUtlTest extends TestCase 7 | { 8 | 9 | public FileUtlTest(String name) 10 | { 11 | super(name); 12 | } 13 | 14 | public void testFindFiles() 15 | { 16 | 17 | 18 | //File[] files = FileUtl.findFiles("c:/temp/*.txt"); 19 | 20 | //for (int i = 0; i < files.length; i++) 21 | //System.out.println(files[i].getAbsolutePath()); 22 | } 23 | } 24 | --------------------------------------------------------------------------------