From 68dc0e7b375872e43dfb136d800a68d82930ffd0 Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Tue, 24 Mar 2020 18:12:57 -0300 Subject: Correct arguments for TEXTJOIN Total number of arguments in CALC functions is 255, therefore if some params are specific, adjust the remaining to sum 255. Change-Id: I2ac5a46f225ef6727165b5799ae551f35eb5f4e9 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/91009 Tested-by: Jenkins Reviewed-by: Olivier Hallot --- source/text/scalc/01/func_textjoin.xhp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/text/scalc/01/func_textjoin.xhp') diff --git a/source/text/scalc/01/func_textjoin.xhp b/source/text/scalc/01/func_textjoin.xhp index 6e7221418b..7a610bb6d2 100644 --- a/source/text/scalc/01/func_textjoin.xhp +++ b/source/text/scalc/01/func_textjoin.xhp @@ -26,10 +26,10 @@ - TEXTJOIN( delimiter, skip_empty, ) + TEXTJOIN( delimiter, skip_empty, String 1[; String 2][; … ;[String 253]] ) delimiter is a text string and can be a range. skip_empty is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored. - + String 1[; String 2][; … ;[String 253]] are strings, references to cells or to cell ranges of strings. Ranges are traversed row by row (from top to bottom). If delimiter is a range, the range need not be of the same size as the number of strings to be joined. If there are more delimiters than strings to be joined, not all delimiters will be used. -- cgit