From 1ae135d7569571bc38fc1bcf0dfd24610039a86e Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Thu, 18 May 2017 23:19:03 +0200 Subject: Mass remove excess spaces from inside tags This is fallout from the l10n and oldref attribute removal. Some tags were broken into two rows and the second was indented with spaces. The line break was removed along the tags, but those spaces were not. Command I used to catch these: find source/text/ -name "*xhp" | xargs sed -i -e 's#\" *>#\">#g' Change-Id: I6f9bad46cbfb7416950bee8230e358a3dd851def Reviewed-on: https://gerrit.libreoffice.org/37791 Reviewed-by: Christian Lohmaier Tested-by: Christian Lohmaier --- source/text/scalc/01/04060105.xhp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'source/text/scalc/01/04060105.xhp') diff --git a/source/text/scalc/01/04060105.xhp b/source/text/scalc/01/04060105.xhp index 0a9a1ae53e..6a5b3032de 100644 --- a/source/text/scalc/01/04060105.xhp +++ b/source/text/scalc/01/04060105.xhp @@ -42,14 +42,14 @@ AND function -AND +AND Returns TRUE if all arguments are TRUE. If one of the elements is FALSE, this function returns the FALSE value. The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values. - Syntax + Syntax AND(LogicalValue1; LogicalValue2 ...LogicalValue30) LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE. - Example + Example The logical values of entries 12<13; 14>12, and 7<6 are to be checked: =AND(12<13;14>12;7<6) returns FALSE. @@ -74,9 +74,9 @@ IF function -IF +IF Specifies a logical test to be performed. - Syntax + Syntax IF(Test; ThenValue; OtherwiseValue) Test is any value or expression that can be TRUE or FALSE. @@ -84,10 +84,10 @@ ThenValue (optional) is the value that is returned if the logical test is TRUE. OtherwiseValue (optional) is the value that is returned if the logical test is FALSE. - + - Examples + Examples =IF(A1>5;100;"too small") If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered. @@ -95,13 +95,13 @@ NOT function -NOT +NOT Complements (inverts) a logical value. - Syntax + Syntax NOT(LogicalValue) LogicalValue is any value to be complemented. - Example + Example =NOT(A). If A=TRUE then NOT(A) will evaluate FALSE. @@ -109,14 +109,14 @@ OR function -OR +OR Returns TRUE if at least one argument is TRUE. This function returns the value FALSE, if all the arguments have the logical value FALSE. The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values. - Syntax + Syntax OR(LogicalValue1; LogicalValue2 ...LogicalValue30) LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row.UFI: first try to fix bugtraq 4905779 - Example + Example The logical values of entries 12<11; 13>22, and 45=45 are to be checked. =OR(12<11;13>22;45=45) returns TRUE. @@ -127,11 +127,11 @@ TRUE function -TRUE +TRUE The logical value is set to TRUE. The TRUE() function does not require any arguments, and always returns the logical value TRUE. - Syntax + Syntax TRUE() - Example + Example If A=TRUE and B=FALSE the following examples appear: =AND(A;B) returns FALSE -- cgit