From 75c62b4a8207e56c9998429a07760350badc9ded Mon Sep 17 00:00:00 2001 From: liongold Date: Mon, 21 Nov 2016 20:43:37 +0000 Subject: tdf#101140 Adding Help for RAWSUBTRACT function Change-Id: I8eba1c661a31766a5fd84489e4a7db46d5570f73 Reviewed-on: https://gerrit.libreoffice.org/31086 Reviewed-by: Olivier Hallot Tested-by: Olivier Hallot --- AllLangHelp_scalc.mk | 1 + source/text/scalc/01/04060106.xhp | 4 ++++ source/text/scalc/01/func_rawsubtract.xhp | 34 +++++++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 source/text/scalc/01/func_rawsubtract.xhp diff --git a/AllLangHelp_scalc.mk b/AllLangHelp_scalc.mk index e9cb0837e6..625811584d 100644 --- a/AllLangHelp_scalc.mk +++ b/AllLangHelp_scalc.mk @@ -226,6 +226,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,scalc,\ helpcontent2/source/text/scalc/01/func_workdays.intl \ helpcontent2/source/text/scalc/01/func_numbervalue \ helpcontent2/source/text/scalc/01/func_now \ + helpcontent2/source/text/scalc/01/func_rawsubtract \ helpcontent2/source/text/scalc/01/func_second \ helpcontent2/source/text/scalc/01/func_skewp \ helpcontent2/source/text/scalc/01/func_sumifs \ diff --git a/source/text/scalc/01/04060106.xhp b/source/text/scalc/01/04060106.xhp index 93f9f27ab1..eb746e39b2 100644 --- a/source/text/scalc/01/04060106.xhp +++ b/source/text/scalc/01/04060106.xhp @@ -912,6 +912,10 @@ =RADIANS(90) returns 1.5707963267949, which is PI/2 to Calc's accuracy.see also DEGREES +
+ +
+
ROUND function diff --git a/source/text/scalc/01/func_rawsubtract.xhp b/source/text/scalc/01/func_rawsubtract.xhp new file mode 100644 index 0000000000..eb6935afd5 --- /dev/null +++ b/source/text/scalc/01/func_rawsubtract.xhp @@ -0,0 +1,34 @@ + + + + + + RAWSUBTRACT function + text/scalc/01/func_rawsubtract.xhp + + + +
+ + + rawsubtract;subtraction + RAWSUBTRACT function + + RAWSUBTRACT + Subtracts a set of numbers and gives the result without eliminating small roundoff errors. + + RAWSUBTRACT(Minuend, Subtrahend1, Subtrahend2, ...) + Subtracts the subtrahend(s) from the minuend without eliminating roundoff errors. The function should be called with at least two parameters. + + RAWSUBTRACT(0.987654321098765, 0.9876543210987) returns 6.53921361504217E-14 + RAWSUBTRACT(0.987654321098765) returns Err:511 (Missing variable) because RAWSUBTRACT requires a minimum of two numbers. +
+ +
\ No newline at end of file -- cgit