summaryrefslogtreecommitdiff
path: root/upload-wiki.pl
blob: d8b31b2be09bca387acd5dd6dd40e4f2228b0c3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#!/usr/bin/perl -w
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

use MediaWiki::API;
use File::Find();
use File::Slurp;
use Getopt::Std;
use Digest::SHA1 qw(sha1 sha1_hex sha1_base64);

# help
sub usage {
    print <<EOM;
upload-wiki.pl [...] - Uploads the wiki/ subdir to a real wiki installation.

  -i - Upload also the images
  -p - Don't upload the pages themselves
  -r - Upload also the redirects

You need a wikisetup.txt in this directory, to be able to authenticate you.
The content should be:

wiki=<url of the api.php on the wiki>
upload=<url of the Special:Upload page>
name=<the user name>
password=<the appropriate password>

upload-wiki.pl operates on the output of help-to-wiki.py, needing particularly
these:

wiki/      - directory with all the pages generated out of the help .xhp files
images.txt - list of the images used in help

Additionally you need:

images/    - directory with an unpack of images_tango.zip

EOM
    exit 1;
}

%options = ();
getopts( "hipr", \%options );

usage() if ( defined $options{h} );

my $upload_images = 0;
my $upload_pages = 1;
my $upload_redirects = 0;
$upload_images = 1 if ( defined $options{i} );
$upload_pages = 0 if ( defined $options{p} );
$upload_redirects = 1 if ( defined $options{r} );

# first of all, read the configuration from wikisetup.txt
my ( $url, $upload_url, $name, $password );
if ( ! open( IN, "wikisetup.txt" ) ) {
    print "Missing wikisetup.txt\n\n";
    usage();
}
while ( my $line = <IN> ) {
    if ( $line =~ /^([^=]*)=(.*)$/ ) {
        my $k = $1;
        my $v = $2;
        chomp $k;
        chomp $v;
        if ( $k eq 'wiki' ) {
            $url = $v;
        }
        elsif ( $k eq 'upload' ) {
            $upload_url = $v;
        }
        elsif ( $k eq 'name' ) {
            $name = $v;
        }
        elsif ( $k eq 'password' ) {
            $password = $v;
        }
    }
}
close( IN );

if ( !defined( $url ) || !defined( $upload_url ) || !defined( $name ) || !defined( $password ) ) {
    print "wikisetup.txt does not contain all the info.\n\n";
    usage();
}

if ( ! -d 'wiki' ) {
    print "Missing the wiki/ subdir, re-run help-to-wiki.py.\n\n";
    usage();
}

if ( $upload_images ) {
    if ( ! -f 'images.txt' ) {
        print "Missing images.txt, re-run help-to-wiki.py.\n\n";
        usage();
    }

    if ( ! -d 'images' ) {
        print "Missing images/ subdir - mkdir images ; cd images ; unzip /path/to/images_tango.zip\n\n";
        usage();
    }
}

$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME}=0;

# initialize the wiki
my $mw = MediaWiki::API->new();
$mw->{config}->{api_url} = $url;
$mw->{config}->{upload_url} = $upload_url;

# log in to the wiki
$mw->login( { lgname => $name, lgpassword => $password } ) || die $mw->{error}->{code} . ': ' . $mw->{error}->{details};

# upload the articles
sub upload_article {
    -f || return;

    my $pagename = $File::Find::name;
    $pagename =~ s/^wiki\///;
    $pagename =~ s/\/MAIN$//;
    $pagename =~ s/%2F/\//g;

    # pages starting with lowercase 's' are redirects
    if ( $pagename =~ /^s/ ) {
        return if ( !$upload_redirects );
    }
    else {
        return if ( !$upload_pages );
    }

    my $text = read_file( $_ );

    RETRY:
    print "Uploading page '$pagename'\n";
    unless ( $mw->edit( {
            action => 'edit',
            title => $pagename,
            text => $text }, { skip_encoding => 1 } ) )
    {
        print 'Error: ' . $mw->{error}->{code} . ': ' . $mw->{error}->{details} . "\n";
        print "Waiting for 10 seconds...\n";
        sleep 10;
        print "Retry!\n";
        goto RETRY;
    }
}
File::Find::find( {wanted => \&upload_article}, 'wiki/' );

# upload the images
if ( $upload_images ) {
    open( IN, "images.txt" ) || usage();
    my $imagename = '';
    my $imageuploadmsg = '';
    my $image = '';    
    while ( my $line = <IN> ) {
        chomp( $line );
        my $fname = "images/$line";
        if ( ! -f $fname ) {
            print "Image '$fname' not found, skipped.\n";
            next;
        }
        if ( ! $fname =~ /\.(png|gif|jpg|jpeg)$/ ) {
            print "Image '$line' ignored, not a jpg/png/gif.\n";
            next;
        }        
        
        $imagename = $line;
        if ( $line =~ /\/([^\/]*)$/ ) {
            $imagename = $1;
        }
        sub upload_file_to_mw {
            $mw->upload( {
                title => 'File:'.$imagename,
                summary => $imageuploadmsg,
                data => $image } ) || die $mw->{error}->{code} . ': ' . $mw->{error}->{details};
        }
        
        $image = read_file( $fname );

        # don't reupload an image if it is already present - otherwise it only bloats the wiki
        my $imagesha1 = sha1_hex($image);
        # get the sha1 request directly from the wiki
        my $mwquery = $mw->api( {
            action => 'query',
            prop => 'imageinfo',
            iiprop => 'sha1',
            titles => 'File:'.$imagename } );        
        my $mwimagesha1 = "";
        #FIXME: bad style, this foreach should consist only ONE imageid --> do that nicelier
        foreach my $imageid (keys $mwquery->{'query'}{'pages'}) {
            $mwimagesha1 = $mwquery->{'query'}{'pages'}{$imageid}{'imageinfo'}->[0]->{'sha1'};
        }
        
        if (($imagesha1 ne $mwimagesha1) and ($mwimagesha1 ne '')) {
            print "Updating image '$imagename', sha1 is different from already uploaded image.\n";
            $imageuploadmsg = 'Updating image.';
            upload_file_to_mw();
        } elsif ($mwimagesha1 eq '') {
            print "Initial upload of  image '$imagename'\n";
            $imageuploadmsg = 'Initial upload.';
            upload_file_to_mw();
        } else {
            print "Skipping image '$imagename', sha1 identically to already uploaded image.\n";
        }
    }
}

# clean up
$mw->logout();

# vim:set shiftwidth=4 softtabstop=4 expandtab:
>
-rw-r--r--helpcontent2/source/text/scalc/02/makefile.mk4
-rw-r--r--helpcontent2/source/text/scalc/04/makefile.mk4
-rw-r--r--helpcontent2/source/text/scalc/05/makefile.mk4
-rw-r--r--helpcontent2/source/text/scalc/guide/cell_enter.xhp82
-rwxr-xr-xhelpcontent2/source/text/scalc/guide/database_sort.xhp116
-rw-r--r--helpcontent2/source/text/scalc/guide/makefile.mk4
-rw-r--r--helpcontent2/source/text/scalc/guide/rename_table.xhp136
-rwxr-xr-xhelpcontent2/source/text/scalc/guide/value_with_name.xhp145
-rwxr-xr-xhelpcontent2/source/text/scalc/main0104.xhp101
-rw-r--r--helpcontent2/source/text/scalc/makefile.mk4
-rw-r--r--helpcontent2/source/text/schart/00/makefile.mk4
-rw-r--r--helpcontent2/source/text/schart/01/04020000.xhp2
-rw-r--r--helpcontent2/source/text/schart/01/04050000.xhp2
-rw-r--r--helpcontent2/source/text/schart/01/04050100.xhp6
-rwxr-xr-xhelpcontent2/source/text/schart/01/04060000.xhp121
-rw-r--r--helpcontent2/source/text/schart/01/makefile.mk4
-rw-r--r--helpcontent2/source/text/schart/01/type_pie.xhp73
-rw-r--r--helpcontent2/source/text/schart/02/makefile.mk4
-rw-r--r--helpcontent2/source/text/schart/04/makefile.mk4
-rw-r--r--helpcontent2/source/text/schart/makefile.mk4
-rw-r--r--helpcontent2/source/text/sdraw/00/makefile.mk4
-rw-r--r--helpcontent2/source/text/sdraw/01/makefile.mk4
-rw-r--r--helpcontent2/source/text/sdraw/04/makefile.mk4
-rw-r--r--helpcontent2/source/text/sdraw/guide/makefile.mk4
-rw-r--r--helpcontent2/source/text/sdraw/guide/rotate_object.xhp4
-rwxr-xr-xhelpcontent2/source/text/sdraw/main0104.xhp90
-rw-r--r--helpcontent2/source/text/sdraw/makefile.mk4
-rw-r--r--helpcontent2/source/text/shared/00/00000001.xhp4
-rw-r--r--helpcontent2/source/text/shared/00/00000401.xhp18
-rw-r--r--helpcontent2/source/text/shared/00/00000406.xhp6
-rw-r--r--helpcontent2/source/text/shared/00/makefile.mk4
-rw-r--r--helpcontent2/source/text/shared/01/02100000.xhp212
-rw-r--r--helpcontent2/source/text/shared/01/02110000.xhp14
-rw-r--r--helpcontent2/source/text/shared/01/02230401.xhp83
-rw-r--r--helpcontent2/source/text/shared/01/04050000.xhp105
-rwxr-xr-xhelpcontent2/source/text/shared/01/04150000.xhp68
-rw-r--r--helpcontent2/source/text/shared/01/05020200.xhp286
-rw-r--r--helpcontent2/source/text/shared/01/05040100.xhp88
-rw-r--r--helpcontent2/source/text/shared/01/05110600m.xhp2
-rw-r--r--helpcontent2/source/text/shared/01/05120600.xhp2
-rw-r--r--helpcontent2/source/text/shared/01/06040100.xhp421
-rwxr-xr-xhelpcontent2/source/text/shared/01/06050100.xhp69
-rw-r--r--helpcontent2/source/text/shared/01/08060100.xhp58
-rwxr-xr-xhelpcontent2/source/text/shared/01/formatting_mark.xhp86
-rw-r--r--helpcontent2/source/text/shared/01/makefile.mk4
-rwxr-xr-xhelpcontent2/source/text/shared/01/mediaplayer.xhp100
-rwxr-xr-xhelpcontent2/source/text/shared/01/moviesound.xhp134
-rw-r--r--helpcontent2/source/text/shared/01/online_update.xhp116
-rw-r--r--helpcontent2/source/text/shared/01/xformsdata.xhp110
-rw-r--r--helpcontent2/source/text/shared/02/01170000.xhp50
-rw-r--r--helpcontent2/source/text/shared/02/02010000.xhp78
-rw-r--r--helpcontent2/source/text/shared/02/02020000.xhp89
-rw-r--r--helpcontent2/source/text/shared/02/02140000.xhp153
-rw-r--r--helpcontent2/source/text/shared/02/09070000.xhp115
-rw-r--r--helpcontent2/source/text/shared/02/14020100.xhp70
-rw-r--r--helpcontent2/source/text/shared/02/makefile.mk4
-rwxr-xr-xhelpcontent2/source/text/shared/02/paintbrush.xhp4
-rw-r--r--helpcontent2/source/text/shared/04/makefile.mk4
-rwxr-xr-xhelpcontent2/source/text/shared/05/00000001.xhp67
-rw-r--r--helpcontent2/source/text/shared/05/makefile.mk4
-rw-r--r--helpcontent2/source/text/shared/07/makefile.mk4
-rw-r--r--helpcontent2/source/text/shared/autokorr/makefile.mk4
-rw-r--r--helpcontent2/source/text/shared/autopi/makefile.mk4
-rwxr-xr-xhelpcontent2/source/text/shared/explorer/database/02010101.xhp92
-rw-r--r--helpcontent2/source/text/shared/explorer/database/makefile.mk5
-rwxr-xr-xhelpcontent2/source/text/shared/explorer/database/migrate_macros.xhp71
-rwxr-xr-xhelpcontent2/source/text/shared/guide/autocorr_url.xhp97
-rw-r--r--helpcontent2/source/text/shared/guide/data_enter_sql.xhp107
-rw-r--r--helpcontent2/source/text/shared/guide/data_tabledefine.xhp98
-rwxr-xr-xhelpcontent2/source/text/shared/guide/fontwork.xhp191
-rw-r--r--helpcontent2/source/text/shared/guide/insert_graphic_drawit.xhp117
-rw-r--r--helpcontent2/source/text/shared/guide/labels_database.xhp119
-rwxr-xr-xhelpcontent2/source/text/shared/guide/language_select.xhp316
-rw-r--r--helpcontent2/source/text/shared/guide/makefile.mk4
-rw-r--r--helpcontent2/source/text/shared/guide/numbering_stop.xhp132
-rwxr-xr-xhelpcontent2/source/text/shared/guide/paintbrush.xhp2
-rw-r--r--helpcontent2/source/text/shared/makefile.mk4
-rw-r--r--helpcontent2/source/text/shared/optionen/01040400.xhp229
-rwxr-xr-xhelpcontent2/source/text/shared/optionen/01130200.xhp65
-rw-r--r--helpcontent2/source/text/shared/optionen/makefile.mk4
-rw-r--r--helpcontent2/source/text/shared/optionen/online_update.xhp97
-rw-r--r--helpcontent2/source/text/simpress/00/makefile.mk4
-rw-r--r--helpcontent2/source/text/simpress/01/02120000.xhp2
-rw-r--r--helpcontent2/source/text/simpress/01/makefile.mk4
-rw-r--r--helpcontent2/source/text/simpress/02/10030200.xhp24
-rw-r--r--helpcontent2/source/text/simpress/02/10100000.xhp58
-rw-r--r--helpcontent2/source/text/simpress/02/makefile.mk4
-rw-r--r--helpcontent2/source/text/simpress/04/makefile.mk4
-rw-r--r--helpcontent2/source/text/simpress/guide/makefile.mk4
-rwxr-xr-xhelpcontent2/source/text/simpress/main0104.xhp98
-rw-r--r--helpcontent2/source/text/simpress/main0203.xhp131
-rw-r--r--helpcontent2/source/text/simpress/makefile.mk4
-rw-r--r--helpcontent2/source/text/smath/00/makefile.mk4
-rw-r--r--helpcontent2/source/text/smath/01/03090600.xhp634
-rw-r--r--helpcontent2/source/text/smath/01/03091506.xhp4
-rw-r--r--helpcontent2/source/text/smath/01/makefile.mk4
-rw-r--r--helpcontent2/source/text/smath/02/makefile.mk4
-rw-r--r--helpcontent2/source/text/smath/04/makefile.mk4
-rw-r--r--helpcontent2/source/text/smath/guide/makefile.mk4
-rw-r--r--helpcontent2/source/text/smath/makefile.mk4
-rw-r--r--helpcontent2/source/text/swriter/00/00000404.xhp2
-rw-r--r--helpcontent2/source/text/swriter/00/00000405.xhp262
-rw-r--r--helpcontent2/source/text/swriter/00/makefile.mk4
-rw-r--r--helpcontent2/source/text/swriter/01/04070000.xhp101
-rw-r--r--helpcontent2/source/text/swriter/01/04090005.xhp2
-rw-r--r--helpcontent2/source/text/swriter/01/04210000.xhp4
-rw-r--r--helpcontent2/source/text/swriter/01/05040500.xhp168
-rw-r--r--helpcontent2/source/text/swriter/01/05060200.xhp12
-rw-r--r--helpcontent2/source/text/swriter/01/05100300.xhp58
-rw-r--r--helpcontent2/source/text/swriter/01/05140000.xhp315
-rw-r--r--helpcontent2/source/text/swriter/01/makefile.mk4
-rw-r--r--helpcontent2/source/text/swriter/02/makefile.mk4
-rwxr-xr-xhelpcontent2/source/text/swriter/04/01020000.xhp1980
-rw-r--r--helpcontent2/source/text/swriter/04/makefile.mk4
-rw-r--r--helpcontent2/source/text/swriter/guide/arrange_chapters.xhp14
-rwxr-xr-xhelpcontent2/source/text/swriter/guide/form_letters_main.xhp102
-rw-r--r--helpcontent2/source/text/swriter/guide/hyphen_prevent.xhp102
-rw-r--r--helpcontent2/source/text/swriter/guide/insert_line.xhp137
-rw-r--r--helpcontent2/source/text/swriter/guide/makefile.mk4
-rw-r--r--helpcontent2/source/text/swriter/guide/stylist_update.xhp90
-rw-r--r--helpcontent2/source/text/swriter/guide/table_sizing.xhp4
-rw-r--r--helpcontent2/source/text/swriter/guide/text_emphasize.xhp69
-rwxr-xr-xhelpcontent2/source/text/swriter/main0104.xhp2
-rw-r--r--helpcontent2/source/text/swriter/main0202.xhp184
-rw-r--r--helpcontent2/source/text/swriter/makefile.mk4
-rw-r--r--helpcontent2/util/sbasic/makefile.mk5
-rw-r--r--helpcontent2/util/scalc/makefile.mk5
-rw-r--r--helpcontent2/util/schart/makefile.mk5
-rw-r--r--helpcontent2/util/sdatabase/makefile.mk5
-rw-r--r--helpcontent2/util/sdraw/makefile.mk5
-rw-r--r--helpcontent2/util/shared/makefile.mk4
-rw-r--r--helpcontent2/util/simpress/makefile.mk5
-rw-r--r--helpcontent2/util/smath/makefile.mk5
-rw-r--r--helpcontent2/util/swriter/makefile.mk5
156 files changed, 9164 insertions, 8297 deletions
diff --git a/helpcontent2/helpers/help_hid.lst b/helpcontent2/helpers/help_hid.lst
index 2a40ed6e50..290c0aa5a3 100644
--- a/helpcontent2/helpers/help_hid.lst
+++ b/helpcontent2/helpers/help_hid.lst
@@ -1,6 +1,7 @@
+,,
0,0,
1,1,
-DEV300.m35,010101010101010,
+DEV300.m46,010101010101010,
DLG_INSERT_PAGES_OBJS,938,
DLG_JOIN_TABADD,19214,
FID_ADJUST_PRINTZOOM,26652,.uno:AdjustPrintZoom
@@ -115,6 +116,7 @@ FN_CNTNT_TO_NEXT_FRAME,20958,.uno:JumpToNextFrame
FN_CONVERT_TABLE_TO_TEXT,20532,.uno:ConvertTableToText
FN_CONVERT_TEXT_TABLE,20500,.uno:ConvertTableText
FN_CONVERT_TEXT_TO_TABLE,20531,.uno:ConvertTextToTable
+FN_COPY_HYPERLINK_LOCATION,21840,
FN_DEC_INDENT_OFFSET,21751,.uno:DecrementIndentValue
FN_DELETE_ALL_NOTES,22502,
FN_DELETE_BACK_LINE,20932,.uno:DelToStartOfLine
@@ -122,6 +124,7 @@ FN_DELETE_BACK_PARA,20934,.uno:DelToStartOfPara
FN_DELETE_BACK_SENT,20928,.uno:DelToStartOfSentence
FN_DELETE_BACK_WORD,20930,.uno:DelToStartOfWord
FN_DELETE_BOOKMARK,20301,.uno:DeleteBookmark
+FN_DELETE_COMMENT,22506,
FN_DELETE_LINE,20931,.uno:DelToEndOfLine
FN_DELETE_NOTE,22500,
FN_DELETE_NOTE_AUTHOR,22501,
@@ -363,15 +366,19 @@ FN_QRY_MERGE,20367,.uno:MergeDialog
FN_QRY_MERGE_FIELD,20387,.uno:SbaMerge
FN_READONLY_SELECTION_MODE,20989,.uno:SelectTextMode
FN_REDLINE_ACCEPT,21829,.uno:AcceptTrackedChanges
+FN_REDLINE_ACCEPT_DIRECT,21837,
FN_REDLINE_COMMENT,21827,.uno:CommentChangeTracking
FN_REDLINE_ON,21825,.uno:TrackChanges
FN_REDLINE_PROTECT,21823,.uno:ProtectTraceChangeMode
+FN_REDLINE_REJECT_DIRECT,21838,
FN_REDLINE_SHOW,21826,.uno:ShowTrackedChanges
FN_REFRESH_VIEW,20201,.uno:RefreshView
FN_REMOVE_CUR_TOX,20655,.uno:RemoveTableOf
FN_REMOVE_DIRECT_CHAR_FORMATS,21759,
+FN_REMOVE_HYPERLINK,21839,
FN_REPAGINATE,20161,.uno:Repaginate
FN_REPEAT_SEARCH,20150,.uno:RepeatSearch
+FN_REPLY,22507,
FN_RULER,20211,.uno:Ruler
FN_SAVE_GRAPHIC,21760,
FN_SBA_BRW_INSERT,21408,.uno:SwBrwInsert
@@ -491,6 +498,9 @@ FN_WORDCOUNT_DIALOG,22298,.uno:WordCountDialog
FN_WRAP_ANCHOR_ONLY,20581,.uno:WrapAnchorOnly
FN_XFORMS_DESIGN_MODE,22300,.uno:SwitchXFormsDesignMode
FN_XFORMS_INIT,21053,.uno:NewXForms
+FontWork1TBO,40026,
+FontWork2TBO,40027,
+HDE_PDF_EXPORT_DLG,33375,
HID0_CANCEL,34205,
HID0_CREATE,34204,
HID0_HELP,34201,
@@ -1549,7 +1559,7 @@ HID_DLG_MASTERPASSWORD_CRT,35841,
HID_DLG_MASTERPASSWORD_UUI,35840,
HID_DLG_MESSBOX,33819,
HID_DLG_NAME,33818,
-HID_DLG_NEWERVERSIONWARNING,33391,
+HID_DLG_NEWERVERSIONWARNING,35848,
HID_DLG_NEW_USER_IDX,54858,
HID_DLG_OBJECT_NAME,33827,
HID_DLG_OBJECT_TITLE_DESC,33828,
@@ -1908,6 +1918,26 @@ HID_FORMAT_TABLE,53180,
HID_FORMEDT_CONTENT,52815,
HID_FORMEDT_INDEX,52817,
HID_FORMEDT_USER,52816,
+HID_FORMULADLG_FORMULA,64849,
+HID_FORMULATAB_FUNCTION,64867,
+HID_FORMULATAB_STRUCT,64868,
+HID_FORMULA_FAP_BTN_FX1,64857,
+HID_FORMULA_FAP_BTN_FX2,64858,
+HID_FORMULA_FAP_BTN_FX3,64859,
+HID_FORMULA_FAP_BTN_FX4,64860,
+HID_FORMULA_FAP_BTN_REF1,64861,
+HID_FORMULA_FAP_BTN_REF2,64862,
+HID_FORMULA_FAP_BTN_REF3,64863,
+HID_FORMULA_FAP_BTN_REF4,64864,
+HID_FORMULA_FAP_EDIT1,64853,
+HID_FORMULA_FAP_EDIT2,64854,
+HID_FORMULA_FAP_EDIT3,64855,
+HID_FORMULA_FAP_EDIT4,64856,
+HID_FORMULA_FAP_FORMULA,64850,
+HID_FORMULA_FAP_PAGE,64852,
+HID_FORMULA_FAP_STRUCT,64851,
+HID_FORMULA_LB_CATEGORY,64865,
+HID_FORMULA_LB_FUNCTION,64866,
HID_FORM_NAVIGATOR,38068,
HID_FORM_NAVIGATOR_WIN,38069,
HID_FRAME_TOOLBOX,54829,
@@ -1956,6 +1986,8 @@ HID_FUNC_BETAVERT,58443,
HID_FUNC_BINOMVERT,58429,
HID_FUNC_BW,57949,
HID_FUNC_CHIINV,58452,
+HID_FUNC_CHISQDIST,58476,
+HID_FUNC_CHISQINV,58477,
HID_FUNC_CHITEST,58458,
HID_FUNC_CHIVERT,58451,
HID_FUNC_CODE,58579,
@@ -1999,6 +2031,7 @@ HID_FUNC_FISHERINV,58428,
HID_FUNC_FORMEL,58053,
HID_FUNC_FTEST,58459,
HID_FUNC_FVERT,58449,
+HID_FUNC_GAMMA,58478,
HID_FUNC_GAMMAINV,58441,
HID_FUNC_GAMMALN,58442,
HID_FUNC_GAMMAVERT,58440,
@@ -2472,6 +2505,7 @@ HID_LINGU_PARA_LANGUAGE,53438,
HID_LINGU_REPLACE,53434,
HID_LINGU_SPELLING_DLG,53432,
HID_LINGU_WORD_LANGUAGE,53437,
+HID_LINKDLG_TABLB,34869,
HID_LISTWIZARD_CANCEL,34819,
HID_LISTWIZARD_FINISH,34820,
HID_LISTWIZARD_NEXT,34818,
@@ -2545,6 +2579,7 @@ HID_MACRO_GROUP,33155,
HID_MACRO_HEADERTABLISTBOX,33380,
HID_MACRO_LB_EVENT,33132,
HID_MACRO_MACROS,33156,
+HID_MACRO_MIGRATION_BACKUP_LOCATION,39152,
HID_MAIL_MERGE_CREATE_FROM,54947,
HID_MAIL_MERGE_INSERT_FIELDS,54948,
HID_MANAGE_STYLES,33074,
@@ -2836,6 +2871,7 @@ HID_OPTIONS_GENERAL,33811,
HID_OPTIONS_GRID,33816,
HID_OPTIONS_JAVA,39996,
HID_OPTIONS_JAVA_CLASSPATH,39999,
+HID_OPTIONS_JAVA_LIST,39997,
HID_OPTIONS_JAVA_PARAMETER,39998,
HID_OPTIONS_LINGU,33812,
HID_OPTIONS_MAIL,33842,
@@ -2937,6 +2973,7 @@ HID_PASSWD,33071,
HID_PASSWD_DOC,58994,
HID_PASSWD_TABLE,58993,
HID_PASSWORD,33824,
+HID_PASTE_DLG,34868,
HID_POPUP_BRUSH,33839,
HID_POPUP_COLOR,33838,
HID_POPUP_COLOR_CTRL,34186,
@@ -3019,6 +3056,7 @@ HID_PROP_ICONSIZE,37927,
HID_PROP_IMAGEPOSITION,38107,
HID_PROP_IMAGE_ALIGN,37882,
HID_PROP_IMAGE_URL,37830,
+HID_PROP_INPUT_REQUIRED,37769,
HID_PROP_LABEL,37806,
HID_PROP_LEFT,37797,
HID_PROP_LINECOLOR,37814,
@@ -3115,6 +3153,7 @@ HID_PROP_VISUALEFFECT,38104,
HID_PROP_VSCROLL,37820,
HID_PROP_WIDTH,37800,
HID_PROP_WORDBREAK,37914,
+HID_PROP_WRITING_MODE,38109,
HID_PROP_XML_DATA_MODEL,37997,
HID_PROP_XSD_CALCULATION,38003,
HID_PROP_XSD_CONSTRAINT,38002,
@@ -3313,6 +3352,7 @@ HID_RPT_PROP_GROUPKEEPTOGETHER,64505,
HID_RPT_PROP_INITIALFORMULA,64523,
HID_RPT_PROP_KEEPTOGETHER,64479,
HID_RPT_PROP_MASTERFIELDS,64486,
+HID_RPT_PROP_MIMETYPE,64490,
HID_RPT_PROP_MINHEIGHTNEWPAGE,64500,
HID_RPT_PROP_NEWROWORCOL,64478,
HID_RPT_PROP_PAGEFOOTEROPTION,64507,
@@ -3345,7 +3385,6 @@ HID_RULER_DIALOG,52985,
HID_SAVE_LABEL_DLG,54919,
HID_SCDLG_CONDFORMAT,58930,
HID_SCDLG_CONFLICTS,59023,
-HID_SCDLG_FORMULA,58929,
HID_SCDLG_LINKAREAURL,58998,
HID_SCH_ALIGNMENT,63284,
HID_SCH_ALIGNMENT_CTR_DIAL,63315,
@@ -3390,7 +3429,6 @@ HID_SCH_LEGEND_SHOW,63366,
HID_SCH_NUM_OF_LINES,63323,
HID_SCH_PB_NUMBERFORMAT,63368,
HID_SCH_PB_PERCENT_NUMBERFORMAT,63369,
-HID_SCH_SCALE_Y,63287,
HID_SCH_SERIES_LIST,63295,
HID_SCH_STARTING_ANGLE_DIAL,63374,
HID_SCH_STATISTIK_BIGERROR,63349,
@@ -3424,6 +3462,9 @@ HID_SCH_TBI_DATA_INSERT_ROW,63303,
HID_SCH_TBI_DATA_SWAP_COL,63307,
HID_SCH_TBI_DATA_SWAP_ROW,63308,
HID_SCH_TBX_DATA,63314,
+HID_SCH_TEXTDIRECTION,63395,
+HID_SCH_TEXTDIRECTION_EQUATION,63397,
+HID_SCH_TEXTDIRECTION_TITLE,63396,
HID_SCH_TITLE_MAIN,63360,
HID_SCH_TITLE_SECONDARY_X,63372,
HID_SCH_TITLE_SECONDARY_Y,63373,
@@ -3501,21 +3542,11 @@ HID_SC_DRAW_RENAME,59007,
HID_SC_DROPMODE_COPY,58924,
HID_SC_DROPMODE_LINK,58923,
HID_SC_DROPMODE_URL,58922,
-HID_SC_FAP_BTN_FX1,58976,
-HID_SC_FAP_BTN_FX2,58977,
-HID_SC_FAP_BTN_FX3,58978,
-HID_SC_FAP_BTN_FX4,58979,
-HID_SC_FAP_BTN_REF1,58980,
-HID_SC_FAP_BTN_REF2,58981,
-HID_SC_FAP_BTN_REF3,58982,
-HID_SC_FAP_BTN_REF4,58983,
HID_SC_FAP_EDIT1,58916,
HID_SC_FAP_EDIT2,58917,
HID_SC_FAP_EDIT3,58918,
HID_SC_FAP_EDIT4,58919,
-HID_SC_FAP_FORMULA,58984,
HID_SC_FAP_PAGE,58915,
-HID_SC_FAP_STRUCT,58925,
HID_SC_FOOTER_EDIT,58909,
HID_SC_GROUP_COLS,58899,
HID_SC_GROUP_ROWS,58900,
@@ -3640,11 +3671,11 @@ HID_SD_CUSTOMANIMATIONDIALOG_EXIT,59948,
HID_SD_CUSTOMANIMATIONDIALOG_MOTIONPATH,59949,
HID_SD_CUSTOMANIMATIONPANE_CB_AUTOPREVIEW,59924,
HID_SD_CUSTOMANIMATIONPANE_CB_SPEED,59918,
-HID_SD_CUSTOMANIMATIONPANE_CHARHEIGHTPROPERTYBOX,59953,
-HID_SD_CUSTOMANIMATIONPANE_COLORPROPERTYBOX,59951,
+HID_SD_CUSTOMANIMATIONPANE_CHARHEIGHTPROPERTYBOX,59954,
+HID_SD_CUSTOMANIMATIONPANE_COLORPROPERTYBOX,59952,
HID_SD_CUSTOMANIMATIONPANE_CT_CUSTOM_ANIMATION_LIST,59919,
-HID_SD_CUSTOMANIMATIONPANE_FONTPROPERTYBOX,59952,
-HID_SD_CUSTOMANIMATIONPANE_FONTSTYLEPROPERTYBOX,59957,
+HID_SD_CUSTOMANIMATIONPANE_FONTPROPERTYBOX,59953,
+HID_SD_CUSTOMANIMATIONPANE_FONTSTYLEPROPERTYBOX,59958,
HID_SD_CUSTOMANIMATIONPANE_LB_PROPERTY,59916,
HID_SD_CUSTOMANIMATIONPANE_LB_START,59915,
HID_SD_CUSTOMANIMATIONPANE_PB_ADD_EFFECT,59912,
@@ -3655,10 +3686,10 @@ HID_SD_CUSTOMANIMATIONPANE_PB_PLAY,59922,
HID_SD_CUSTOMANIMATIONPANE_PB_PROPERTY_MORE,59917,
HID_SD_CUSTOMANIMATIONPANE_PB_REMOVE_EFFECT,59914,
HID_SD_CUSTOMANIMATIONPANE_PB_SLIDE_SHOW,59923,
-HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX,59950,
-HID_SD_CUSTOMANIMATIONPANE_ROTATIONPROPERTYBOX,59954,
-HID_SD_CUSTOMANIMATIONPANE_SCALEPROPERTYBOX,59956,
-HID_SD_CUSTOMANIMATIONPANE_TRANSPARENCYPROPERTYBOX,59955,
+HID_SD_CUSTOMANIMATIONPANE_PRESETPROPERTYBOX,59951,
+HID_SD_CUSTOMANIMATIONPANE_ROTATIONPROPERTYBOX,59955,
+HID_SD_CUSTOMANIMATIONPANE_SCALEPROPERTYBOX,59957,
+HID_SD_CUSTOMANIMATIONPANE_TRANSPARENCYPROPERTYBOX,59956,
HID_SD_CUSTOM_ANIMATIONS,59910,
HID_SD_DRAW_COMMONTASK_TOOLBOX,59815,
HID_SD_DRAW_GRAF_TOOLBOX,59889,
@@ -3709,9 +3740,9 @@ HID_SD_OUTLINE_TOOLBOX,59812,
HID_SD_PAGEOBJSTLB,59895,
HID_SD_PRINT_OPTIONS,59768,
HID_SD_RECENT_MASTERS,59907,
-HID_SD_RULER_HORIZONTAL,59959,
-HID_SD_RULER_VERTICAL,59960,
-HID_SD_SLIDESHOW_DISPLAY,59958,
+HID_SD_RULER_HORIZONTAL,59960,
+HID_SD_RULER_VERTICAL,59961,
+HID_SD_SLIDESHOW_DISPLAY,59959,
HID_SD_SLIDETRANSITIONPANE_CB_AUTO_PREVIEW,59940,
HID_SD_SLIDETRANSITIONPANE_CB_LOOP_SOUND,59933,
HID_SD_SLIDETRANSITIONPANE_LB_SLIDE_TRANSITIONS,59930,
@@ -3730,7 +3761,7 @@ HID_SD_SLIDE_TOOLBOX,59811,
HID_SD_SLIDE_TRANSITIONS,59911,
HID_SD_TABBAR_LAYERS,59892,
HID_SD_TABBAR_PAGES,59891,
-HID_SD_TABLE_DESIGN,59967,
+HID_SD_TABLE_DESIGN,59968,
HID_SD_TABPAGE_HEADERFOOTER_NOTESHANDOUT,59902,
HID_SD_TABPAGE_HEADERFOOTER_SLIDE,59901,
HID_SD_TASK_PANE,59904,
@@ -4076,6 +4107,7 @@ HID_SPLDLG_BUTTON_CLOSE,39884,
HID_SPLDLG_BUTTON_EXPLAIN,39898,
HID_SPLDLG_BUTTON_IGNORE,39885,
HID_SPLDLG_BUTTON_IGNOREALL,39886,
+HID_SPLDLG_BUTTON_IGNORERULE,40076,
HID_SPLDLG_CHECKBOX_CHECKGRAMMAR,39899,
HID_SPLDLG_EDIT_NEWWORD,39894,
HID_SQLERROR_EXCHAIN_ERRORS,38909,
@@ -4381,7 +4413,12 @@ ITM_VER_RGHT,22787,
MENU_FM_TEXTATTRIBITES_ALIGNMENT,18008,
MENU_FM_TEXTATTRIBITES_SPACING,18009,
MENU_FM_TEXTATTRIBITES_STYLE,18007,
+MSC_Super_ID,123456,
+MSC_Super_ID2,1234567,
+MSC_Super_ID3,12345678,
MSG_QUERY_LOAD_TEMPLATE,2065,
+PDF1TBO,867876864,
+PDF2TBO,867860480,
RID_ENVTOOLBOX,560,
RID_MATH_TOOLBOX,20050,
RID_MN_FORMAT_STYLE,25031,
@@ -4519,6 +4556,7 @@ SID_ATTR_CHAR_LATIN_FONTHEIGHT,10995,.uno:FontHeighLatin
SID_ATTR_CHAR_LATIN_LANGUAGE,10996,.uno:LanguageLatin
SID_ATTR_CHAR_LATIN_POSTURE,10997,.uno:ItalicLatin
SID_ATTR_CHAR_LATIN_WEIGHT,10998,.uno:BoldLatin
+SID_ATTR_CHAR_OVERLINE,10068,
SID_ATTR_CHAR_POSTURE,10008,.uno:Italic
SID_ATTR_CHAR_RELIEF,10920,.uno:CharacterRelief
SID_ATTR_CHAR_ROTATED,10910,.uno:CharacterRotation
@@ -4580,6 +4618,7 @@ SID_ATTR_PARA_LRSPACE_VERTICAL,10947,.uno:LeftRightParaMargin_Vertical
SID_ATTR_PARA_MODEL,10065,.uno:AttributeParaModel
SID_ATTR_PARA_NUMRULE,10587,.uno:NumRule
SID_ATTR_PARA_ORPHANS,10040,.uno:Orphan
+SID_ATTR_PARA_OUTLINE_LEVEL,11092,
SID_ATTR_PARA_PAGEBREAK,10037,.uno:Pagebreak
SID_ATTR_PARA_PAGENUM,10457,.uno:PageNumber
SID_ATTR_PARA_REGISTER,10413,.uno:RegisterTrue
@@ -4604,7 +4643,6 @@ SID_AUTOFORMAT,10242,.uno:AutoFormat
SID_AUTOHIDE,5932,.uno:AutoHide
SID_AUTOPILOTMENU,6381,.uno:AutoPilotMenu
SID_AUTOSPELL_CHECK,12021,.uno:SpellOnline
-SID_AUTOSPELL_MARKOFF,12022,.uno:HideSpellMark
SID_AUTO_CORRECT_DLG,10424,.uno:AutoCorrectDlg
SID_AUTO_FILTER,26325,.uno:DataFilterAutoFilter
SID_AUTO_OUTLINE,26333,.uno:AutoOutline
@@ -4899,6 +4937,7 @@ SID_DB_NEW,12253,
SID_DB_NEW_VIEW_SQL,12315,
SID_DB_QUERY_PREVIEW,12303,
SID_DEC_INDENT,10461,.uno:DecrementIndent
+SID_DEFAULTFILENAME,6716,
SID_DEFAULTFILEPATH,5571,.uno:DefaultFilePath
SID_DEFINE_COLROWNAMERANGES,26629,.uno:DefineLabelRange
SID_DEFINE_DBNAME,26320,.uno:DefineDBName
@@ -4943,6 +4982,16 @@ SID_DOCINFO_AUTHOR,5593,.uno:Author
SID_DOCINFO_COMMENTS,5592,.uno:Comments
SID_DOCINFO_KEYWORDS,5591,.uno:Keywords
SID_DOCINFO_TITLE,5557,.uno:DocInfoTitle
+SID_DOCKWIN_0,9800,
+SID_DOCKWIN_1,9801,
+SID_DOCKWIN_2,9802,
+SID_DOCKWIN_3,9803,
+SID_DOCKWIN_4,9804,
+SID_DOCKWIN_5,9805,
+SID_DOCKWIN_6,9806,
+SID_DOCKWIN_7,9807,
+SID_DOCKWIN_8,9808,
+SID_DOCKWIN_9,9809,
SID_DOCPATH,5582,.uno:DocPath
SID_DOCTEMPLATE,5538,.uno:SaveAsTemplate
SID_DOCTITLE,5583,.uno:Title
@@ -5298,6 +5347,7 @@ SID_GRID_USE,27154,.uno:GridUse
SID_GRID_VISIBLE,27322,.uno:GridVisible
SID_GROUP,10454,.uno:FormatGroup
SID_GROUPVIEW,6621,
+SID_GROW_FONT_SIZE,11042,
SID_HANDLES_DRAFT,27150,.uno:HandlesDraft
SID_HANDOUTMODE,27070,.uno:HandoutMode
SID_HANDOUT_MASTERPAGE,27349,.uno:HandoutMasterPage
@@ -5649,6 +5699,7 @@ SID_PREVIEW_LAST,26499,.uno:LastPage
SID_PREVIEW_MARGIN,26504,
SID_PREVIEW_NEXT,26496,.uno:NextPage
SID_PREVIEW_PREVIOUS,26497,.uno:PreviousPage
+SID_PREVIEW_SCALINGFACTOR,26505,
SID_PREVIEW_STATE,27329,.uno:PreviewState
SID_PREVIEW_WIN,27327,.uno:PreviewWindow
SID_PREVIEW_ZOOMIN,26501,.uno:ZoomIn
@@ -5685,6 +5736,7 @@ SID_RANGE_TEXTVALUE,26597,.uno:TextValue
SID_RANGE_VALUE,26594,.uno:Value
SID_READONLY_MODE,10930,.uno:ReadOnlyMode
SID_RECENTFILELIST,6697,.uno:RecentFileList
+SID_RECHECK_DOCUMENT,11091,
SID_RECORDING_FLOATWINDOW,5800,.uno:MacroRecordingFloat
SID_RECORDMACRO,6669,.uno:MacroRecorder
SID_REDO,5700,.uno:Redo
@@ -5799,6 +5851,7 @@ SID_SHOW_IME_STATUS_WINDOW,6680,.uno:ShowImeStatusWindow
SID_SHOW_ITEMBROWSER,11001,.uno:ShowItemBrowser
SID_SHOW_PROPERTYBROWSER,10943,.uno:ShowPropBrowser
SID_SHOW_SLIDE,27440,
+SID_SHRINK_FONT_SIZE,11043,
SID_SIGNATURE,6643,.uno:Signature
SID_SIM_EDITOPTIONS,10438,.uno:SimEditOptions
SID_SIM_START,30000,.uno:LaunchStarImage
@@ -6101,6 +6154,7 @@ UID_PROP_REMOVE_DATA_TYPE,38017,
UID_RPT_PROP_CHARTTYPE_DLG,64529,
UID_RPT_PROP_DLG_LINE_STYLE,64508,
UID_RPT_PROP_DLG_LINKFIELDS,64530,
+UID_RPT_PROP_FORMULA,64531,
UID_RPT_REPORTWINDOW,64451,
UID_RPT_RPT_APP_VIEW,64449,
UID_RPT_RPT_PROP_DLG_AREA,64489,
@@ -6234,6 +6288,13 @@ chart2_CheckBox_TP_3D_SCENEGEOMETRY_CBX_RIGHT_ANGLED_AXES,551863298,
chart2_CheckBox_TP_AXIS_LABEL_CB_AXIS_LABEL_SCHOW_DESCR,551945217,
chart2_CheckBox_TP_AXIS_LABEL_CB_AXIS_LABEL_TEXTBREAK,551945228,
chart2_CheckBox_TP_AXIS_LABEL_CB_AXIS_LABEL_TEXTOVERLAP,551945227,
+chart2_CheckBox_TP_AXIS_POSITIONS_CB_AXIS_BETWEEN_CATEGORIES,551683073,
+chart2_CheckBox_TP_AXIS_POSITIONS_CB_MAJOR_GRID,551683078,
+chart2_CheckBox_TP_AXIS_POSITIONS_CB_MINOR_GRID,551683079,
+chart2_CheckBox_TP_AXIS_POSITIONS_CB_MINOR_INNER,551683076,
+chart2_CheckBox_TP_AXIS_POSITIONS_CB_MINOR_OUTER,551683077,
+chart2_CheckBox_TP_AXIS_POSITIONS_CB_TICKS_INNER,551683074,
+chart2_CheckBox_TP_AXIS_POSITIONS_CB_TICKS_OUTER,551683075,
chart2_CheckBox_TP_CHARTTYPE_CB_3D_LOOK,551781378,
chart2_CheckBox_TP_CHARTTYPE_CB_SPLINES,551781380,
chart2_CheckBox_TP_CHARTTYPE_CB_STACKED,551781379,
@@ -6244,18 +6305,15 @@ chart2_CheckBox_TP_OPTIONS_CB_CONNECTOR,551748617,
chart2_CheckBox_TP_POLAROPTIONS_CB_CLOCKWISE,551764993,
chart2_CheckBox_TP_RANGECHOOSER_CB_FIRST_COLUMN_ASLABELS,551797762,
chart2_CheckBox_TP_RANGECHOOSER_CB_FIRST_ROW_ASLABELS,551797761,
-chart2_CheckBox_TP_SCALE_Y_CBX_AUTO_MAX,551666690,
-chart2_CheckBox_TP_SCALE_Y_CBX_AUTO_MIN,551666689,
-chart2_CheckBox_TP_SCALE_Y_CBX_AUTO_ORIGIN,551666693,
-chart2_CheckBox_TP_SCALE_Y_CBX_AUTO_STEP_HELP,551666692,
-chart2_CheckBox_TP_SCALE_Y_CBX_AUTO_STEP_MAIN,551666691,
-chart2_CheckBox_TP_SCALE_Y_CBX_HELPTICKS_INNER,551666696,
-chart2_CheckBox_TP_SCALE_Y_CBX_HELPTICKS_OUTER,551666698,
-chart2_CheckBox_TP_SCALE_Y_CBX_LOGARITHM,551666694,
-chart2_CheckBox_TP_SCALE_Y_CBX_REVERSE,551666699,
-chart2_CheckBox_TP_SCALE_Y_CBX_TICKS_INNER,551666695,
-chart2_CheckBox_TP_SCALE_Y_CBX_TICKS_OUTER,551666697,
+chart2_CheckBox_TP_SCALE_CBX_AUTO_MAX,551666690,
+chart2_CheckBox_TP_SCALE_CBX_AUTO_MIN,551666689,
+chart2_CheckBox_TP_SCALE_CBX_AUTO_ORIGIN,551666693,
+chart2_CheckBox_TP_SCALE_CBX_AUTO_STEP_HELP,551666692,
+chart2_CheckBox_TP_SCALE_CBX_AUTO_STEP_MAIN,551666691,
+chart2_CheckBox_TP_SCALE_CBX_LOGARITHM,551666694,
+chart2_CheckBox_TP_SCALE_CBX_REVERSE,551666695,
chart2_Checkbox_TP_3D_SCENEAPPEARANCE_CB_ROUNDEDEDGE,551879683,
+chart2_ComboBox_TP_AXIS_POSITIONS_EDT_CROSSES_OTHER_AXIS_AT_CATEGORY,551686148,
chart2_Edit_TP_DATA_SOURCE_EDT_CATEGORIES,551848056,
chart2_Edit_TP_DATA_SOURCE_EDT_RANGE,551848016,
chart2_Edit_TP_RANGECHOOSER_ED_RANGE,551798785,
@@ -6276,7 +6334,12 @@ chart2_ImageButton_TP_RANGECHOOSER_IB_RANGE,551808513,
chart2_ListBox_TP_3D_SCENEAPPEARANCE_LB_SCHEME,551882242,
chart2_ListBox_TP_3D_SCENEILLUMINATION_LB_AMBIENTLIGHT,551898625,
chart2_ListBox_TP_3D_SCENEILLUMINATION_LB_LIGHTSOURCE,551898626,
+chart2_ListBox_TP_AXIS_LABEL_LB_AXIS_TEXTDIR,551947796,
+chart2_ListBox_TP_AXIS_POSITIONS_LB_CROSSES_OTHER_AXIS_AT,551685633,
+chart2_ListBox_TP_AXIS_POSITIONS_LB_PLACE_LABELS,551685634,
+chart2_ListBox_TP_AXIS_POSITIONS_LB_PLACE_TICKS,551685638,
chart2_ListBox_TP_CHARTTYPE_LB_3D_SCHEME,551783937,
+chart2_ListBox_TP_LEGEND_POS_LB_LEGEND_TEXTDIR,551620100,
chart2_ListBox_TP_LOCATION_LB_TABLE,551833089,
chart2_MetricField_DLG_SPLINE_PROPERTIES_MF_SPLINE_ORDER,1088559617,
chart2_MetricField_DLG_SPLINE_PROPERTIES_MF_SPLINE_RESOLUTION,1088559618,
@@ -6286,9 +6349,11 @@ chart2_MetricField_TP_3D_SCENEGEOMETRY_MTR_FLD_Y_ROTATION,551868930,
chart2_MetricField_TP_3D_SCENEGEOMETRY_MTR_FLD_Z_ROTATION,551868931,
chart2_MetricField_TP_OPTIONS_MT_GAP,551754244,
chart2_MetricField_TP_OPTIONS_MT_OVERLAP,551754245,
-chart2_MetricField_TP_SCALE_Y_MT_STEPHELP,551672330,
+chart2_MetricField_TP_SCALE_MT_STEPHELP,551672330,
chart2_ModalDialog_DLG_DATA_YERRORBAR,1087537152,
chart2_NumericField_TP_POLAROPTIONS_NF_STARTING_ANGLE,551770113,
+chart2_PushButton_TP_AXIS_POSITIONS_PB_MAJOR_GRID,551686657,
+chart2_PushButton_TP_AXIS_POSITIONS_PB_MINOR_GRID,551686658,
chart2_PushButton_TP_CHARTTYPE_PB_SPLINE_DIALOG,551784961,
chart2_PushButton_TP_DATA_SOURCE_BTN_ADD,551850526,
chart2_PushButton_TP_DATA_SOURCE_BTN_DOWN,551850646,
@@ -6310,18 +6375,22 @@ chart2_RadioButton_TP_OPTIONS_RB_CONTINUE_LINE,551748110,
chart2_RadioButton_TP_OPTIONS_RB_DONT_PAINT,551748108,
chart2_RadioButton_TP_RANGECHOOSER_RB_DATACOLS,551797250,
chart2_RadioButton_TP_RANGECHOOSER_RB_DATAROWS,551797249,
-chart2_SpinField_TP_SCALE_Y_EDT_MAX,551670786,
-chart2_SpinField_TP_SCALE_Y_EDT_MIN,551670787,
-chart2_SpinField_TP_SCALE_Y_EDT_ORIGIN,551670789,
-chart2_SpinField_TP_SCALE_Y_EDT_STEP_MAIN,551670785,
+chart2_SpinField_TP_AXIS_POSITIONS_EDT_AXIS_LABEL_DISTANCE,551687173,
+chart2_SpinField_TP_AXIS_POSITIONS_EDT_CROSSES_OTHER_AXIS_AT,551687171,
+chart2_SpinField_TP_SCALE_EDT_MAX,551670786,
+chart2_SpinField_TP_SCALE_EDT_MIN,551670787,
+chart2_SpinField_TP_SCALE_EDT_ORIGIN,551670788,
+chart2_SpinField_TP_SCALE_EDT_STEP_MAIN,551670785,
chart2_TabPage_TP_3D_SCENEAPPEARANCE,551878656,
chart2_TabPage_TP_3D_SCENEILLUMINATION,551895040,
+chart2_TabPage_TP_AXIS_POSITIONS,551682048,
chart2_TabPage_TP_DATA_SOURCE,551845888,
chart2_TabPage_TP_LAYOUT,551731200,
chart2_TabPage_TP_LOCATION,551829504,
chart2_TabPage_TP_OPTIONS,551747584,
chart2_TabPage_TP_POLAROPTIONS,551763968,
chart2_TabPage_TP_RANGECHOOSER,551796736,
+chart2_TabPage_TP_SCALE,551665664,
chart2_TabPage_TP_TRENDLINE,551911424,
chart2_TabPage_TP_WIZARD_TITLEANDOBJECTS,551813120,
chart2_TabPage_TP_YERRORBAR,551927808,
@@ -6331,6 +6400,7 @@ dbaccess_CheckBox_DLG_QRY_JOIN_WND_JOIN_CONTROL_CB_NATURAL,1073759233,
dbaccess_CheckBox_DLG_ROWHEIGHT_CB_STANDARD,1388446722,
dbaccess_CheckBox_PAGE_ADABAS_CB_SHUTDB,851526657,
dbaccess_CheckBox_PAGE_CONNECTION_CB_PASSWORD_REQUIRED,851543041,
+dbaccess_CheckBox_PAGE_MYSQL_NATIVE_CB_PASSWORD_REQUIRED,851837953,
dbaccess_CheckBox_TAB_WIZ_COPYTABLE_CB_PRIMARY_COLUMN,851641349,
dbaccess_ComboBox_DLG_DBASE_INDEXES_CB_TABLES,1388335105,
dbaccess_ComboBox_DLG_SAVE_AS_ET_CATALOG,1388498945,
@@ -6355,6 +6425,7 @@ dbaccess_Edit_PAGE_ADABAS_ET_CTRLUSERNAME,851527682,
dbaccess_Edit_PAGE_ADABAS_ET_HOSTNAME,851527685,
dbaccess_Edit_PAGE_CONNECTION_ET_USERNAME,851544065,
dbaccess_Edit_PAGE_MYSQL_JDBC_ET_JDBCDRIVERCLASS,851773444,
+dbaccess_Edit_PAGE_MYSQL_NATIVE_ET_USERNAME,851838977,
dbaccess_Edit_PAGE_ORACLE_JDBC_ET_JDBCDRIVERCLASS,851888132,
dbaccess_Edit_PAGE_USERDRIVER_ET_HOSTNAME,851757061,
dbaccess_Edit_PAGE_USERDRIVER_ET_OPTIONS,851757059,
@@ -6455,6 +6526,7 @@ dbaccess_TabPage_PAGE_CONNECTION,851542016,
dbaccess_TabPage_PAGE_DBWIZARD_MYSQL_INTRO,852197376,
dbaccess_TabPage_PAGE_GENERATED_VALUES,851804160,
dbaccess_TabPage_PAGE_MYSQL_JDBC,851771392,
+dbaccess_TabPage_PAGE_MYSQL_NATIVE,851836928,
dbaccess_TabPage_PAGE_MYSQL_ODBC,851722240,
dbaccess_TabPage_PAGE_ORACLE_JDBC,851886080,
dbaccess_TabPage_TAB_WIZ_NAME_MATCHING,851623936,
@@ -6698,6 +6770,23 @@ filter_RadioButton_RID_PDF_TAB_SECURITY_RB_PRINT_LOWRES,867893895,
filter_RadioButton_RID_PDF_TAB_SECURITY_RB_PRINT_NONE,867893894,
filter_RadioButton_RID_PDF_TAB_VPREFER_RB_ALLBOOKMARKLEVELS,867861104,
filter_RadioButton_RID_PDF_TAB_VPREFER_RB_VISIBLEBOOKMARKLEVELS,867861105,
+formula_CheckBox_RID_FORMULADLG_FORMULA_BTN_MATRIX,2655437835,
+formula_CheckBox_RID_FORMULADLG_FORMULA_MODAL_BTN_MATRIX,1581728779,
+formula_Edit_RID_FORMULADLG_FORMULA_ED_REF,2655438867,
+formula_Edit_RID_FORMULADLG_FORMULA_MODAL_ED_REF,1581729811,
+formula_Edit_RID_FORMULATAB_PARAMETER_ED_ARG1,1044842508,
+formula_Edit_RID_FORMULATAB_PARAMETER_ED_ARG2,1044842509,
+formula_Edit_RID_FORMULATAB_PARAMETER_ED_ARG3,1044842510,
+formula_Edit_RID_FORMULATAB_PARAMETER_ED_ARG4,1044842511,
+formula_ImageButton_RID_FORMULADLG_FORMULA_MODAL_RB_REF,1581739540,
+formula_ImageButton_RID_FORMULADLG_FORMULA_RB_REF,2655448596,
+formula_PushButton_RID_FORMULADLG_FORMULA_BTN_BACKWARD,2655441416,
+formula_PushButton_RID_FORMULADLG_FORMULA_BTN_FORWARD,2655441417,
+formula_PushButton_RID_FORMULADLG_FORMULA_MODAL_BTN_BACKWARD,1581732360,
+formula_PushButton_RID_FORMULADLG_FORMULA_MODAL_BTN_FORWARD,1581732361,
+formula_TabControl_RID_FORMULADLG_FORMULA_MODAL_TC_FUNCTION,1581727762,
+formula_TabControl_RID_FORMULADLG_FORMULA_TC_FUNCTION,2655436818,
+formula_TabPage_RID_FORMULATAB_PARAMETER,1044840448,
fpicker_CheckBox_DLG_SVT_EXPLORERFILE_CB_AUTO_EXTENSION,1334641706,
fpicker_CheckBox_DLG_SVT_EXPLORERFILE_CB_EXPLORERFILE_PASSWORD,1334641705,
fpicker_CheckBox_DLG_SVT_EXPLORERFILE_CB_EXPLORERFILE_READONLY,1334641704,
@@ -6910,7 +6999,6 @@ sc_CheckBox_RID_SCDLG_FILTER_BTN_DEST_PERS,2567078924,
sc_CheckBox_RID_SCDLG_FILTER_BTN_HEADER,2567078916,
sc_CheckBox_RID_SCDLG_FILTER_BTN_REGEXP,2567078915,
sc_CheckBox_RID_SCDLG_FILTER_BTN_UNIQUE,2567078913,
-sc_CheckBox_RID_SCDLG_FORMULA_BTN_MATRIX,2567603211,
sc_CheckBox_RID_SCDLG_HIGHLIGHT_CHANGES_CB_HIGHLIGHT,2568963085,
sc_CheckBox_RID_SCDLG_HIGHLIGHT_CHANGES_CB_HIGHLIGHT_ACCEPT,2568963078,
sc_CheckBox_RID_SCDLG_HIGHLIGHT_CHANGES_CB_HIGHLIGHT_REJECT,2568963079,
@@ -7061,7 +7149,6 @@ sc_Edit_RID_SCDLG_FILLSERIES_ED_END_VALUES,1493518385,
sc_Edit_RID_SCDLG_FILLSERIES_ED_INCREMENT,1493518375,
sc_Edit_RID_SCDLG_FILLSERIES_ED_START_VALUES,1493518388,
sc_Edit_RID_SCDLG_FILTER_ED_COPY_AREA,2567079943,
-sc_Edit_RID_SCDLG_FORMULA_ED_REF,2567604243,
sc_Edit_RID_SCDLG_HIGHLIGHT_CHANGES_ED_ASSIGN,2568964111,
sc_Edit_RID_SCDLG_INSERT_TABLE_ED_TABNAME,1493895193,
sc_Edit_RID_SCDLG_NAMES_ED_ASSIGN,2567309327,
@@ -7092,10 +7179,6 @@ sc_Edit_RID_SCDLG_TABOP_ED_ROWCELL,2567899138,
sc_Edit_RID_SCPAGE_CALC_ED_EPS,957253637,
sc_Edit_RID_SCPAGE_SORT_OPTIONS_ED_OUTAREA,956450820,
sc_Edit_RID_SCPAGE_USERLISTS_ED_COPYFROM,956844035,
-sc_Edit_RID_SCTAB_PARAMETER_ED_ARG1,958236684,
-sc_Edit_RID_SCTAB_PARAMETER_ED_ARG2,958236685,
-sc_Edit_RID_SCTAB_PARAMETER_ED_ARG3,958236686,
-sc_Edit_RID_SCTAB_PARAMETER_ED_ARG4,958236687,
sc_Edit_TP_VALIDATION_ERROR_EDT_TITLE,548309005,
sc_Edit_TP_VALIDATION_INPUTHELP_EDT_TITLE,548292621,
sc_Edit_TP_VALIDATION_VALUES_EDT_MAX,548276233,
@@ -7118,7 +7201,6 @@ sc_ImageButton_RID_SCDLG_CONSOLIDATE_RB_DATA_AREA,2567532066,
sc_ImageButton_RID_SCDLG_CONSOLIDATE_RB_DEST_AREA,2567532076,
sc_ImageButton_RID_SCDLG_DBNAMES_RB_DBAREA,2567335438,
sc_ImageButton_RID_SCDLG_FILTER_RB_COPY_AREA,2567089672,
-sc_ImageButton_RID_SCDLG_FORMULA_RB_REF,2567613972,
sc_ImageButton_RID_SCDLG_HIGHLIGHT_CHANGES_RB_ASSIGN,2568973840,
sc_ImageButton_RID_SCDLG_NAMES_RB_ASSIGN,2567319056,
sc_ImageButton_RID_SCDLG_OPTSOLVER_IB_DELETE1,2569219596,
@@ -7145,7 +7227,6 @@ sc_ImageButton_RID_SCDLG_SPEC_FILTER_RB_CRITERIA_AREA,2567106101,
sc_ImageButton_RID_SCDLG_TABOP_RB_COLCELL,2567908867,
sc_ImageButton_RID_SCDLG_TABOP_RB_FORMULARANGE,2567908865,
sc_ImageButton_RID_SCDLG_TABOP_RB_ROWCELL,2567908866,
-sc_ImageButton_RID_SCTAB_FUNCTION_IB_FUNCTION,958262789,
sc_ListBox_FID_FUNCTION_BOX_CB_CAT,3651276289,
sc_ListBox_FID_FUNCTION_BOX_DDLB_FUNC,3651276291,
sc_ListBox_FID_FUNCTION_BOX_LB_FUNC,3651276290,
@@ -7231,8 +7312,6 @@ sc_ListBox_RID_SCPAGE_SORT_OPTIONS_LB_SORT_USER,956452354,
sc_ListBox_RID_SCPAGE_SUBT_OPTIONS_LB_USERDEF,956812835,
sc_ListBox_RID_SCPAGE_TABLE_LB_SCALEMODE,957042207,
sc_ListBox_RID_SCPAGE_USERLISTS_LB_LISTS,956845569,
-sc_ListBox_RID_SCTAB_FUNCTION_LB_CATEGORY,958254595,
-sc_ListBox_RID_SCTAB_FUNCTION_LB_FUNCTION,958254596,
sc_ListBox_TP_VALIDATION_ERROR_LB_ACTION,548310552,
sc_ListBox_TP_VALIDATION_VALUES_LB_ALLOW,548277762,
sc_ListBox_TP_VALIDATION_VALUES_LB_VALUE,548277765,
@@ -7295,8 +7374,6 @@ sc_PushButton_RID_SCDLG_CONSOLIDATE_BTN_ADD,2567524869,
sc_PushButton_RID_SCDLG_CONSOLIDATE_BTN_REMOVE,2567524870,
sc_PushButton_RID_SCDLG_DBNAMES_BTN_ADD,2567328259,
sc_PushButton_RID_SCDLG_DBNAMES_BTN_REMOVE,2567328260,
-sc_PushButton_RID_SCDLG_FORMULA_BTN_BACKWARD,2567606792,
-sc_PushButton_RID_SCDLG_FORMULA_BTN_FORWARD,2567606793,
sc_PushButton_RID_SCDLG_INSERT_TABLE_BTN_BROWSE,1493897756,
sc_PushButton_RID_SCDLG_LINKAREA_BTN_BROWSE,1495372294,
sc_PushButton_RID_SCDLG_NAMES_BTN_ADD,2567311875,
@@ -7391,11 +7468,7 @@ sc_RadioButton_RID_SCPAGE_SUBT_OPTIONS_BTN_ASCENDING,956809759,
sc_RadioButton_RID_SCPAGE_SUBT_OPTIONS_BTN_DESCENDING,956809760,
sc_RadioButton_RID_SCPAGE_TABLE_BTN_LEFTRIGHT,957039125,
sc_RadioButton_RID_SCPAGE_TABLE_BTN_TOPDOWN,957039124,
-sc_TabControl_RID_SCDLG_FORMULA_TC_FUNCTION,2567602194,
sc_TabPage_RID_SCPAGE_STAT,957628416,
-sc_TabPage_RID_SCTAB_FUNCTION,958251008,
-sc_TabPage_RID_SCTAB_PARAMETER,958234624,
-sc_TabPage_RID_SCTAB_STRUCT,958267392,
sc_TabPage_TP_VALIDATION_ERROR,548306944,
sc_TabPage_TP_VALIDATION_INPUTHELP,548290560,
sc_TabPage_TP_VALIDATION_VALUES,548274176,
@@ -7422,6 +7495,7 @@ sd_CheckBox_DLG_PRESLT_CBX_MASTER_PAGE,1087964161,
sd_CheckBox_DLG_PUBLISHING_PAGE2_CONTENT,1085850655,
sd_CheckBox_DLG_PUBLISHING_PAGE2_ENDLESS,1085850662,
sd_CheckBox_DLG_PUBLISHING_PAGE2_NOTES,1085850656,
+sd_CheckBox_DLG_PUBLISHING_PAGE3_HIDDEN_SLIDES,1085850687,
sd_CheckBox_DLG_PUBLISHING_PAGE3_SLD_SOUND,1085850685,
sd_CheckBox_DLG_PUBLISHING_PAGE4_CREATED,1085850700,
sd_CheckBox_DLG_PUBLISHING_PAGE4_DOWNLOAD,1085850699,
@@ -7793,7 +7867,6 @@ sfx2_PushButton_DLG_VERSIONS_PB_DELETE,1112691205,
sfx2_PushButton_DLG_VERSIONS_PB_OPEN,1112691206,
sfx2_PushButton_DLG_VERSIONS_PB_SAVE,1112691202,
sfx2_PushButton_DLG_VERSIONS_PB_VIEW,1112691213,
-sfx2_PushButton_RID_DLG_NEWER_VERSION_WARNING_PB_UPDATE,1111904781,
sfx2_PushButton_RID_DLG_SEARCH_PB_FIND,2187088401,
sfx2_PushButton_RID_SFX_TP_MACROASSIGN_PB_ASSIGN,575787523,
sfx2_PushButton_RID_SFX_TP_MACROASSIGN_PB_DELETE,575787524,
@@ -7992,15 +8065,12 @@ svx_CheckBox_OFA_TP_MISC_CB_FILEDLG,810484791,
svx_CheckBox_OFA_TP_MISC_CB_HELPAGENT,810484749,
svx_CheckBox_OFA_TP_MISC_CB_PRINTDLG,810484781,
svx_CheckBox_OFA_TP_MISC_CB_TOOLTIP,810484747,
-svx_CheckBox_OFA_TP_VIEW_CB_3D_DITHERING,810517517,
-svx_CheckBox_OFA_TP_VIEW_CB_3D_OPENGL,810517515,
-svx_CheckBox_OFA_TP_VIEW_CB_3D_OPENGL_FASTER,810517516,
-svx_CheckBox_OFA_TP_VIEW_CB_3D_SHOWFULL,810517518,
svx_CheckBox_OFA_TP_VIEW_CB_FONTANTIALIASING,810517567,
svx_CheckBox_OFA_TP_VIEW_CB_FONT_HISTORY,810517566,
svx_CheckBox_OFA_TP_VIEW_CB_FONT_SHOW,810517564,
svx_CheckBox_OFA_TP_VIEW_CB_MENU_ICONS,810517544,
svx_CheckBox_OFA_TP_VIEW_CB_SYSTEM_FONT,810517560,
+svx_CheckBox_OFA_TP_VIEW_CB_USE_ANTIALIASE,810517573,
svx_CheckBox_OFA_TP_VIEW_CB_USE_HARDACCELL,810517572,
svx_CheckBox_RID_OFADLG_OPTIONS_TREE_HINT_CB_DISABLE,1346012182,
svx_CheckBox_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_ACTIV,809157753,
@@ -8065,6 +8135,7 @@ svx_CheckBox_RID_SVXDLG_SEARCH_CB_JAP_MATCH_FULL_HALF_WIDTH,2311652399,
svx_CheckBox_RID_SVXDLG_SEARCH_CB_JAP_SOUNDS_LIKE,2311652400,
svx_CheckBox_RID_SVXDLG_SEARCH_CB_LAYOUTS,2311652398,
svx_CheckBox_RID_SVXDLG_SEARCH_CB_MATCH_CASE,2311652377,
+svx_CheckBox_RID_SVXDLG_SEARCH_CB_NOTES,2311652412,
svx_CheckBox_RID_SVXDLG_SEARCH_CB_REGEXP,2311652395,
svx_CheckBox_RID_SVXDLG_SEARCH_CB_SELECTIONS,2311652393,
svx_CheckBox_RID_SVXDLG_SEARCH_CB_SIMILARITY,2311652396,
@@ -8096,7 +8167,7 @@ svx_CheckBox_RID_SVXPAGE_BORDER_CB_MERGEADJACENTBORDERS,700793922,
svx_CheckBox_RID_SVXPAGE_BORDER_CB_MERGEWITHNEXT,700793921,
svx_CheckBox_RID_SVXPAGE_BORDER_CB_SYNC,700793915,
svx_CheckBox_RID_SVXPAGE_CAPTION_CB_LAENGE,703169537,
-svx_CheckBox_RID_SVXPAGE_CHAR_EFFECTS_CB_INDIVIDUALWORDS,704644302,
+svx_CheckBox_RID_SVXPAGE_CHAR_EFFECTS_CB_INDIVIDUALWORDS,704644327,
svx_CheckBox_RID_SVXPAGE_CHAR_POSITION_CB_FIT_TO_LINE,704660794,
svx_CheckBox_RID_SVXPAGE_CHAR_POSITION_CB_HIGHLOW,704660786,
svx_CheckBox_RID_SVXPAGE_CHAR_POSITION_CB_PAIRKERNING,704660804,
@@ -8122,8 +8193,9 @@ svx_CheckBox_RID_SVXPAGE_HEADER_CB_SHARED,701154324,
svx_CheckBox_RID_SVXPAGE_HEADER_CB_TURNON,701154314,
svx_CheckBox_RID_SVXPAGE_HYPERLINK_INTERNET_CBX_ANONYMOUS,704447499,
svx_CheckBox_RID_SVXPAGE_INET_MOZPLUGIN_CB_MOZPLUGIN_CODE,736117762,
-svx_CheckBox_RID_SVXPAGE_INET_SECURITY_CB_SEC_RECOMMREADONLY,703988758,
-svx_CheckBox_RID_SVXPAGE_INET_SECURITY_CB_SEC_RECORDCHANGES,703988759,
+svx_CheckBox_RID_SVXPAGE_INET_SECURITY_CB_SEC_MASTERPASSWORD,703988752,
+svx_CheckBox_RID_SVXPAGE_INET_SECURITY_CB_SEC_RECOMMREADONLY,703988759,
+svx_CheckBox_RID_SVXPAGE_INET_SECURITY_CB_SEC_RECORDCHANGES,703988760,
svx_CheckBox_RID_SVXPAGE_INET_SECURITY_CB_SEC_SAVEPASSWORDS,703988750,
svx_CheckBox_RID_SVXPAGE_JSEARCH_OPTIONS_CB_IGNORE_MIDDLE_DOT,714474700,
svx_CheckBox_RID_SVXPAGE_JSEARCH_OPTIONS_CB_IGNORE_PUNCTUATION,714474697,
@@ -8505,14 +8577,16 @@ svx_ListBox_RID_SVXPAGE_BORDER_LB_SHADOWCOLOR,700796452,
svx_ListBox_RID_SVXPAGE_CAPTION_LB_ANSATZ,703172098,
svx_ListBox_RID_SVXPAGE_CAPTION_LB_ANSATZ_REL,703172099,
svx_ListBox_RID_SVXPAGE_CAPTION_LB_WINKEL,703172097,
-svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_EFFECTS2,704646878,
-svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_EMPHASIS,704646864,
-svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_FONTCOLOR,704646868,
-svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_POSITION,704646866,
-svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_RELIEF,704646883,
-svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_STRIKEOUT,704646861,
-svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_UNDERLINE,704646857,
-svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_UNDERLINE_COLOR,704646859,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_EFFECTS2,704646861,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_EMPHASIS,704646898,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_FONTCOLOR,704646858,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_OVERLINE,704646878,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_OVERLINE_COLOR,704646880,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_POSITION,704646900,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_RELIEF,704646863,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_STRIKEOUT,704646882,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_UNDERLINE,704646884,
+svx_ListBox_RID_SVXPAGE_CHAR_EFFECTS_LB_UNDERLINE_COLOR,704646886,
svx_ListBox_RID_SVXPAGE_CHAR_NAME_LB_COLOR2,704630414,
svx_ListBox_RID_SVXPAGE_CHAR_NAME_LB_CTL_LANG,704630400,
svx_ListBox_RID_SVXPAGE_CHAR_NAME_LB_EAST_LANG,704630390,
@@ -8775,7 +8849,6 @@ svx_ModalDialog_RID_SVXDLG_GALLERY_THEMEID,1243627520,
svx_ModalDialog_RID_SVXDLG_IMAPURL,1244987392,
svx_ModalDialog_RID_SVXDLG_OPT_JAVASCRIPT_DISABLE,1241268224,
svx_ModalDialog_RID_SVXDLG_SETFORM,1368735744,
-svx_ModalDialog_RID_SVXPAGE_IMPROVEMENT,1242529792,
svx_ModalDialog_RID_SVX_DLG_INPUTRECORDNO,1368817664,
svx_ModalDialog_RID_SVX_DLG_SHOWGRIDCOLUMNS,1368834048,
svx_ModalDialog_RID_SVX_MDLG_EXTRUSION_DEPTH,1237630976,
@@ -8950,6 +9023,7 @@ svx_PushButton_RID_SVXDLG_SPELLCHECK_PB_CLOSE,2311852591,
svx_PushButton_RID_SVXDLG_SPELLCHECK_PB_EXPLAIN,2311852599,
svx_PushButton_RID_SVXDLG_SPELLCHECK_PB_IGNORE,2311852581,
svx_PushButton_RID_SVXDLG_SPELLCHECK_PB_IGNOREALL,2311852582,
+svx_PushButton_RID_SVXDLG_SPELLCHECK_PB_IGNORERULE,2311852603,
svx_PushButton_RID_SVXDLG_SPELLCHECK_PB_OPTIONS,2311852588,
svx_PushButton_RID_SVXDLG_SPELLCHECK_PB_UNDO,2311852590,
svx_PushButton_RID_SVXDLG_THESAURUS_BTN_LANGUAGE,1238094348,
@@ -8990,11 +9064,11 @@ svx_PushButton_RID_SVXPAGE_INET_SEARCH_PB_ADD,703337015,
svx_PushButton_RID_SVXPAGE_INET_SEARCH_PB_CHANGE,703337013,
svx_PushButton_RID_SVXPAGE_INET_SEARCH_PB_DELETE,703337014,
svx_PushButton_RID_SVXPAGE_INET_SEARCH_PB_NEW,703337016,
-svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_MACROSEC,703992340,
-svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_MASTERPASSWORD,703992335,
-svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_PROTRECORDS,703992344,
+svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_CONNECTIONS,703992335,
+svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_MACROSEC,703992341,
+svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_MASTERPASSWORD,703992338,
+svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_PROTRECORDS,703992345,
svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_SECURITYOPTIONS,703992332,
-svx_PushButton_RID_SVXPAGE_INET_SECURITY_PB_SEC_SHOWPASSWORDS,703992337,
svx_PushButton_RID_SVXPAGE_LINEEND_DEF_BTN_ADD,701583873,
svx_PushButton_RID_SVXPAGE_LINEEND_DEF_BTN_DELETE,701583875,
svx_PushButton_RID_SVXPAGE_LINEEND_DEF_BTN_MODIFY,701583874,
@@ -9159,10 +9233,10 @@ svx_TriStateBox_RID_SVXPAGE_AREA_TSB_SCALE,701629953,
svx_TriStateBox_RID_SVXPAGE_AREA_TSB_STEPCOUNT,701629955,
svx_TriStateBox_RID_SVXPAGE_AREA_TSB_STRETCH,701629957,
svx_TriStateBox_RID_SVXPAGE_AREA_TSB_TILE,701629956,
-svx_TriStateBox_RID_SVXPAGE_CHAR_EFFECTS_CB_BLINKING,704644833,
-svx_TriStateBox_RID_SVXPAGE_CHAR_EFFECTS_CB_CHARHIDDEN,704644836,
-svx_TriStateBox_RID_SVXPAGE_CHAR_EFFECTS_CB_OUTLINE,704644831,
-svx_TriStateBox_RID_SVXPAGE_CHAR_EFFECTS_CB_SHADOW,704644832,
+svx_TriStateBox_RID_SVXPAGE_CHAR_EFFECTS_CB_BLINKING,704644818,
+svx_TriStateBox_RID_SVXPAGE_CHAR_EFFECTS_CB_CHARHIDDEN,704644819,
+svx_TriStateBox_RID_SVXPAGE_CHAR_EFFECTS_CB_OUTLINE,704644816,
+svx_TriStateBox_RID_SVXPAGE_CHAR_EFFECTS_CB_SHADOW,704644817,
svx_TriStateBox_RID_SVXPAGE_EXT_PARAGRAPH_BTN_HYPHEN,700827186,
svx_TriStateBox_RID_SVXPAGE_EXT_PARAGRAPH_BTN_KEEPTOGETHER,700827203,
svx_TriStateBox_RID_SVXPAGE_EXT_PARAGRAPH_BTN_ORPHANS,700827207,
@@ -9675,6 +9749,7 @@ sw_ListBox_TP_LINENUMBERING_LB_CHAR_STYLE,878890499,
sw_ListBox_TP_LINENUMBERING_LB_FORMAT,878890501,
sw_ListBox_TP_LINENUMBERING_LB_POS,878890503,
sw_ListBox_TP_NUMPARA_LB_NUMBER_STYLE,878857729,
+sw_ListBox_TP_NUMPARA_LB_OUTLINE_LEVEL,878857741,
sw_ListBox_TP_NUM_POSITION_LB_ALIGN,878841356,
sw_ListBox_TP_NUM_POSITION_LB_ALIGN_2,878841366,
sw_ListBox_TP_NUM_POSITION_LB_LABEL_FOLLOWED_BY,878841362,
@@ -9988,7 +10063,6 @@ sw_PushButton_TP_TOX_ENTRY_PB_HYPERLINK,879153705,
sw_PushButton_TP_TOX_ENTRY_PB_PAGENO,879153703,
sw_PushButton_TP_TOX_ENTRY_PB_TAB,879153704,
sw_PushButton_TP_TOX_SELECT_PB_ADDSTYLES,879137294,
-sw_PushButton_TP_TOX_SELECT_PB_CHAPTERDLG,879137292,
sw_PushButton_TP_TOX_STYLES_BT_EDIT_STYLE,879170088,
sw_PushButton_TP_TOX_STYLES_BT_STD,879170074,
sw_RadioButton_DLG_AP_INSERT_DB_SEL_RB_AS_FIELD,1435042307,
@@ -10150,9 +10224,9 @@ uui_Edit_DLG_UUI_LOGIN_ED_LOGIN_USERNAME,1311344666,
uui_Edit_DLG_UUI_MASTERPASSWORD_CRT_ED_MASTERPASSWORD_CRT,1311655957,
uui_Edit_DLG_UUI_MASTERPASSWORD_CRT_ED_MASTERPASSWORD_REPEAT,1311655959,
uui_Edit_DLG_UUI_MASTERPASSWORD_ED_MASTERPASSWORD,1311508501,
-uui_Edit_DLG_UUI_PASSWORD_CRT_ED_PASSWORD_CRT,1311688725,
-uui_Edit_DLG_UUI_PASSWORD_CRT_ED_PASSWORD_REPEAT,1311688727,
-uui_Edit_DLG_UUI_PASSWORD_ED_PASSWORD,1311672341,
+uui_Edit_DLG_UUI_PASSWORD_CRT_ED_PASSWORD_CRT,1311688706,
+uui_Edit_DLG_UUI_PASSWORD_CRT_ED_PASSWORD_REPEAT,1311688709,
+uui_Edit_DLG_UUI_PASSWORD_ED_PASSWORD,1311672322,
uui_ListBox_DLG_FILTER_SELECT_LB_FILTERS,1311477279,
uui_PushButton_DLG_COOKIES_BTN_COOKIES_CANCEL,1311363614,
uui_PushButton_DLG_COOKIES_BTN_COOKIES_OK,1311363615,
@@ -10161,6 +10235,7 @@ uui_PushButton_DLG_UUI_SSLWARN_PB_OK,1311773188,
uui_PushButton_DLG_UUI_SSLWARN_PB_VIEW__CERTIFICATE,1311773189,
uui_PushButton_DLG_UUI_UNKNOWNAUTH_PB_OK,1311740418,
uui_PushButton_DLG_UUI_UNKNOWNAUTH_PB_VIEW__CERTIFICATE,1311740419,
+uui_PushButton_RID_DLG_NEWER_VERSION_WARNING_PB_UPDATE,1311904269,
uui_PushButton_RID_XMLSECDLG_MACROWARN_PB_VIEWSIGNS,1311805956,
uui_RadioButton_DLG_COOKIES_RB_INFUTURE_IGNORE,1311359509,
uui_RadioButton_DLG_COOKIES_RB_INFUTURE_INTERACTIVE,1311359510,
@@ -10189,6 +10264,7 @@ FN_NAME_GROUP,,.uno:NameGroup
FN_STAT_HYPERLINKS,,.uno:ExecHyperlinks
FontHeight,,.uno:
SID_ACTIONMODE,,.uno:ActionMode
+SID_AUTOSPELL_MARKOFF,,.uno:HideSpellMark
SID_FILL_DRAFT,,.uno:FillDraft
SID_FONTWORK_SHAPE_TYPES,,.uno:FontworkShapeTypes
SID_GRAPHIC_DRAFT,,.uno:GraphicDraft
diff --git a/helpcontent2/source/auxiliary/sbasic.tree b/helpcontent2/source/auxiliary/sbasic.tree
index 5866fdbd27..8766b4a7c6 100755
--- a/helpcontent2/source/auxiliary/sbasic.tree
+++ b/helpcontent2/source/auxiliary/sbasic.tree
@@ -31,7 +31,7 @@
<topic id="sbasic/text/sbasic/shared/03120000.xhp">Strings</topic>
<topic id="sbasic/text/sbasic/shared/03130000.xhp">Other Commands</topic>
</node>
- <node id="070201" title="Alphabetic List of Functions, Statements, and Operators">
+ <node id="070201" title="List of common Functions, Statements, and Operators">
<topic id="sbasic/text/sbasic/shared/03080601.xhp">Abs Function [Runtime]</topic>
<topic id="sbasic/text/sbasic/shared/03060100.xhp">AND Operator [Runtime]</topic>
<topic id="sbasic/text/sbasic/shared/03104200.xhp">Array Function [Runtime]</topic>
diff --git a/helpcontent2/source/text/sbasic/guide/makefile.mk b/helpcontent2/source/text/sbasic/guide/makefile.mk
index 25ae34a978..c8e995a385 100644
--- a/helpcontent2/source/text/sbasic/guide/makefile.mk
+++ b/helpcontent2/source/text/sbasic/guide/makefile.mk
@@ -6,9 +6,9 @@
#
# OpenOffice.org - a multi-platform office productivity suite
#
-# $RCSfile: makefile.mk,v $
+# $RCSfile: makefile.template,v $
#
-# $Revision: 1.9.4.4 $
+# $Revision: 1.5 $
#
# This file is part of OpenOffice.org.
#
diff --git a/helpcontent2/source/text/sbasic/shared/01/makefile.mk b/helpcontent2/source/text/sbasic/shared/01/makefile.mk
index 5147038f19..85d604c8ff 100644
--- a/helpcontent2/source/text/sbasic/shared/01/makefile.mk
+++ b/helpcontent2/source/text/sbasic/shared/01/makefile.mk
@@ -6,9 +6,9 @@
#
# OpenOffice.org - a multi-platform office productivity suite
#
-# $RCSfile: makefile.mk,v $
+# $RCSfile: makefile.template,v $
#
-# $Revision: 1.8.4.4 $
+# $Revision: 1.5 $
#
# This file is part of OpenOffice.org.
#
diff --git a/helpcontent2/source/text/sbasic/shared/02/makefile.mk b/helpcontent2/source/text/sbasic/shared/02/makefile.mk
index 1acf4753bd..78ab5d206a 100644
--- a/helpcontent2/source/text/sbasic/shared/02/makefile.mk
+++ b/helpcontent2/source/text/sbasic/shared/02/makefile.mk
@@ -6,9 +6,9 @@
#
# OpenOffice.org - a multi-platform office productivity suite
#
-# $RCSfile: makefile.mk,v $
+# $RCSfile: makefile.template,v $
#
-# $Revision: 1.9.4.4 $
+# $Revision: 1.5 $
#
# This file is part of OpenOffice.org.
#
diff --git a/helpcontent2/source/text/sbasic/shared/03030201.xhp b/helpcontent2/source/text/sbasic/shared/03030201.xhp
index 4d2506906f..3b5c431580 100755
--- a/helpcontent2/source/text/sbasic/shared/03030201.xhp
+++ b/helpcontent2/source/text/sbasic/shared/03030201.xhp
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-
-
-<!--***********************************************************************
+<helpdocument version="1.0">
+
+<!--
+***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
@@ -9,8 +10,8 @@
*
* OpenOffice.org - a multi-platform office productivity suite
*
- * $RCSfile: 03030201.xhp,v $
- * $Revision: 1.5 $
+ * $RCSfile: soffice2xmlhelp.xsl,v $
+ * $Revision: 1.10 $
*
* This file is part of OpenOffice.org.
*
@@ -29,41 +30,39 @@
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
- ************************************************************************-->
+ ************************************************************************
+ -->
+
-<helpdocument version="1.0">
<meta>
-<topic id="textsbasicshared03030201xml" indexer="include" status="PUBLISH">
-<title id="tit" xml-lang="en-US">Hour Function [Runtime]</title>
-<filename>/text/sbasic/shared/03030201.xhp</filename>
-</topic>
-<history>
-<created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created>
-<lastedited date="2004-08-24T12:46:45">converted from old format - fpe</lastedited>
-</history>
-</meta>
-<body>
-<section id="hour">
+ <topic id="textsbasicshared03030201xml" indexer="include" status="PUBLISH">
+ <title xml-lang="en-US" id="tit">Hour Function [Runtime]</title>
+ <filename>/text/sbasic/shared/03030201.xhp</filename>
+ </topic>
+ </meta>
+ <body>
+ <section id="hour">
<bookmark xml-lang="en-US" branch="index" id="bm_id3156042"><bookmark_value>Hour function</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3156042" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03030201.xhp" name="Hour Function [Runtime]">Hour Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3149346" xml-lang="en-US" l10n="U" oldref="2">Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function.</paragraph>
-</section>
-<paragraph role="heading" id="hd_id3147574" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3147264" xml-lang="en-US" l10n="U" oldref="4">Hour (Number)</paragraph>
-<paragraph role="heading" id="hd_id3145069" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3149670" xml-lang="en-US" l10n="U" oldref="6">Integer</paragraph>
-<paragraph role="heading" id="hd_id3150359" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3154366" xml-lang="en-US" l10n="U" oldref="8">
-<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value.</paragraph>
-<paragraph role="paragraph" id="par_id3154909" xml-lang="en-US" l10n="U" oldref="9">This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression</paragraph>
-<paragraph role="paragraph" id="par_id3163798" xml-lang="en-US" l10n="U" oldref="10">Print Hour(TimeSerial(12:30:41))</paragraph>
-<paragraph role="paragraph" id="par_id3155132" xml-lang="en-US" l10n="U" oldref="11">returns the value 12.</paragraph>
-<embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
-<embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3147348" xml-lang="en-US" level="2" l10n="U" oldref="12">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3146985" xml-lang="en-US" l10n="U" oldref="13">Sub ExampleHour</paragraph>
-<paragraph role="paragraph" id="par_id3156441" xml-lang="en-US" l10n="U" oldref="14">Print "The current hour is " &amp; Hour( Now )</paragraph>
-<paragraph role="paragraph" id="par_id3153145" xml-lang="en-US" l10n="U" oldref="15">End Sub</paragraph>
-</body>
-</helpdocument>
+<paragraph xml-lang="en-US" id="hd_id3156042" role="heading" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03030201.xhp" name="Hour Function [Runtime]">Hour Function [Runtime]</link></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149346" role="paragraph" l10n="U" oldref="2">Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function.</paragraph>
+ </section>
+ <paragraph xml-lang="en-US" id="hd_id3147574" role="heading" level="2" l10n="U" oldref="3">Syntax:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147264" role="paragraph" l10n="U" oldref="4">Hour (Number)</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145069" role="heading" level="2" l10n="U" oldref="5">Return value:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149670" role="paragraph" l10n="U" oldref="6">Integer</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150359" role="heading" level="2" l10n="U" oldref="7">Parameters:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154366" role="paragraph" l10n="U" oldref="8">
+ <emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154909" role="paragraph" l10n="U" oldref="9">This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163798" role="paragraph" l10n="CHG" oldref="10">Print Hour(TimeSerial(12,30,41))</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155132" role="paragraph" l10n="U" oldref="11">returns the value 12.</paragraph>
+ <embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
+ <embed href="text/sbasic/shared/00000003.xhp#err5"/>
+ <paragraph xml-lang="en-US" id="hd_id3147348" role="heading" level="2" l10n="U"
+ oldref="12">Example:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146985" role="paragraph" l10n="U" oldref="13">Sub ExampleHour</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156441" role="paragraph" l10n="U" oldref="14">Print "The current hour is " &amp; Hour( Now )</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153145" role="paragraph" l10n="U" oldref="15">End Sub</paragraph>
+ </body>
+</helpdocument> \ No newline at end of file
diff --git a/helpcontent2/source/text/sbasic/shared/03030202.xhp b/helpcontent2/source/text/sbasic/shared/03030202.xhp
index 2366caa49a..c4071dcc4a 100755
--- a/helpcontent2/source/text/sbasic/shared/03030202.xhp
+++ b/helpcontent2/source/text/sbasic/shared/03030202.xhp
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-
-
-<!--***********************************************************************
+<helpdocument version="1.0">
+
+<!--
+***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
@@ -9,8 +10,8 @@
*
* OpenOffice.org - a multi-platform office productivity suite
*
- * $RCSfile: 03030202.xhp,v $
- * $Revision: 1.5 $
+ * $RCSfile: soffice2xmlhelp.xsl,v $
+ * $Revision: 1.10 $
*
* This file is part of OpenOffice.org.
*
@@ -29,41 +30,39 @@
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
- ************************************************************************-->
+ ************************************************************************
+ -->
+
-<helpdocument version="1.0">
<meta>
-<topic id="textsbasicshared03030202xml" indexer="include" status="PUBLISH">
-<title id="tit" xml-lang="en-US">Minute Function [Runtime]</title>
-<filename>/text/sbasic/shared/03030202.xhp</filename>
-</topic>
-<history>
-<created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created>
-<lastedited date="2004-08-24T13:34:29">converted from old format - fpe</lastedited>
-</history>
-</meta>
-<body>
-<section id="minute">
+ <topic id="textsbasicshared03030202xml" indexer="include" status="PUBLISH">
+ <title xml-lang="en-US" id="tit">Minute Function [Runtime]</title>
+ <filename>/text/sbasic/shared/03030202.xhp</filename>
+ </topic>
+ </meta>
+ <body>
+ <section id="minute">
<bookmark xml-lang="en-US" branch="index" id="bm_id3155419"><bookmark_value>Minute function</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3155419" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03030202.xhp" name="Minute Function [Runtime]">Minute Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3156344" xml-lang="en-US" l10n="U" oldref="2">Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function.</paragraph>
-</section>
-<paragraph role="heading" id="hd_id3154758" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3149656" xml-lang="en-US" l10n="U" oldref="4">Minute (Number)</paragraph>
-<paragraph role="heading" id="hd_id3148798" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3150449" xml-lang="en-US" l10n="U" oldref="6">Integer</paragraph>
-<paragraph role="heading" id="hd_id3153193" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph>
-<paragraph role="paragraph" id="par_id3153969" xml-lang="en-US" l10n="U" oldref="8">
-<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value.</paragraph>
-<paragraph role="paragraph" id="par_id3150869" xml-lang="en-US" l10n="U" oldref="9">This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:</paragraph>
-<paragraph role="paragraph" id="par_id3149262" xml-lang="en-US" l10n="U" oldref="10">Print Minute(TimeSerial(12:30:41))</paragraph>
-<paragraph role="paragraph" id="par_id3148576" xml-lang="en-US" l10n="U" oldref="11">returns the value 30.</paragraph>
-<embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
-<embed href="text/sbasic/shared/00000003.xhp#err5"/>
-<paragraph role="heading" id="hd_id3150010" xml-lang="en-US" level="2" l10n="U" oldref="12">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3159154" xml-lang="en-US" l10n="U" oldref="13">Sub ExampleMinute</paragraph>
-<paragraph role="paragraph" id="par_id3146119" xml-lang="en-US" l10n="U" oldref="14">MsgBox "The current minute is "&amp; Minute(Now)&amp; "."</paragraph>
-<paragraph role="paragraph" id="par_id3153726" xml-lang="en-US" l10n="U" oldref="15">end sub</paragraph>
-</body>
-</helpdocument>
+<paragraph xml-lang="en-US" id="hd_id3155419" role="heading" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03030202.xhp" name="Minute Function [Runtime]">Minute Function [Runtime]</link></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156344" role="paragraph" l10n="U" oldref="2">Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function.</paragraph>
+ </section>
+ <paragraph xml-lang="en-US" id="hd_id3154758" role="heading" level="2" l10n="U" oldref="3">Syntax:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149656" role="paragraph" l10n="U" oldref="4">Minute (Number)</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3148798" role="heading" level="2" l10n="U" oldref="5">Return value:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150449" role="paragraph" l10n="U" oldref="6">Integer</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153193" role="heading" level="2" l10n="U" oldref="7">Parameters:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153969" role="paragraph" l10n="U" oldref="8">
+ <emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150869" role="paragraph" l10n="U" oldref="9">This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149262" role="paragraph" l10n="CHG" oldref="10">Print Minute(TimeSerial(12,30,41))</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148576" role="paragraph" l10n="U" oldref="11">returns the value 30.</paragraph>
+ <embed href="text/sbasic/shared/00000003.xhp#errorcode"/>
+ <embed href="text/sbasic/shared/00000003.xhp#err5"/>
+ <paragraph xml-lang="en-US" id="hd_id3150010" role="heading" level="2" l10n="U"
+ oldref="12">Example:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159154" role="paragraph" l10n="U" oldref="13">Sub ExampleMinute</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146119" role="paragraph" l10n="U" oldref="14">MsgBox "The current minute is "&amp; Minute(Now)&amp; "."</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153726" role="paragraph" l10n="U" oldref="15">end sub</paragraph>
+ </body>
+</helpdocument> \ No newline at end of file
diff --git a/helpcontent2/source/text/sbasic/shared/03132100.xhp b/helpcontent2/source/text/sbasic/shared/03132100.xhp
index 148b5611aa..30ca7b803d 100755
--- a/helpcontent2/source/text/sbasic/shared/03132100.xhp
+++ b/helpcontent2/source/text/sbasic/shared/03132100.xhp
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-
-
-<!--***********************************************************************
+<helpdocument version="1.0">
+
+<!--
+***********************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
@@ -9,8 +10,8 @@
*
* OpenOffice.org - a multi-platform office productivity suite
*
- * $RCSfile: 03132100.xhp,v $
- * $Revision: 1.5 $
+ * $RCSfile: soffice2xmlhelp.xsl,v $
+ * $Revision: 1.10 $
*
* This file is part of OpenOffice.org.
*
@@ -29,38 +30,35 @@
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
- ************************************************************************-->
+ ************************************************************************
+ -->
+
-<helpdocument version="1.0">
<meta>
-<topic id="textsbasicshared03132100xml" indexer="include" status="PUBLISH">
-<title id="tit" xml-lang="en-US">GetGuiType Function [Runtime]</title>
-<filename>/text/sbasic/shared/03132100.xhp</filename>
-</topic>
-<history>
-<created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created>
-<lastedited date="2004-08-24T12:25:32">converted from old format - fpe</lastedited>
-</history>
-</meta>
-<body>
-<section id="getguitype">
+ <topic id="textsbasicshared03132100xml" indexer="include" status="PUBLISH">
+ <title xml-lang="en-US" id="tit">GetGuiType Function [Runtime]</title>
+ <filename>/text/sbasic/shared/03132100.xhp</filename>
+ </topic>
+ </meta>
+ <body>
+ <section id="getguitype">
<bookmark xml-lang="en-US" branch="index" id="bm_id3147143"><bookmark_value>GetGuiType function</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3155310" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03132100.xhp" name="GetGuiType Function [Runtime]">GetGuiType Function [Runtime]</link></paragraph>
-<paragraph role="paragraph" id="par_id3152459" xml-lang="en-US" l10n="U" oldref="2">Returns a numerical value that specifies the graphical user interface.</paragraph>
-</section>
-<paragraph role="paragraph" id="par_id3153323" xml-lang="en-US" l10n="U" oldref="3">This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments.</paragraph>
-<paragraph role="heading" id="hd_id3154894" xml-lang="en-US" level="2" l10n="U" oldref="4">Syntax:</paragraph>
-<paragraph role="paragraph" id="par_id3147143" xml-lang="en-US" l10n="U" oldref="5">GetGUIType()</paragraph>
-<paragraph role="heading" id="hd_id3149346" xml-lang="en-US" level="2" l10n="U" oldref="6">Return value:</paragraph>
-<paragraph role="paragraph" id="par_id3153748" xml-lang="en-US" l10n="U" oldref="7">Integer</paragraph>
-<paragraph role="heading" id="hd_id3149177" xml-lang="en-US" level="2" l10n="U" oldref="8">Return values:</paragraph>
-<paragraph role="paragraph" id="par_id3147242" xml-lang="en-US" l10n="U" oldref="9">1: Windows</paragraph>
-<paragraph role="paragraph" id="par_id3154046" xml-lang="en-US" l10n="U" oldref="10">3: Mac OS</paragraph>
-<paragraph role="paragraph" id="par_id3156152" xml-lang="en-US" l10n="U" oldref="11">4: UNIX</paragraph>
-<paragraph role="heading" id="hd_id3148685" xml-lang="en-US" level="2" l10n="U" oldref="12">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3149233" xml-lang="en-US" l10n="U" oldref="13">Sub ExampleEnvironment</paragraph>
-<paragraph role="paragraph" id="par_id3145609" xml-lang="en-US" l10n="U" oldref="14">MsgBox GetGUIType</paragraph>
-<paragraph role="paragraph" id="par_id3145069" xml-lang="en-US" l10n="U" oldref="15">End Sub</paragraph>
-</body>
-</helpdocument>
+<paragraph xml-lang="en-US" id="hd_id3155310" role="heading" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03132100.xhp" name="GetGuiType Function [Runtime]">GetGuiType Function [Runtime]</link></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152459" role="paragraph" l10n="U" oldref="2">Returns a numerical value that specifies the graphical user interface.</paragraph>
+ </section>
+ <paragraph xml-lang="en-US" id="par_id3153323" role="paragraph" l10n="U" oldref="3">This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154894" role="heading" level="2" l10n="U" oldref="4">Syntax:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147143" role="paragraph" l10n="U" oldref="5">GetGUIType()</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149346" role="heading" level="2" l10n="U" oldref="6">Return value:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153748" role="paragraph" l10n="U" oldref="7">Integer</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149177" role="heading" level="2" l10n="U" oldref="8">Return values:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147242" role="paragraph" l10n="U" oldref="9">1: Windows</paragraph><comment>removed 3: Mac OS, see i95717</comment>
+<paragraph xml-lang="en-US" id="par_id3156152" role="paragraph" l10n="U" oldref="11">4: UNIX</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3148685" role="heading" level="2" l10n="U"
+ oldref="12">Example:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149233" role="paragraph" l10n="U" oldref="13">Sub ExampleEnvironment</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145609" role="paragraph" l10n="U" oldref="14">MsgBox GetGUIType</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145069" role="paragraph" l10n="U" oldref="15">End Sub</paragraph>
+ </body>
+</helpdocument> \ No newline at end of file
diff --git a/helpcontent2/source/text/sbasic/shared/makefile.mk b/helpcontent2/source/text/sbasic/shared/makefile.mk
index 1ae2d0bf4d..36c2eabf2b 100644
--- a/helpcontent2/source/text/sbasic/shared/makefile.mk
+++ b/helpcontent2/source/text/sbasic/shared/makefile.mk
@@ -6,9 +6,9 @@
#
# OpenOffice.org - a multi-platform office productivity suite
#
-# $RCSfile: makefile.mk,v $
+# $RCSfile: makefile.template,v $
#
-# $Revision: 1.10.4.4 $
+# $Revision: 1.5 $
#
# This file is part of OpenOffice.org.
#
diff --git a/helpcontent2/source/text/scalc/00/makefile.mk b/helpcontent2/source/text/scalc/00/makefile.mk
index 464c9fdb32..fdf95fb7ac 100644
--- a/helpcontent2/source/text/scalc/00/makefile.mk
+++ b/helpcontent2/source/text/scalc/00/makefile.mk
@@ -6,9 +6,9 @@
#
# OpenOffice.org - a multi-platform office productivity suite
#
-# $RCSfile: makefile.mk,v $
+# $RCSfile: makefile.template,v $
#
-# $Revision: 1.8.4.4 $
+# $Revision: 1.5 $
#
# This file is part of OpenOffice.org.
#
diff --git a/helpcontent2/source/text/scalc/01/04060100.xhp b/helpcontent2/source/text/scalc/01/04060100.xhp
index 81c4c07bd8..d2a4b0a6be 100755
--- a/helpcontent2/source/text/scalc/01/04060100.xhp
+++ b/helpcontent2/source/text/scalc/01/04060100.xhp
@@ -10,8 +10,8 @@
*
* OpenOffice.org - a multi-platform office productivity suite
*
- * $RCSfile: 04060100.xhp,v $
- * $Revision: 1.7.4.1 $
+ * $RCSfile: soffice2xmlhelp.xsl,v $
+ * $Revision: 1.10 $
*
* This file is part of OpenOffice.org.
*
@@ -35,44 +35,51 @@
<meta>
-<topic id="textscalc0104060100xml" indexer="include">
-<title id="tit" xml-lang="en-US">Functions by Category</title>
-<filename>/text/scalc/01/04060100.xhp</filename>
-</topic>
-</meta>
-<body>
+ <topic id="textscalc0104060100xml" indexer="include">
+ <title xml-lang="en-US" id="tit">Functions by Category</title>
+ <filename>/text/scalc/01/04060100.xhp</filename>
+ </topic>
+ </meta>
+ <body>
<bookmark xml-lang="en-US" branch="index" id="bm_id3148575"><bookmark_value>functions;listed by category</bookmark_value>
-<bookmark_value>categories of functions</bookmark_value>
-<bookmark_value>list of functions</bookmark_value>
+ <bookmark_value>categories of functions</bookmark_value>
+ <bookmark_value>list of functions</bookmark_value>
</bookmark><comment>MW deleted "Calc functions"</comment>
-<paragraph role="heading" id="hd_id3154944" xml-lang="en-US" level="1" l10n="CHG" oldref="16">Functions by Category</paragraph>
-<paragraph role="paragraph" id="par_id3149378" xml-lang="en-US" l10n="CHG" oldref="2">This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard.</paragraph>
-<paragraph role="heading" id="hd_id3146972" xml-lang="en-US" level="2" l10n="U" oldref="3"><link href="text/scalc/01/04060101.xhp" name="Database">Database</link></paragraph>
-<embed href="text/scalc/01/04060101.xhp#datenbanktext"/>
-<paragraph role="heading" id="hd_id3155443" xml-lang="en-US" level="2" l10n="U" oldref="4"><link href="text/scalc/01/04060102.xhp" name="Date &amp; Time">Date &amp; Time</link></paragraph>
-<embed href="text/scalc/01/04060102.xhp#datumzeittext"/>
-<paragraph role="heading" id="hd_id3147339" xml-lang="en-US" level="2" l10n="U" oldref="5"><link href="text/scalc/01/04060103.xhp" name="Financial">Financial</link></paragraph>
-<embed href="text/scalc/01/04060103.xhp#finanztext"/>
-<paragraph role="heading" id="hd_id3153963" xml-lang="en-US" level="2" l10n="U" oldref="6"><link href="text/scalc/01/04060104.xhp" name="Information">Information</link></paragraph>
-<embed href="text/scalc/01/04060104.xhp#informationtext"/>
-<paragraph role="heading" id="hd_id3146316" xml-lang="en-US" level="2" l10n="U" oldref="7"><link href="text/scalc/01/04060105.xhp" name="Logical">Logical</link></paragraph>
-<embed href="text/scalc/01/04060105.xhp#logischtext"/>
-<paragraph role="heading" id="hd_id3148485" xml-lang="en-US" level="2" l10n="U" oldref="8"><link href="text/scalc/01/04060106.xhp" name="Mathematical">Mathematical</link></paragraph>
-<embed href="text/scalc/01/04060106.xhp#mathematiktext"/>
-<paragraph role="heading" id="hd_id3150363" xml-lang="en-US" level="2" l10n="CHG" oldref="9"><link href="text/scalc/01/04060107.xhp" name="Matrix">Array</link></paragraph>
-<embed href="text/scalc/01/04060107.xhp#matrixtext"/>
-<paragraph role="heading" id="hd_id3150208" xml-lang="en-US" level="2" l10n="U" oldref="10"><link href="text/scalc/01/04060108.xhp" name="Statistical">Statistical</link></paragraph>
-<embed href="text/scalc/01/04060108.xhp#statistiktext"/>
-<paragraph role="heading" id="hd_id3166428" xml-lang="en-US" level="2" l10n="U" oldref="11"><link href="text/scalc/01/04060109.xhp" name="Spreadsheet">Spreadsheet</link></paragraph>
-<embed href="text/scalc/01/04060109.xhp#tabelletext"/>
-<paragraph role="heading" id="hd_id3145585" xml-lang="en-US" level="2" l10n="U" oldref="12"><link href="text/scalc/01/04060110.xhp" name="Text">Text</link></paragraph>
-<embed href="text/scalc/01/04060110.xhp#texttext"/>
-<paragraph role="heading" id="hd_id3156449" xml-lang="en-US" level="2" l10n="U" oldref="13"><link href="text/scalc/01/04060111.xhp" name="Add-in">Add-in</link></paragraph>
-<embed href="text/scalc/01/04060111.xhp#addintext"/>
-<paragraph role="paragraph" id="par_id3150715" xml-lang="en-US" l10n="U" oldref="14"><link href="text/scalc/01/04060199.xhp" name="Operators">Operators</link> are also available.</paragraph>
-<section id="relatedtopics">
-<paragraph role="paragraph" id="par_id0902200809540918" xml-lang="en-US" l10n="NEW"><variable id="drking"><link href="http://wiki.services.openoffice.org/wiki/Documentation/How_Tos/Calc:_Functions_listed_by_category">Calc functions in the OpenOffice.org Wiki</link>
+<paragraph xml-lang="en-US" id="hd_id3154944" role="heading" level="1" l10n="CHG"
+ oldref="16">Functions by Category</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149378" role="paragraph" l10n="CHG" oldref="2">This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id0120200910234570" role="tip" l10n="NEW">You can find detailed explanations, illustrations, and examples of Calc functions in the <link href="http://wiki.services.openoffice.org/wiki/Documentation/How_Tos/Calc:_Functions_listed_by_category">OpenOffice.org Wiki</link>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146972" role="heading" level="2" l10n="U" oldref="3"><link href="text/scalc/01/04060101.xhp" name="Database">Database</link></paragraph>
+ <embed href="text/scalc/01/04060101.xhp#datenbanktext"/>
+ <paragraph xml-lang="en-US" id="hd_id3155443" role="heading" level="2" l10n="U" oldref="4"><link href="text/scalc/01/04060102.xhp" name="Date &amp; Time">Date &amp; Time</link></paragraph>
+ <embed href="text/scalc/01/04060102.xhp#datumzeittext"/>
+ <paragraph xml-lang="en-US" id="hd_id3147339" role="heading" level="2" l10n="U" oldref="5"><link href="text/scalc/01/04060103.xhp" name="Financial">Financial</link></paragraph>
+ <embed href="text/scalc/01/04060103.xhp#finanztext"/>
+ <paragraph xml-lang="en-US" id="hd_id3153963" role="heading" level="2" l10n="U" oldref="6"><link href="text/scalc/01/04060104.xhp" name="Information">Information</link></paragraph>
+ <embed href="text/scalc/01/04060104.xhp#informationtext"/>
+ <paragraph xml-lang="en-US" id="hd_id3146316" role="heading" level="2" l10n="U" oldref="7"><link href="text/scalc/01/04060105.xhp" name="Logical">Logical</link></paragraph>
+ <embed href="text/scalc/01/04060105.xhp#logischtext"/>
+ <paragraph xml-lang="en-US" id="hd_id3148485" role="heading" level="2" l10n="U" oldref="8"><link href="text/scalc/01/04060106.xhp" name="Mathematical">Mathematical</link></paragraph>
+ <embed href="text/scalc/01/04060106.xhp#mathematiktext"/>
+ <paragraph xml-lang="en-US" id="hd_id3150363" role="heading" level="2" l10n="CHG"
+ oldref="9"><link href="text/scalc/01/04060107.xhp" name="Matrix">Array</link></paragraph>
+ <embed href="text/scalc/01/04060107.xhp#matrixtext"/>
+ <paragraph xml-lang="en-US" id="hd_id3150208" role="heading" level="2" l10n="U"
+ oldref="10"><link href="text/scalc/01/04060108.xhp" name="Statistical">Statistical</link></paragraph>
+ <embed href="text/scalc/01/04060108.xhp#statistiktext"/>
+ <paragraph xml-lang="en-US" id="hd_id3166428" role="heading" level="2" l10n="U"
+ oldref="11"><link href="text/scalc/01/04060109.xhp" name="Spreadsheet">Spreadsheet</link></paragraph>
+ <embed href="text/scalc/01/04060109.xhp#tabelletext"/>
+ <paragraph xml-lang="en-US" id="hd_id3145585" role="heading" level="2" l10n="U"
+ oldref="12"><link href="text/scalc/01/04060110.xhp" name="Text">Text</link></paragraph>
+ <embed href="text/scalc/01/04060110.xhp#texttext"/>
+ <paragraph xml-lang="en-US" id="hd_id3156449" role="heading" level="2" l10n="U"
+ oldref="13"><link href="text/scalc/01/04060111.xhp" name="Add-in">Add-in</link></paragraph>
+ <embed href="text/scalc/01/04060111.xhp#addintext"/>
+ <paragraph xml-lang="en-US" id="par_id3150715" role="paragraph" l10n="U" oldref="14"><link href="text/scalc/01/04060199.xhp" name="Operators">Operators</link> are also available.</paragraph>
+ <section id="relatedtopics">
+ <paragraph xml-lang="en-US" id="par_id0902200809540918" role="paragraph" l10n="NEW"><variable id="drking"><link href="http://wiki.services.openoffice.org/wiki/Documentation/How_Tos/Calc:_Functions_listed_by_category">Calc functions in the OpenOffice.org Wiki</link>
</variable></paragraph>
-</section>
-</body>
-</helpdocument>
+ </section>
+ </body>
+</helpdocument> \ No newline at end of file
diff --git a/helpcontent2/source/text/scalc/01/04060105.xhp b/helpcontent2/source/text/scalc/01/04060105.xhp
index 9932822ffe..f47de69405 100644
--- a/helpcontent2/source/text/scalc/01/04060105.xhp
+++ b/helpcontent2/source/text/scalc/01/04060105.xhp
@@ -10,8 +10,8 @@
*
* OpenOffice.org - a multi-platform office productivity suite
*
- * $RCSfile: 04060105.xhp,v $
- * $Revision: 1.9.4.1 $
+ * $RCSfile: soffice2xmlhelp.xsl,v $
+ * $Revision: 1.10 $
*
* This file is part of OpenOffice.org.
*
@@ -35,132 +35,147 @@
<meta>
-<topic id="textscalc0104060105xml" indexer="include">
-<title id="tit" xml-lang="en-US">Logical Functions</title>
-<filename>/text/scalc/01/04060105.xhp</filename>
-</topic>
-</meta>
-<body>
+ <topic id="textscalc0104060105xml" indexer="include">
+ <title xml-lang="en-US" id="tit">Logical Functions</title>
+ <filename>/text/scalc/01/04060105.xhp</filename>
+ </topic>
+ </meta>
+ <body>
<bookmark xml-lang="en-US" branch="index" id="bm_id3153484"><bookmark_value>logical functions</bookmark_value>
-<bookmark_value>Function Wizard; logical</bookmark_value>
-<bookmark_value>functions; logical functions</bookmark_value>
+ <bookmark_value>Function Wizard; logical</bookmark_value>
+ <bookmark_value>functions; logical functions</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3153484" xml-lang="en-US" level="1" l10n="U" oldref="1">Logical Functions</paragraph>
-<paragraph role="paragraph" id="par_id3149312" xml-lang="en-US" l10n="U" oldref="2"><variable id="logischtext">This category contains the <emph>Logical</emph> functions.
+<paragraph xml-lang="en-US" id="hd_id3153484" role="heading" level="1" l10n="U" oldref="1">Logical Functions</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149312" role="paragraph" l10n="U" oldref="2"><variable id="logischtext">This category contains the <emph>Logical</emph> functions.
</variable></paragraph>
-<section id="howtoget">
-<embed href="text/scalc/00/00000404.xhp#eikalo"/>
-</section>
+ <section id="howtoget">
+ <embed href="text/scalc/00/00000404.xhp#eikalo"/>
+ </section>
<sort order="asc">
<section id="Section6">
<bookmark xml-lang="en-US" branch="index" id="bm_id3147505"><bookmark_value>AND function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_UND" id="bm_id3145320" localize="false"/>
-<paragraph role="heading" id="hd_id3147505" xml-lang="en-US" level="2" l10n="U" oldref="29">AND</paragraph>
-<paragraph role="paragraph" id="par_id3153959" xml-lang="en-US" l10n="U" oldref="65"><ahelp hid="HID_FUNC_UND">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value.</paragraph>
-<paragraph role="paragraph" id="par_id3146100" xml-lang="en-US" l10n="U" oldref="66">The arguments are either logical expressions themselves (TRUE, 1&lt;5, 2+3=7, B8&lt;10) that return logical values, or arrays (A1:C3) containing logical values.</paragraph>
-<paragraph role="note" id="par_id3150538" xml-lang="en-US" l10n="CHG" oldref="67">When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula.<comment>UFI: fixed #i18547#</comment></paragraph>
-<paragraph role="note" id="par_id3149128" xml-lang="en-US" l10n="CHG" oldref="68">If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!</paragraph>
-<paragraph role="heading" id="hd_id3150374" xml-lang="en-US" level="3" l10n="U" oldref="31">Syntax</paragraph>
-<paragraph role="code" id="par_id3159123" xml-lang="en-US" l10n="U" oldref="32">AND(LogicalValue1; LogicalValue2 ...LogicalValue30)</paragraph>
-<paragraph role="paragraph" id="par_id3150038" xml-lang="en-US" l10n="CHG" oldref="33">
-<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> 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.</paragraph>
-<paragraph role="heading" id="hd_id3149143" xml-lang="en-US" level="3" l10n="U" oldref="34">Example</paragraph>
-<paragraph role="paragraph" id="par_id3153123" xml-lang="en-US" l10n="U" oldref="35">The logical values of entries 12&lt;13; 14&gt;12, and 7&lt;6 are to be checked:</paragraph>
-<paragraph role="paragraph" id="par_id3145632" xml-lang="en-US" l10n="U" oldref="36">
-<item type="input">=AND(12&lt;13;14&gt;12;7&lt;6)</item> returns FALSE.</paragraph>
-<paragraph role="paragraph" id="par_id3149946" xml-lang="en-US" l10n="U" oldref="60">
-<item type="input">=AND (FALSE;TRUE)</item> returns FALSE.</paragraph>
-</section>
-<section id="Section5">
+<paragraph xml-lang="en-US" id="hd_id3147505" role="heading" level="2" l10n="U"
+ oldref="29">AND</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153959" role="paragraph" l10n="U" oldref="65"><ahelp hid="HID_FUNC_UND">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146100" role="paragraph" l10n="U" oldref="66">The arguments are either logical expressions themselves (TRUE, 1&lt;5, 2+3=7, B8&lt;10) that return logical values, or arrays (A1:C3) containing logical values.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150538" role="note" l10n="CHG" oldref="67">When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula.<comment>UFI: fixed #i18547#</comment></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149128" role="note" l10n="CHG" oldref="68">If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150374" role="heading" level="3" l10n="U"
+ oldref="31">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159123" role="code" l10n="U" oldref="32">AND(LogicalValue1; LogicalValue2 ...LogicalValue30)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150038" role="paragraph" l10n="CHG" oldref="33">
+ <emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> 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.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149143" role="heading" level="3" l10n="U"
+ oldref="34">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153123" role="paragraph" l10n="U" oldref="35">The logical values of entries 12&lt;13; 14&gt;12, and 7&lt;6 are to be checked:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145632" role="paragraph" l10n="U" oldref="36">
+ <item type="input">=AND(12&lt;13;14&gt;12;7&lt;6)</item> returns FALSE.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149946" role="paragraph" l10n="U" oldref="60">
+ <item type="input">=AND (FALSE;TRUE)</item> returns FALSE.</paragraph>
+ </section>
+ <section id="Section5">
<bookmark xml-lang="en-US" branch="index" id="bm_id3149015"><bookmark_value>FALSE function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_FALSCH" id="bm_id3154678" localize="false"/>
-<paragraph role="heading" id="hd_id3149015" xml-lang="en-US" level="2" l10n="U" oldref="3">FALSE</paragraph>
-<paragraph role="paragraph" id="par_id3149890" xml-lang="en-US" l10n="U" oldref="4"><ahelp hid="HID_FUNC_FALSCH">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE.</paragraph>
-<paragraph role="heading" id="hd_id3146939" xml-lang="en-US" level="3" l10n="U" oldref="5">Syntax</paragraph>
-<paragraph role="code" id="par_id3150030" xml-lang="en-US" l10n="U" oldref="6">FALSE()</paragraph>
-<paragraph role="heading" id="hd_id3150697" xml-lang="en-US" level="3" l10n="U" oldref="7">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154842" xml-lang="en-US" l10n="CHG" oldref="8">
-<item type="input">=FALSE()</item> returns FALSE</paragraph>
-<paragraph role="paragraph" id="par_id3147468" xml-lang="en-US" l10n="CHG" oldref="9">
-<item type="input">=NOT(FALSE())</item> returns TRUE</paragraph>
-</section>
-<section id="Section4">
+<paragraph xml-lang="en-US" id="hd_id3149015" role="heading" level="2" l10n="U" oldref="3">FALSE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149890" role="paragraph" l10n="U" oldref="4"><ahelp hid="HID_FUNC_FALSCH">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146939" role="heading" level="3" l10n="U" oldref="5">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150030" role="code" l10n="U" oldref="6">FALSE()</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150697" role="heading" level="3" l10n="U" oldref="7">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154842" role="paragraph" l10n="CHG" oldref="8">
+ <item type="input">=FALSE()</item> returns FALSE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147468" role="paragraph" l10n="CHG" oldref="9">
+ <item type="input">=NOT(FALSE())</item> returns TRUE</paragraph>
+ </section>
+ <section id="Section4">
<bookmark xml-lang="en-US" branch="index" id="bm_id3150141"><bookmark_value>IF function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_WENN" id="bm_id3152789" localize="false"/>
-<paragraph role="heading" id="hd_id3150141" xml-lang="en-US" level="2" l10n="U" oldref="48">IF</paragraph>
-<paragraph role="paragraph" id="par_id3148740" xml-lang="en-US" l10n="U" oldref="49"><ahelp hid="HID_FUNC_WENN">Specifies a logical test to be performed.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3153325" xml-lang="en-US" level="3" l10n="U" oldref="50">Syntax</paragraph>
-<paragraph role="code" id="par_id3154558" xml-lang="en-US" l10n="U" oldref="51">IF(Test; ThenValue; "OtherwiseValue")</paragraph>
-<paragraph role="paragraph" id="par_id3149727" xml-lang="en-US" l10n="U" oldref="52">
-<emph>Test</emph> is any value or expression that can be TRUE or FALSE.</paragraph>
-<paragraph role="paragraph" id="par_id3155828" xml-lang="en-US" l10n="U" oldref="53">
-<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE.</paragraph>
-<paragraph role="paragraph" id="par_id3154811" xml-lang="en-US" l10n="U" oldref="54">
-<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE.</paragraph>
-<paragraph role="paragraph" id="par_idN107FA" xml-lang="en-US" l10n="NEW">
-<embedvar href="text/scalc/00/00000004.xhp#optional"/>
-</paragraph>
-<paragraph role="heading" id="hd_id3149507" xml-lang="en-US" level="3" l10n="U" oldref="55">Examples</paragraph>
-<paragraph role="paragraph" id="par_id3150867" xml-lang="en-US" l10n="U" oldref="57">
-<item type="input">=IF(A1&gt;5;100;"too small")</item> 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.</paragraph>
-</section>
-<section id="Section3">
+<paragraph xml-lang="en-US" id="hd_id3150141" role="heading" level="2" l10n="U"
+ oldref="48">IF</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148740" role="paragraph" l10n="U" oldref="49"><ahelp hid="HID_FUNC_WENN">Specifies a logical test to be performed.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153325" role="heading" level="3" l10n="U"
+ oldref="50">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154558" role="code" l10n="U" oldref="51">IF(Test; ThenValue; "OtherwiseValue")</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149727" role="paragraph" l10n="U" oldref="52">
+ <emph>Test</emph> is any value or expression that can be TRUE or FALSE.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155828" role="paragraph" l10n="U" oldref="53">
+ <emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154811" role="paragraph" l10n="U" oldref="54">
+ <emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN107FA" role="paragraph" l10n="NEW">
+ <embedvar href="text/scalc/00/00000004.xhp#optional"/>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149507" role="heading" level="3" l10n="U"
+ oldref="55">Examples</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150867" role="paragraph" l10n="U" oldref="57">
+ <item type="input">=IF(A1&gt;5;100;"too small")</item> 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.</paragraph>
+ </section>
+ <section id="Section3">
<bookmark xml-lang="en-US" branch="index" id="bm_id3155954"><bookmark_value>NOT function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_NICHT" id="bm_id3145168" localize="false"/>
-<paragraph role="heading" id="hd_id3155954" xml-lang="en-US" level="2" l10n="U" oldref="12">NOT</paragraph>
-<paragraph role="paragraph" id="par_id3153570" xml-lang="en-US" l10n="U" oldref="13"><ahelp hid="HID_FUNC_NICHT">Reverses the logical value.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3147372" xml-lang="en-US" level="3" l10n="U" oldref="14">Syntax</paragraph>
-<paragraph role="code" id="par_id3157996" xml-lang="en-US" l10n="U" oldref="15">NOT(LogicalValue)</paragraph>
-<paragraph role="paragraph" id="par_id3148766" xml-lang="en-US" l10n="U" oldref="16">
-<emph>LogicalValue</emph> is any value to be reversed.</paragraph>
-<paragraph role="heading" id="hd_id3149884" xml-lang="en-US" level="3" l10n="U" oldref="17">Example</paragraph>
-<paragraph role="paragraph" id="par_id3150132" xml-lang="en-US" l10n="U" oldref="18">
-<item type="input">=NOT(A)</item>. A=TRUE reverses to A=FALSE.</paragraph>
-</section>
-<section id="Section2">
+<paragraph xml-lang="en-US" id="hd_id3155954" role="heading" level="2" l10n="U"
+ oldref="12">NOT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153570" role="paragraph" l10n="CHG" oldref="13"><ahelp hid="HID_FUNC_NICHT">Complements (inverts) a logical value.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3147372" role="heading" level="3" l10n="U"
+ oldref="14">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157996" role="code" l10n="U" oldref="15">NOT(LogicalValue)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148766" role="paragraph" l10n="CHG" oldref="16">
+ <emph>LogicalValue</emph> is any value to be complemented.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149884" role="heading" level="3" l10n="U"
+ oldref="17">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150132" role="paragraph" l10n="CHG" oldref="18">
+ <item type="input">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE.</paragraph>
+ </section>
+ <section id="Section2">
<bookmark xml-lang="en-US" branch="index" id="bm_id3148394"><bookmark_value>OR function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ODER" id="bm_id3155620" localize="false"/>
-<paragraph role="heading" id="hd_id3148394" xml-lang="en-US" level="2" l10n="U" oldref="20">OR</paragraph>
-<paragraph role="paragraph" id="par_id3156060" xml-lang="en-US" l10n="U" oldref="61"><ahelp hid="HID_FUNC_ODER">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE.</paragraph>
-<paragraph role="paragraph" id="par_id3148771" xml-lang="en-US" l10n="U" oldref="62">The arguments are either logical expressions themselves (TRUE, 1&lt;5, 2+3=7, B8&lt;10) that return logical values, or arrays (A1:C3) containing logical values.</paragraph>
-<paragraph role="note" id="par_id3153546" xml-lang="en-US" l10n="CHG" oldref="63">When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula.</paragraph>
-<paragraph role="note" id="par_id3149027" xml-lang="en-US" l10n="CHG" oldref="64">If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!</paragraph>
-<paragraph role="heading" id="hd_id3155517" xml-lang="en-US" level="3" l10n="U" oldref="22">Syntax</paragraph>
-<paragraph role="code" id="par_id3150468" xml-lang="en-US" l10n="U" oldref="23">OR(LogicalValue1; LogicalValue2 ...LogicalValue30)</paragraph>
-<paragraph role="paragraph" id="par_id3155819" xml-lang="en-US" l10n="CHG" oldref="24">
-<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> 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.<comment>UFI: first try to fix bugtraq 4905779</comment></paragraph>
-<paragraph role="heading" id="hd_id3153228" xml-lang="en-US" level="3" l10n="U" oldref="25">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154870" xml-lang="en-US" l10n="U" oldref="26">The logical values of entries 12&lt;11; 13&gt;22, and 45=45 are to be checked.</paragraph>
-<paragraph role="paragraph" id="par_id3155371" xml-lang="en-US" l10n="U" oldref="27">
-<item type="input">=OR(12&lt;11;13&gt;22;45=45)</item> returns TRUE.</paragraph>
-<paragraph role="paragraph" id="par_id3158412" xml-lang="en-US" l10n="U" oldref="59">
-<item type="input">=OR(FALSE;TRUE)</item> returns TRUE.</paragraph>
-</section>
-<section id="Section1">
+<paragraph xml-lang="en-US" id="hd_id3148394" role="heading" level="2" l10n="U"
+ oldref="20">OR</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156060" role="paragraph" l10n="U" oldref="61"><ahelp hid="HID_FUNC_ODER">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148771" role="paragraph" l10n="U" oldref="62">The arguments are either logical expressions themselves (TRUE, 1&lt;5, 2+3=7, B8&lt;10) that return logical values, or arrays (A1:C3) containing logical values.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153546" role="note" l10n="CHG" oldref="63">When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149027" role="note" l10n="CHG" oldref="64">If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155517" role="heading" level="3" l10n="U"
+ oldref="22">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150468" role="code" l10n="U" oldref="23">OR(LogicalValue1; LogicalValue2 ...LogicalValue30)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155819" role="paragraph" l10n="CHG" oldref="24">
+ <emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> 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.<comment>UFI: first try to fix bugtraq 4905779</comment></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153228" role="heading" level="3" l10n="U"
+ oldref="25">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154870" role="paragraph" l10n="U" oldref="26">The logical values of entries 12&lt;11; 13&gt;22, and 45=45 are to be checked.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155371" role="paragraph" l10n="U" oldref="27">
+ <item type="input">=OR(12&lt;11;13&gt;22;45=45)</item> returns TRUE.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158412" role="paragraph" l10n="U" oldref="59">
+ <item type="input">=OR(FALSE;TRUE)</item> returns TRUE.</paragraph>
+ </section>
+ <section id="Section1">
<bookmark xml-lang="en-US" branch="index" id="bm_id3156256"><bookmark_value>TRUE function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_WAHR" id="bm_id3148426" localize="false"/>
-<paragraph role="heading" id="hd_id3156256" xml-lang="en-US" level="2" l10n="U" oldref="38">TRUE</paragraph>
-<paragraph role="paragraph" id="par_id3155985" xml-lang="en-US" l10n="U" oldref="39"><ahelp hid="HID_FUNC_WAHR">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE.</paragraph>
-<paragraph role="heading" id="hd_id3153717" xml-lang="en-US" level="3" l10n="U" oldref="40">Syntax</paragraph>
-<paragraph role="code" id="par_id3152590" xml-lang="en-US" l10n="U" oldref="41">TRUE()</paragraph>
-<paragraph role="heading" id="hd_id3147175" xml-lang="en-US" level="3" l10n="U" oldref="42">Example</paragraph>
-<paragraph role="paragraph" id="par_id3146148" xml-lang="en-US" l10n="U" oldref="43">If A=TRUE and B=FALSE the following examples appear:</paragraph>
-<paragraph role="paragraph" id="par_id3083285" xml-lang="en-US" l10n="U" oldref="44">
-<item type="input">=AND(A;B)</item> returns FALSE</paragraph>
-<paragraph role="paragraph" id="par_id3083444" xml-lang="en-US" l10n="U" oldref="45">
-<item type="input">=OR(A;B)</item> returns TRUE</paragraph>
-<paragraph role="paragraph" id="par_id3154314" xml-lang="en-US" l10n="U" oldref="46">
-<item type="input">=NOT(AND(A;B))</item> returns TRUE</paragraph>
-</section>
+<paragraph xml-lang="en-US" id="hd_id3156256" role="heading" level="2" l10n="U"
+ oldref="38">TRUE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155985" role="paragraph" l10n="U" oldref="39"><ahelp hid="HID_FUNC_WAHR">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153717" role="heading" level="3" l10n="U"
+ oldref="40">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152590" role="code" l10n="U" oldref="41">TRUE()</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3147175" role="heading" level="3" l10n="U"
+ oldref="42">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146148" role="paragraph" l10n="U" oldref="43">If A=TRUE and B=FALSE the following examples appear:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3083285" role="paragraph" l10n="U" oldref="44">
+ <item type="input">=AND(A;B)</item> returns FALSE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3083444" role="paragraph" l10n="U" oldref="45">
+ <item type="input">=OR(A;B)</item> returns TRUE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154314" role="paragraph" l10n="U" oldref="46">
+ <item type="input">=NOT(AND(A;B))</item> returns TRUE</paragraph>
+ </section>
</sort>
<section id="relatedtopics">
-<embed href="text/scalc/01/04060100.xhp#drking"/>
-</section>
-</body>
-</helpdocument>
+ <embed href="text/scalc/01/04060100.xhp#drking"/>
+ </section>
+ </body>
+</helpdocument> \ No newline at end of file
diff --git a/helpcontent2/source/text/scalc/01/04060106.xhp b/helpcontent2/source/text/scalc/01/04060106.xhp
index 5e8c9710b6..43ebf2f839 100644
--- a/helpcontent2/source/text/scalc/01/04060106.xhp
+++ b/helpcontent2/source/text/scalc/01/04060106.xhp
@@ -10,8 +10,8 @@
*
* OpenOffice.org - a multi-platform office productivity suite
*
- * $RCSfile: 04060106.xhp,v $
- * $Revision: 1.15.4.2 $
+ * $RCSfile: soffice2xmlhelp.xsl,v $
+ * $Revision: 1.10 $
*
* This file is part of OpenOffice.org.
*
@@ -35,1243 +35,1432 @@
<meta>
-<topic id="textscalc0104060106xml" indexer="include">
-<title id="tit" xml-lang="en-US">Mathematical Functions</title>
-<filename>/text/scalc/01/04060106.xhp</filename>
-</topic>
-</meta>
-<body>
+ <topic id="textscalc0104060106xml" indexer="include">
+ <title xml-lang="en-US" id="tit">Mathematical Functions</title>
+ <filename>/text/scalc/01/04060106.xhp</filename>
+ </topic>
+ </meta>
+ <body>
<bookmark xml-lang="en-US" branch="index" id="bm_id3147124"><bookmark_value>mathematical functions</bookmark_value>
-<bookmark_value>Function Wizard; mathematical</bookmark_value>
-<bookmark_value>functions; mathematical functions</bookmark_value>
-<bookmark_value>trigonometric functions</bookmark_value>
+ <bookmark_value>Function Wizard; mathematical</bookmark_value>
+ <bookmark_value>functions; mathematical functions</bookmark_value>
+ <bookmark_value>trigonometric functions</bookmark_value>
</bookmark><comment>mw added "trigonometric..."</comment>
-<paragraph role="heading" id="hd_id3147124" xml-lang="en-US" level="1" l10n="U" oldref="1">Mathematical Functions</paragraph>
-<paragraph role="paragraph" id="par_id3154943" xml-lang="en-US" l10n="CHG" oldref="2"><variable id="mathematiktext">This category contains the <emph>Mathematical</emph> functions for Calc.
+<paragraph xml-lang="en-US" id="hd_id3147124" role="heading" level="1" l10n="U" oldref="1">Mathematical Functions</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154943" role="paragraph" l10n="CHG" oldref="2"><variable id="mathematiktext">This category contains the <emph>Mathematical</emph> functions for Calc.
</variable> To open the <emph>Function Wizard</emph>, choose <link href="text/scalc/01/04060000.xhp" name="Insert - Function"><emph>Insert - Function</emph></link>.</paragraph>
<sort>
<section id="Section1">
<bookmark xml-lang="en-US" branch="index" id="bm_id3146944"><bookmark_value>ABS function</bookmark_value>
-<bookmark_value>absolute values</bookmark_value>
-<bookmark_value>values;absolute</bookmark_value>
+ <bookmark_value>absolute values</bookmark_value>
+ <bookmark_value>values;absolute</bookmark_value>
</bookmark><comment>mw added two entries</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ABS" id="bm_id3150695" localize="false"/>
-<paragraph role="heading" id="hd_id3146944" xml-lang="en-US" level="2" l10n="U" oldref="33">ABS</paragraph>
-<paragraph role="paragraph" id="par_id3154546" xml-lang="en-US" l10n="U" oldref="34"><ahelp hid="HID_FUNC_ABS">Returns the absolute value of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3154843" xml-lang="en-US" level="3" l10n="U" oldref="35">Syntax</paragraph>
-<paragraph role="code" id="par_id3147475" xml-lang="en-US" l10n="U" oldref="36">ABS(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3148438" xml-lang="en-US" l10n="CHG" oldref="37">
-<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign.</paragraph>
-<paragraph role="heading" id="hd_id3155823" xml-lang="en-US" level="3" l10n="U" oldref="38">Example</paragraph>
-<paragraph role="paragraph" id="par_id3152787" xml-lang="en-US" l10n="CHG" oldref="39">
-<item type="input">=ABS(-56)</item> returns 56.</paragraph>
-<paragraph role="paragraph" id="par_id3148752" xml-lang="en-US" l10n="CHG" oldref="40">
-<item type="input">=ABS(12)</item> returns 12.</paragraph>
-<paragraph role="paragraph" id="par_id320139" xml-lang="en-US" l10n="NEW">
-<item type="input">=ABS(0)</item> returns 0.<comment>see also SIGN</comment></paragraph>
-</section>
-<section id="Section62">
+<paragraph xml-lang="en-US" id="hd_id3146944" role="heading" level="2" l10n="U"
+ oldref="33">ABS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154546" role="paragraph" l10n="U" oldref="34"><ahelp hid="HID_FUNC_ABS">Returns the absolute value of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154843" role="heading" level="3" l10n="U"
+ oldref="35">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147475" role="code" l10n="U" oldref="36">ABS(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148438" role="paragraph" l10n="CHG" oldref="37">
+ <emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155823" role="heading" level="3" l10n="U"
+ oldref="38">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152787" role="paragraph" l10n="CHG" oldref="39">
+ <item type="input">=ABS(-56)</item> returns 56.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148752" role="paragraph" l10n="CHG" oldref="40">
+ <item type="input">=ABS(12)</item> returns 12.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id320139" role="paragraph" l10n="NEW">
+ <item type="input">=ABS(0)</item> returns 0.<comment>see also SIGN</comment></paragraph>
+ </section>
+ <section id="Section62">
<bookmark xml-lang="en-US" branch="index" id="bm_id3150896"><bookmark_value>COUNTBLANK function</bookmark_value>
-<bookmark_value>counting;empty cells</bookmark_value>
-<bookmark_value>empty cells;counting</bookmark_value>
+ <bookmark_value>counting;empty cells</bookmark_value>
+ <bookmark_value>empty cells;counting</bookmark_value>
</bookmark><comment>mw added two entries</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ANZAHLLEEREZELLEN" id="bm_id3149730" localize="false"/>
-<paragraph role="heading" id="hd_id3150896" xml-lang="en-US" level="2" l10n="U" oldref="42">COUNTBLANK</paragraph>
-<paragraph role="paragraph" id="par_id3155260" xml-lang="en-US" l10n="CHG" oldref="43"><ahelp hid="HID_FUNC_ANZAHLLEEREZELLEN">Returns the number of empty cells.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3145144" xml-lang="en-US" level="3" l10n="U" oldref="44">Syntax</paragraph>
-<paragraph role="code" id="par_id3153931" xml-lang="en-US" l10n="U" oldref="45">COUNTBLANK(Range)</paragraph>
-<paragraph role="paragraph" id="par_id3149512" xml-lang="en-US" l10n="CHG" oldref="46"> Returns the number of empty cells in the cell range <emph>Range</emph>.</paragraph>
-<paragraph role="heading" id="hd_id3146139" xml-lang="en-US" level="3" l10n="U" oldref="47">Example</paragraph>
-<paragraph role="paragraph" id="par_id3148586" xml-lang="en-US" l10n="CHG" oldref="48">
-<item type="input">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty.</paragraph><comment>see also COUNTIF</comment>
+<paragraph xml-lang="en-US" id="hd_id3150896" role="heading" level="2" l10n="U"
+ oldref="42">COUNTBLANK</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155260" role="paragraph" l10n="CHG" oldref="43"><ahelp hid="HID_FUNC_ANZAHLLEEREZELLEN">Returns the number of empty cells.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145144" role="heading" level="3" l10n="U"
+ oldref="44">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153931" role="code" l10n="U" oldref="45">COUNTBLANK(Range)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149512" role="paragraph" l10n="CHG" oldref="46"> Returns the number of empty cells in the cell range <emph>Range</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146139" role="heading" level="3" l10n="U"
+ oldref="47">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148586" role="paragraph" l10n="CHG" oldref="48">
+ <item type="input">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty.</paragraph><comment>see also COUNTIF</comment>
</section>
-<section id="Section61">
+ <section id="Section61">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153114"><bookmark_value>ACOS function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARCCOS" id="bm_id3155952" localize="false"/>
-<paragraph role="heading" id="hd_id3153114" xml-lang="en-US" level="2" l10n="U" oldref="50">ACOS</paragraph>
-<paragraph role="paragraph" id="par_id3145163" xml-lang="en-US" l10n="CHG" oldref="51"><ahelp hid="HID_FUNC_ARCCOS">Returns the inverse trigonometric cosine of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3153565" xml-lang="en-US" level="3" l10n="U" oldref="52">Syntax</paragraph>
-<paragraph role="code" id="par_id3150020" xml-lang="en-US" l10n="U" oldref="53">ACOS(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3159134" xml-lang="en-US" l10n="CHG" oldref="54"> This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI.</paragraph>
-<paragraph role="paragraph" id="par_id679647" xml-lang="en-US" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
-<paragraph role="heading" id="hd_id3149882" xml-lang="en-US" level="3" l10n="U" oldref="55">Example</paragraph>
-<paragraph role="paragraph" id="par_id3150128" xml-lang="en-US" l10n="CHG" oldref="56">
-<item type="input">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)</paragraph>
-<paragraph role="paragraph" id="par_id8792382" xml-lang="en-US" l10n="NEW">
-<item type="input">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5.</paragraph><comment>see also COS, SIN, TAN, COT,
+<paragraph xml-lang="en-US" id="hd_id3153114" role="heading" level="2" l10n="U"
+ oldref="50">ACOS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145163" role="paragraph" l10n="CHG" oldref="51"><ahelp hid="HID_FUNC_ARCCOS">Returns the inverse trigonometric cosine of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153565" role="heading" level="3" l10n="U"
+ oldref="52">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150020" role="code" l10n="U" oldref="53">ACOS(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159134" role="paragraph" l10n="CHG" oldref="54"> This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id679647" role="paragraph" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149882" role="heading" level="3" l10n="U"
+ oldref="55">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150128" role="paragraph" l10n="CHG" oldref="56">
+ <item type="input">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8792382" role="paragraph" l10n="NEW">
+ <item type="input">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5.</paragraph><comment>see also COS, SIN, TAN, COT,
ASIN, ATAN, ATAN2, ACOT </comment>
</section>
-<section id="Section60">
+ <section id="Section60">
<bookmark xml-lang="en-US" branch="index" id="bm_id3145355"><bookmark_value>ACOSH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARCOSHYP" id="bm_id3148386" localize="false"/>
-<paragraph role="heading" id="hd_id3145355" xml-lang="en-US" level="2" l10n="U" oldref="60">ACOSH</paragraph>
-<paragraph role="paragraph" id="par_id3157993" xml-lang="en-US" l10n="U" oldref="61"><ahelp hid="HID_FUNC_ARCOSHYP">Returns the inverse hyperbolic cosine of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3145295" xml-lang="en-US" level="3" l10n="U" oldref="62">Syntax</paragraph>
-<paragraph role="code" id="par_id3151017" xml-lang="en-US" l10n="U" oldref="63">ACOSH(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3149000" xml-lang="en-US" l10n="CHG" oldref="64"> This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number. </paragraph>
-<paragraph role="paragraph" id="par_id6393932" xml-lang="en-US" l10n="NEW"> Number must be greater than or equal to 1.</paragraph>
-<paragraph role="heading" id="hd_id3150566" xml-lang="en-US" level="3" l10n="U" oldref="65">Example</paragraph>
-<paragraph role="paragraph" id="par_id3145629" xml-lang="en-US" l10n="CHG" oldref="66">
-<item type="input">=ACOSH(1)</item> returns 0.</paragraph>
-<paragraph role="paragraph" id="par_id951567" xml-lang="en-US" l10n="NEW">
-<item type="input">=ACOSH(COSH(4))</item> returns 4.</paragraph><comment>see also ASINH, ATANH, ACOTH,
+<paragraph xml-lang="en-US" id="hd_id3145355" role="heading" level="2" l10n="U"
+ oldref="60">ACOSH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157993" role="paragraph" l10n="U" oldref="61"><ahelp hid="HID_FUNC_ARCOSHYP">Returns the inverse hyperbolic cosine of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145295" role="heading" level="3" l10n="U"
+ oldref="62">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151017" role="code" l10n="U" oldref="63">ACOSH(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149000" role="paragraph" l10n="CHG" oldref="64"> This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number. </paragraph>
+ <paragraph xml-lang="en-US" id="par_id6393932" role="paragraph" l10n="NEW"> Number must be greater than or equal to 1.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150566" role="heading" level="3" l10n="U"
+ oldref="65">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145629" role="paragraph" l10n="CHG" oldref="66">
+ <item type="input">=ACOSH(1)</item> returns 0.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id951567" role="paragraph" l10n="NEW">
+ <item type="input">=ACOSH(COSH(4))</item> returns 4.</paragraph><comment>see also ASINH, ATANH, ACOTH,
COSH, SINH, TANH, COTH</comment>
</section>
-<section id="Section59">
+ <section id="Section59">
<bookmark xml-lang="en-US" branch="index" id="bm_id3149027"><bookmark_value>ACOT function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARCCOT" id="bm_id3154634" localize="false"/>
-<paragraph role="heading" id="hd_id3149027" xml-lang="en-US" level="2" l10n="U" oldref="70">ACOT</paragraph>
-<paragraph role="paragraph" id="par_id3155818" xml-lang="en-US" l10n="CHG" oldref="71"><ahelp hid="HID_FUNC_ARCCOT">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3153225" xml-lang="en-US" level="3" l10n="U" oldref="72">Syntax</paragraph>
-<paragraph role="code" id="par_id3158419" xml-lang="en-US" l10n="U" oldref="73">ACOT(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3154948" xml-lang="en-US" l10n="CHG" oldref="74"> This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI.</paragraph>
-<paragraph role="paragraph" id="par_id5834528" xml-lang="en-US" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
-<paragraph role="heading" id="hd_id3147538" xml-lang="en-US" level="3" l10n="U" oldref="75">Example</paragraph>
-<paragraph role="paragraph" id="par_id3155375" xml-lang="en-US" l10n="CHG" oldref="76">
-<item type="input">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians).</paragraph>
-<paragraph role="paragraph" id="par_id8589434" xml-lang="en-US" l10n="NEW">
-<item type="input">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1. </paragraph><comment>see also COS, SIN, TAN, COT,
+<paragraph xml-lang="en-US" id="hd_id3149027" role="heading" level="2" l10n="U"
+ oldref="70">ACOT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155818" role="paragraph" l10n="CHG" oldref="71"><ahelp hid="HID_FUNC_ARCCOT">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153225" role="heading" level="3" l10n="U"
+ oldref="72">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158419" role="code" l10n="U" oldref="73">ACOT(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154948" role="paragraph" l10n="CHG" oldref="74"> This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5834528" role="paragraph" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3147538" role="heading" level="3" l10n="U"
+ oldref="75">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155375" role="paragraph" l10n="CHG" oldref="76">
+ <item type="input">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8589434" role="paragraph" l10n="NEW">
+ <item type="input">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1. </paragraph><comment>see also COS, SIN, TAN, COT,
ACOS, ASIN, ATAN, ATAN2 </comment>
</section>
-<section id="Section58">
+ <section id="Section58">
<bookmark xml-lang="en-US" branch="index" id="bm_id3148426"><bookmark_value>ACOTH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARCOTHYP" id="bm_id3149777" localize="false"/>
-<paragraph role="heading" id="hd_id3148426" xml-lang="en-US" level="2" l10n="U" oldref="80">ACOTH</paragraph>
-<paragraph role="paragraph" id="par_id3147478" xml-lang="en-US" l10n="U" oldref="81"><ahelp hid="HID_FUNC_ARCOTHYP">Returns the inverse hyperbolic cotangent of the given number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3152585" xml-lang="en-US" level="3" l10n="U" oldref="82">Syntax</paragraph>
-<paragraph role="code" id="par_id3147172" xml-lang="en-US" l10n="U" oldref="83">ACOTH(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3146155" xml-lang="en-US" l10n="CHG" oldref="84"> This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number. </paragraph>
-<paragraph role="paragraph" id="par_id5818659" xml-lang="en-US" l10n="NEW">An error results if Number is between -1 and 1 inclusive.</paragraph>
-<paragraph role="heading" id="hd_id3083452" xml-lang="en-US" level="3" l10n="U" oldref="85">Example</paragraph>
-<paragraph role="paragraph" id="par_id3150608" xml-lang="en-US" l10n="CHG" oldref="86">
-<item type="input">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226.</paragraph><comment>see also ACOSH, ASINH, ATANH,
+<paragraph xml-lang="en-US" id="hd_id3148426" role="heading" level="2" l10n="U"
+ oldref="80">ACOTH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147478" role="paragraph" l10n="U" oldref="81"><ahelp hid="HID_FUNC_ARCOTHYP">Returns the inverse hyperbolic cotangent of the given number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152585" role="heading" level="3" l10n="U"
+ oldref="82">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147172" role="code" l10n="U" oldref="83">ACOTH(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146155" role="paragraph" l10n="CHG" oldref="84"> This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number. </paragraph>
+ <paragraph xml-lang="en-US" id="par_id5818659" role="paragraph" l10n="NEW">An error results if Number is between -1 and 1 inclusive.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3083452" role="heading" level="3" l10n="U"
+ oldref="85">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150608" role="paragraph" l10n="CHG" oldref="86">
+ <item type="input">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226.</paragraph><comment>see also ACOSH, ASINH, ATANH,
COSH, SINH, TANH, COTH</comment>
</section>
-<section id="Section57">
+ <section id="Section57">
<bookmark xml-lang="en-US" branch="index" id="bm_id3145084"><bookmark_value>ASIN function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARCSIN" id="bm_id3149280" localize="false"/>
-<paragraph role="heading" id="hd_id3145084" xml-lang="en-US" level="2" l10n="U" oldref="90">ASIN</paragraph>
-<paragraph role="paragraph" id="par_id3156296" xml-lang="en-US" l10n="CHG" oldref="91"><ahelp hid="HID_FUNC_ARCSIN">Returns the inverse trigonometric sine of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3149716" xml-lang="en-US" level="3" l10n="U" oldref="92">Syntax</paragraph>
-<paragraph role="code" id="par_id3156305" xml-lang="en-US" l10n="U" oldref="93">ASIN(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3150964" xml-lang="en-US" l10n="CHG" oldref="94"> This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2.</paragraph>
-<paragraph role="paragraph" id="par_id203863" xml-lang="en-US" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
-<paragraph role="heading" id="hd_id3149448" xml-lang="en-US" level="3" l10n="U" oldref="95">Example</paragraph>
-<paragraph role="paragraph" id="par_id3156100" xml-lang="en-US" l10n="CHG" oldref="96">
-<item type="input">=ASIN(0)</item> returns 0.</paragraph>
-<paragraph role="paragraph" id="par_id6853846" xml-lang="en-US" l10n="NEW">
-<item type="input">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians). </paragraph>
-<paragraph role="paragraph" id="par_id8772240" xml-lang="en-US" l10n="NEW">
-<item type="input">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5.</paragraph><comment>see also COS, SIN, TAN, COT,
+<paragraph xml-lang="en-US" id="hd_id3145084" role="heading" level="2" l10n="U"
+ oldref="90">ASIN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156296" role="paragraph" l10n="CHG" oldref="91"><ahelp hid="HID_FUNC_ARCSIN">Returns the inverse trigonometric sine of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149716" role="heading" level="3" l10n="U"
+ oldref="92">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156305" role="code" l10n="U" oldref="93">ASIN(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150964" role="paragraph" l10n="CHG" oldref="94"> This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id203863" role="paragraph" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149448" role="heading" level="3" l10n="U"
+ oldref="95">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156100" role="paragraph" l10n="CHG" oldref="96">
+ <item type="input">=ASIN(0)</item> returns 0.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6853846" role="paragraph" l10n="NEW">
+ <item type="input">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians). </paragraph>
+ <paragraph xml-lang="en-US" id="par_id8772240" role="paragraph" l10n="NEW">
+ <item type="input">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5.</paragraph><comment>see also COS, SIN, TAN, COT,
ACOS, ATAN, ATAN2, ACOT </comment>
</section>
-<section id="Section56">
+ <section id="Section56">
<bookmark xml-lang="en-US" branch="index" id="bm_id3151266"><bookmark_value>ASINH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARSINHYP" id="bm_id3145206" localize="false"/>
-<paragraph role="heading" id="hd_id3151266" xml-lang="en-US" level="2" l10n="U" oldref="100">ASINH</paragraph>
-<paragraph role="paragraph" id="par_id3147077" xml-lang="en-US" l10n="U" oldref="101"><ahelp hid="HID_FUNC_ARSINHYP">Returns the inverse hyperbolic sine of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3150763" xml-lang="en-US" level="3" l10n="U" oldref="102">Syntax</paragraph>
-<paragraph role="code" id="par_id3150882" xml-lang="en-US" l10n="U" oldref="103">ASINH(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3147621" xml-lang="en-US" l10n="CHG" oldref="104"> This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number. </paragraph>
-<paragraph role="heading" id="hd_id3153212" xml-lang="en-US" level="3" l10n="U" oldref="105">Example</paragraph>
-<paragraph role="paragraph" id="par_id3156120" xml-lang="en-US" l10n="CHG" oldref="106">
-<item type="input">=ASINH(-90)</item> returns approximately -5.1929877.</paragraph>
-<paragraph role="paragraph" id="par_id4808496" xml-lang="en-US" l10n="NEW">
-<item type="input">=ASINH(SINH(4))</item> returns 4.</paragraph><comment>see also ACOSH, ATANH, ACOTH,
+<paragraph xml-lang="en-US" id="hd_id3151266" role="heading" level="2" l10n="U"
+ oldref="100">ASINH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147077" role="paragraph" l10n="U" oldref="101"><ahelp hid="HID_FUNC_ARSINHYP">Returns the inverse hyperbolic sine of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150763" role="heading" level="3" l10n="U"
+ oldref="102">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150882" role="code" l10n="U" oldref="103">ASINH(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147621" role="paragraph" l10n="CHG" oldref="104"> This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number. </paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153212" role="heading" level="3" l10n="U"
+ oldref="105">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156120" role="paragraph" l10n="CHG" oldref="106">
+ <item type="input">=ASINH(-90)</item> returns approximately -5.1929877.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id4808496" role="paragraph" l10n="NEW">
+ <item type="input">=ASINH(SINH(4))</item> returns 4.</paragraph><comment>see also ACOSH, ATANH, ACOTH,
COSH, SINH, TANH, COTH</comment>
</section>
-<section id="Section55">
+ <section id="Section55">
<bookmark xml-lang="en-US" branch="index" id="bm_id3155996"><bookmark_value>ATAN function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARCTAN" id="bm_id3154743" localize="false"/>
-<paragraph role="heading" id="hd_id3155996" xml-lang="en-US" level="2" l10n="U" oldref="110">ATAN</paragraph>
-<paragraph role="paragraph" id="par_id3149985" xml-lang="en-US" l10n="CHG" oldref="111"><ahelp hid="HID_FUNC_ARCTAN">Returns the inverse trigonometric tangent of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3151294" xml-lang="en-US" level="3" l10n="U" oldref="112">Syntax</paragraph>
-<paragraph role="code" id="par_id3150261" xml-lang="en-US" l10n="U" oldref="113">ATAN(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3147267" xml-lang="en-US" l10n="CHG" oldref="114"> This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2.</paragraph>
-<paragraph role="paragraph" id="par_id6293527" xml-lang="en-US" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
-<paragraph role="heading" id="hd_id3154054" xml-lang="en-US" level="3" l10n="U" oldref="115">Example</paragraph>
-<paragraph role="paragraph" id="par_id3143229" xml-lang="en-US" l10n="CHG" oldref="116">
-<item type="input">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians).</paragraph>
-<paragraph role="paragraph" id="par_id8746299" xml-lang="en-US" l10n="NEW">
-<item type="input">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1.</paragraph><comment>see also COS, SIN, TAN, COT,
+<paragraph xml-lang="en-US" id="hd_id3155996" role="heading" level="2" l10n="U"
+ oldref="110">ATAN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149985" role="paragraph" l10n="CHG" oldref="111"><ahelp hid="HID_FUNC_ARCTAN">Returns the inverse trigonometric tangent of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3151294" role="heading" level="3" l10n="U"
+ oldref="112">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150261" role="code" l10n="U" oldref="113">ATAN(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147267" role="paragraph" l10n="CHG" oldref="114"> This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6293527" role="paragraph" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154054" role="heading" level="3" l10n="U"
+ oldref="115">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143229" role="paragraph" l10n="CHG" oldref="116">
+ <item type="input">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8746299" role="paragraph" l10n="NEW">
+ <item type="input">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1.</paragraph><comment>see also COS, SIN, TAN, COT,
ACOS, ASIN, ATAN2, ACOT </comment>
</section>
-<section id="Section54">
+ <section id="Section54">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153983"><bookmark_value>ATAN2 function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARCTAN2" id="bm_id3159180" localize="false"/>
-<paragraph role="heading" id="hd_id3153983" xml-lang="en-US" level="2" l10n="U" oldref="120">ATAN2</paragraph>
-<paragraph role="paragraph" id="par_id3154297" xml-lang="en-US" l10n="CHG" oldref="121"><ahelp hid="HID_FUNC_ARCTAN2">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3149758" xml-lang="en-US" level="3" l10n="U" oldref="122">Syntax</paragraph>
-<paragraph role="code" id="par_id3156013" xml-lang="en-US" l10n="CHG" oldref="123">ATAN2(NumberX; NumberY)</paragraph>
-<paragraph role="paragraph" id="par_id3151168" xml-lang="en-US" l10n="CHG" oldref="124">
-<emph>NumberX</emph> is the value of the x coordinate.</paragraph>
-<paragraph role="paragraph" id="par_id3152798" xml-lang="en-US" l10n="CHG" oldref="125">
-<emph>NumberY</emph> is the value of the y coordinate.</paragraph>
-<paragraph role="paragraph" id="par_id5036164" xml-lang="en-US" l10n="NEW">ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI.</paragraph>
-<paragraph role="paragraph" id="par_id3001800" xml-lang="en-US" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
-<paragraph role="heading" id="hd_id3145663" xml-lang="en-US" level="3" l10n="U" oldref="126">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154692" xml-lang="en-US" l10n="CHG" oldref="127">
-<item type="input">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians).</paragraph>
-<paragraph role="paragraph" id="par_id1477095" xml-lang="en-US" l10n="NEW">
-<item type="input">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1.</paragraph><comment>see also COS, SIN, TAN, COT,
+<paragraph xml-lang="en-US" id="hd_id3153983" role="heading" level="2" l10n="U"
+ oldref="120">ATAN2</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154297" role="paragraph" l10n="CHG" oldref="121"><ahelp hid="HID_FUNC_ARCTAN2">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149758" role="heading" level="3" l10n="U"
+ oldref="122">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156013" role="code" l10n="CHG" oldref="123">ATAN2(NumberX; NumberY)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151168" role="paragraph" l10n="CHG" oldref="124">
+ <emph>NumberX</emph> is the value of the x coordinate.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152798" role="paragraph" l10n="CHG" oldref="125">
+ <emph>NumberY</emph> is the value of the y coordinate.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5036164" role="paragraph" l10n="NEW">ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3001800" role="paragraph" l10n="NEW">To return the angle in degrees, use the DEGREES function.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145663" role="heading" level="3" l10n="U"
+ oldref="126">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154692" role="paragraph" l10n="CHG" oldref="127">
+ <item type="input">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1477095" role="paragraph" l10n="NEW">
+ <item type="input">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1.</paragraph><comment>see also COS, SIN, TAN, COT,
ACOS, ASIN, ATAN, ACOT </comment>
</section>
-<section id="Section53">
+ <section id="Section53">
<bookmark xml-lang="en-US" branch="index" id="bm_id3155398"><bookmark_value>ATANH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ARTANHYP" id="bm_id3154939" localize="false"/>
-<paragraph role="heading" id="hd_id3155398" xml-lang="en-US" level="2" l10n="U" oldref="130">ATANH</paragraph>
-<paragraph role="paragraph" id="par_id3148829" xml-lang="en-US" l10n="U" oldref="131"><ahelp hid="HID_FUNC_ARTANHYP">Returns the inverse hyperbolic tangent of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3146997" xml-lang="en-US" level="3" l10n="U" oldref="132">Syntax</paragraph>
-<paragraph role="code" id="par_id3149912" xml-lang="en-US" l10n="U" oldref="133">ATANH(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3150521" xml-lang="en-US" l10n="CHG" oldref="134"> This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number. </paragraph>
-<paragraph role="paragraph" id="par_id9357280" xml-lang="en-US" l10n="NEW"> Number must obey the condition -1 &lt; number &lt; 1.</paragraph>
-<paragraph role="heading" id="hd_id3148450" xml-lang="en-US" level="3" l10n="U" oldref="135">Example</paragraph>
-<paragraph role="paragraph" id="par_id3145419" xml-lang="en-US" l10n="CHG" oldref="136">
-<item type="input">=ATANH(0)</item> returns 0.</paragraph><comment>see also ACOSH, ASINH, ACOTH,
+<paragraph xml-lang="en-US" id="hd_id3155398" role="heading" level="2" l10n="U"
+ oldref="130">ATANH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148829" role="paragraph" l10n="U" oldref="131"><ahelp hid="HID_FUNC_ARTANHYP">Returns the inverse hyperbolic tangent of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146997" role="heading" level="3" l10n="U"
+ oldref="132">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149912" role="code" l10n="U" oldref="133">ATANH(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150521" role="paragraph" l10n="CHG" oldref="134"> This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number. </paragraph>
+ <paragraph xml-lang="en-US" id="par_id9357280" role="paragraph" l10n="NEW"> Number must obey the condition -1 &lt; number &lt; 1.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3148450" role="heading" level="3" l10n="U"
+ oldref="135">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145419" role="paragraph" l10n="CHG" oldref="136">
+ <item type="input">=ATANH(0)</item> returns 0.</paragraph><comment>see also ACOSH, ASINH, ACOTH,
COSH, SINH, TANH, COTH</comment>
</section>
-<section id="Section52">
+ <section id="Section52">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153062"><bookmark_value>COS function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_COS" id="bm_id3158408" localize="false"/>
-<paragraph role="heading" id="hd_id3153062" xml-lang="en-US" level="2" l10n="U" oldref="149">COS</paragraph>
-<paragraph role="paragraph" id="par_id3148803" xml-lang="en-US" l10n="CHG" oldref="150"><ahelp hid="HID_FUNC_COS">Returns the cosine of the given angle (in radians).</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3150779" xml-lang="en-US" level="3" l10n="U" oldref="151">Syntax</paragraph>
-<paragraph role="code" id="par_id3154213" xml-lang="en-US" l10n="U" oldref="152">COS(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3154285" xml-lang="en-US" l10n="CHG" oldref="153"> Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians.</paragraph>
-<paragraph role="paragraph" id="par_id831019" xml-lang="en-US" l10n="NEW">To return the cosine of an angle in degrees, use the RADIANS function.</paragraph>
-<paragraph role="heading" id="hd_id3153579" xml-lang="en-US" level="3" l10n="U" oldref="154">Examples</paragraph>
-<paragraph role="paragraph" id="par_id3147240" xml-lang="en-US" l10n="U" oldref="155">
-<item type="input">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians.</paragraph>
-<paragraph role="paragraph" id="par_id3147516" xml-lang="en-US" l10n="U" oldref="156">
-<item type="input">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees.</paragraph><comment>see also SIN, TAN, COT,
+<paragraph xml-lang="en-US" id="hd_id3153062" role="heading" level="2" l10n="U"
+ oldref="149">COS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148803" role="paragraph" l10n="CHG" oldref="150"><ahelp hid="HID_FUNC_COS">Returns the cosine of the given angle (in radians).</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150779" role="heading" level="3" l10n="U"
+ oldref="151">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154213" role="code" l10n="U" oldref="152">COS(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154285" role="paragraph" l10n="CHG" oldref="153"> Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id831019" role="paragraph" l10n="NEW">To return the cosine of an angle in degrees, use the RADIANS function.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153579" role="heading" level="3" l10n="U"
+ oldref="154">Examples</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147240" role="paragraph" l10n="U" oldref="155">
+ <item type="input">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147516" role="paragraph" l10n="U" oldref="156">
+ <item type="input">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees.</paragraph><comment>see also SIN, TAN, COT,
ACOS, ASIN, ATAN, ATAN2, ACOT </comment>
</section>
-<section id="Section51">
+ <section id="Section51">
<bookmark xml-lang="en-US" branch="index" id="bm_id3154277"><bookmark_value>COSH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_COSHYP" id="bm_id3149158" localize="false"/>
-<paragraph role="heading" id="hd_id3154277" xml-lang="en-US" level="2" l10n="U" oldref="159">COSH</paragraph>
-<paragraph role="paragraph" id="par_id3146946" xml-lang="en-US" l10n="U" oldref="160"><ahelp hid="HID_FUNC_COSHYP">Returns the hyperbolic cosine of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3149792" xml-lang="en-US" level="3" l10n="U" oldref="161">Syntax</paragraph>
-<paragraph role="code" id="par_id3166440" xml-lang="en-US" l10n="U" oldref="162">COSH(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3150710" xml-lang="en-US" l10n="CHG" oldref="163">Returns the hyperbolic cosine of <emph>Number</emph>.</paragraph>
-<paragraph role="heading" id="hd_id3153234" xml-lang="en-US" level="3" l10n="U" oldref="164">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154099" xml-lang="en-US" l10n="CHG" oldref="165">
-<item type="input">=COSH(0)</item> returns 1, the hyperbolic cosine of 0.</paragraph><comment>see also SINH, TANH, COTH,
+<paragraph xml-lang="en-US" id="hd_id3154277" role="heading" level="2" l10n="U"
+ oldref="159">COSH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146946" role="paragraph" l10n="U" oldref="160"><ahelp hid="HID_FUNC_COSHYP">Returns the hyperbolic cosine of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149792" role="heading" level="3" l10n="U"
+ oldref="161">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3166440" role="code" l10n="U" oldref="162">COSH(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150710" role="paragraph" l10n="CHG" oldref="163">Returns the hyperbolic cosine of <emph>Number</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153234" role="heading" level="3" l10n="U"
+ oldref="164">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154099" role="paragraph" l10n="CHG" oldref="165">
+ <item type="input">=COSH(0)</item> returns 1, the hyperbolic cosine of 0.</paragraph><comment>see also SINH, TANH, COTH,
ACOSH, ASINH, ATANH, ACOTH, </comment>
</section>
-<section id="Section50">
+ <section id="Section50">
<bookmark xml-lang="en-US" branch="index" id="bm_id3152888"><bookmark_value>COT function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_COT" id="bm_id3153392" localize="false"/>
-<paragraph role="heading" id="hd_id3152888" xml-lang="en-US" level="2" l10n="U" oldref="169">COT</paragraph>
-<paragraph role="paragraph" id="par_id3153679" xml-lang="en-US" l10n="CHG" oldref="170"><ahelp hid="HID_FUNC_COT">Returns the cotangent of the given angle (in radians).</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3152943" xml-lang="en-US" level="3" l10n="U" oldref="171">Syntax</paragraph>
-<paragraph role="code" id="par_id3154856" xml-lang="en-US" l10n="U" oldref="172">COT(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3149969" xml-lang="en-US" l10n="CHG" oldref="173"> Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians.</paragraph>
-<paragraph role="paragraph" id="par_id3444624" xml-lang="en-US" l10n="NEW">To return the cotangent of an angle in degrees, use the RADIANS function.</paragraph>
-<paragraph role="paragraph" id="par_id6814477" xml-lang="en-US" l10n="NEW">The cotangent of an angle is equivalent to 1 divided by the tangent of that angle.</paragraph>
-<paragraph role="heading" id="hd_id3149800" xml-lang="en-US" level="3" l10n="U" oldref="174">Examples:</paragraph>
-<paragraph role="paragraph" id="par_id3148616" xml-lang="en-US" l10n="CHG" oldref="175">
-<item type="input">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians.</paragraph>
-<paragraph role="paragraph" id="par_id3148986" xml-lang="en-US" l10n="CHG" oldref="176">
-<item type="input">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees.</paragraph><comment>see also COS, SIN, TAN,
+<paragraph xml-lang="en-US" id="hd_id3152888" role="heading" level="2" l10n="U"
+ oldref="169">COT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153679" role="paragraph" l10n="CHG" oldref="170"><ahelp hid="HID_FUNC_COT">Returns the cotangent of the given angle (in radians).</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152943" role="heading" level="3" l10n="U"
+ oldref="171">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154856" role="code" l10n="U" oldref="172">COT(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149969" role="paragraph" l10n="CHG" oldref="173"> Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3444624" role="paragraph" l10n="NEW">To return the cotangent of an angle in degrees, use the RADIANS function.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6814477" role="paragraph" l10n="NEW">The cotangent of an angle is equivalent to 1 divided by the tangent of that angle.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149800" role="heading" level="3" l10n="U"
+ oldref="174">Examples:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148616" role="paragraph" l10n="CHG" oldref="175">
+ <item type="input">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148986" role="paragraph" l10n="CHG" oldref="176">
+ <item type="input">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees.</paragraph><comment>see also COS, SIN, TAN,
ACOS, ASIN, ATAN, ATAN2, ACOT </comment>
</section>
-<section id="Section49">
+ <section id="Section49">
<bookmark xml-lang="en-US" branch="index" id="bm_id3154337"><bookmark_value>COTH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_COTHYP" id="bm_id3148650" localize="false"/>
-<paragraph role="heading" id="hd_id3154337" xml-lang="en-US" level="2" l10n="U" oldref="178">COTH</paragraph>
-<paragraph role="paragraph" id="par_id3149419" xml-lang="en-US" l10n="U" oldref="179"><ahelp hid="HID_FUNC_COTHYP">Returns the hyperbolic cotangent of a given number (angle).</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3149242" xml-lang="en-US" level="3" l10n="U" oldref="180">Syntax</paragraph>
-<paragraph role="code" id="par_id3143280" xml-lang="en-US" l10n="U" oldref="181">COTH(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3154799" xml-lang="en-US" l10n="CHG" oldref="182"> Returns the hyperbolic cotangent of <emph>Number</emph>.</paragraph>
-<paragraph role="heading" id="hd_id3155422" xml-lang="en-US" level="3" l10n="U" oldref="183">Example</paragraph>
-<paragraph role="paragraph" id="par_id3144754" xml-lang="en-US" l10n="CHG" oldref="184">
-<item type="input">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130.</paragraph><comment>see also COSH, SINH, TANH,
+<paragraph xml-lang="en-US" id="hd_id3154337" role="heading" level="2" l10n="U"
+ oldref="178">COTH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149419" role="paragraph" l10n="U" oldref="179"><ahelp hid="HID_FUNC_COTHYP">Returns the hyperbolic cotangent of a given number (angle).</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149242" role="heading" level="3" l10n="U"
+ oldref="180">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143280" role="code" l10n="U" oldref="181">COTH(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154799" role="paragraph" l10n="CHG" oldref="182"> Returns the hyperbolic cotangent of <emph>Number</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155422" role="heading" level="3" l10n="U"
+ oldref="183">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144754" role="paragraph" l10n="CHG" oldref="184">
+ <item type="input">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130.</paragraph><comment>see also COSH, SINH, TANH,
ACOSH, ASINH, ATANH, ACOTH, </comment>
</section>
-<section id="Section48">
+ <section id="Section48">
<bookmark xml-lang="en-US" branch="index" id="bm_id3145314"><bookmark_value>DEGREES function</bookmark_value>
-<bookmark_value>converting;radians, into degrees</bookmark_value>
+ <bookmark_value>converting;radians, into degrees</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_DEG" id="bm_id3153946" localize="false"/>
-<paragraph role="heading" id="hd_id3145314" xml-lang="en-US" level="2" l10n="U" oldref="188">DEGREES</paragraph>
-<paragraph role="paragraph" id="par_id3149939" xml-lang="en-US" l10n="U" oldref="189"><ahelp hid="HID_FUNC_DEG">Converts radians into degrees.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3150623" xml-lang="en-US" level="3" l10n="U" oldref="190">Syntax</paragraph>
-<paragraph role="code" id="par_id3145600" xml-lang="en-US" l10n="CHG" oldref="191">DEGREES(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3149484" xml-lang="en-US" l10n="CHG" oldref="192">
-<emph>Number</emph> is the angle in radians to be converted to degrees.</paragraph>
-<paragraph role="heading" id="hd_id3669545" xml-lang="en-US" level="3" l10n="NEW">Example</paragraph>
-<paragraph role="paragraph" id="par_id3459578" xml-lang="en-US" l10n="NEW">
-<item type="input">=DEGREES(PI())</item> returns 180 degrees.</paragraph><comment>see also RADIANS</comment>
+<paragraph xml-lang="en-US" id="hd_id3145314" role="heading" level="2" l10n="U"
+ oldref="188">DEGREES</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149939" role="paragraph" l10n="U" oldref="189"><ahelp hid="HID_FUNC_DEG">Converts radians into degrees.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150623" role="heading" level="3" l10n="U"
+ oldref="190">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145600" role="code" l10n="CHG" oldref="191">DEGREES(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149484" role="paragraph" l10n="CHG" oldref="192">
+ <emph>Number</emph> is the angle in radians to be converted to degrees.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3669545" role="heading" level="3" l10n="NEW">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3459578" role="paragraph" l10n="NEW">
+ <item type="input">=DEGREES(PI())</item> returns 180 degrees.</paragraph><comment>see also RADIANS</comment>
</section>
-<section id="Section47">
+ <section id="Section47">
<bookmark xml-lang="en-US" branch="index" id="bm_id3148698"><bookmark_value>EXP function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_EXP" id="bm_id3154625" localize="false"/>
-<paragraph role="heading" id="hd_id3148698" xml-lang="en-US" level="2" l10n="U" oldref="198">EXP</paragraph>
-<paragraph role="paragraph" id="par_id3150592" xml-lang="en-US" l10n="CHG" oldref="199"><ahelp hid="HID_FUNC_EXP">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904.</paragraph>
-<paragraph role="heading" id="hd_id3150351" xml-lang="en-US" level="3" l10n="U" oldref="200">Syntax</paragraph>
-<paragraph role="code" id="par_id3146786" xml-lang="en-US" l10n="U" oldref="201">EXP(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3155608" xml-lang="en-US" l10n="U" oldref="202">
-<emph>Number</emph> is the power to which e is to be raised.</paragraph>
-<paragraph role="heading" id="hd_id3154418" xml-lang="en-US" level="3" l10n="U" oldref="203">Example</paragraph>
-<paragraph role="paragraph" id="par_id3156340" xml-lang="en-US" l10n="CHG" oldref="204">
-<item type="input">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy.</paragraph><comment>see also POWER, LN, </comment>
+<paragraph xml-lang="en-US" id="hd_id3148698" role="heading" level="2" l10n="U"
+ oldref="198">EXP</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150592" role="paragraph" l10n="CHG" oldref="199"><ahelp hid="HID_FUNC_EXP">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150351" role="heading" level="3" l10n="U"
+ oldref="200">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146786" role="code" l10n="U" oldref="201">EXP(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155608" role="paragraph" l10n="U" oldref="202">
+ <emph>Number</emph> is the power to which e is to be raised.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154418" role="heading" level="3" l10n="U"
+ oldref="203">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156340" role="paragraph" l10n="CHG" oldref="204">
+ <item type="input">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy.</paragraph><comment>see also POWER, LN, </comment>
</section>
-<section id="Section46">
+ <section id="Section46">
<bookmark xml-lang="en-US" branch="index" id="bm_id3145781"><bookmark_value>FACT function</bookmark_value>
-<bookmark_value>factorials;numbers</bookmark_value>
+ <bookmark_value>factorials;numbers</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_FAKULTAET" id="bm_id3153886" localize="false"/>
-<paragraph role="heading" id="hd_id3145781" xml-lang="en-US" level="2" l10n="U" oldref="208">FACT</paragraph>
-<paragraph role="paragraph" id="par_id3151109" xml-lang="en-US" l10n="CHG" oldref="209"><ahelp hid="HID_FUNC_FAKULTAET">Returns the factorial of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3146902" xml-lang="en-US" level="3" l10n="U" oldref="210">Syntax</paragraph>
-<paragraph role="code" id="par_id3154661" xml-lang="en-US" l10n="U" oldref="211">FACT(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3152952" xml-lang="en-US" l10n="CHG" oldref="212"> Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number.</paragraph>
-<paragraph role="paragraph" id="par_id3834650" xml-lang="en-US" l10n="NEW">=FACT(0) returns 1 by definition. </paragraph>
-<paragraph role="paragraph" id="par_id8429517" xml-lang="en-US" l10n="NEW">The factorial of a negative number returns the "invalid argument" error.</paragraph>
-<paragraph role="heading" id="hd_id3154569" xml-lang="en-US" level="3" l10n="U" oldref="213">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154476" xml-lang="en-US" l10n="CHG" oldref="216">
-<item type="input">=FACT(3)</item> returns 6.</paragraph>
-<paragraph role="paragraph" id="par_id3147525" xml-lang="en-US" l10n="CHG" oldref="214">
-<item type="input">=FACT(0)</item> returns 1.</paragraph><comment>see also FACTDOUBLE, MULTINOMIAL, PRODUCT </comment>
+<paragraph xml-lang="en-US" id="hd_id3145781" role="heading" level="2" l10n="U"
+ oldref="208">FACT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151109" role="paragraph" l10n="CHG" oldref="209"><ahelp hid="HID_FUNC_FAKULTAET">Returns the factorial of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146902" role="heading" level="3" l10n="U"
+ oldref="210">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154661" role="code" l10n="U" oldref="211">FACT(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152952" role="paragraph" l10n="CHG" oldref="212"> Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3834650" role="paragraph" l10n="NEW">=FACT(0) returns 1 by definition. </paragraph>
+ <paragraph xml-lang="en-US" id="par_id8429517" role="paragraph" l10n="NEW">The factorial of a negative number returns the "invalid argument" error.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154569" role="heading" level="3" l10n="U"
+ oldref="213">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154476" role="paragraph" l10n="CHG" oldref="216">
+ <item type="input">=FACT(3)</item> returns 6.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147525" role="paragraph" l10n="CHG" oldref="214">
+ <item type="input">=FACT(0)</item> returns 1.</paragraph><comment>see also FACTDOUBLE, MULTINOMIAL, PRODUCT </comment>
</section>
-<section id="Section45">
+ <section id="Section45">
<bookmark xml-lang="en-US" branch="index" id="bm_id3159084"><bookmark_value>INT function</bookmark_value>
-<bookmark_value>numbers;rounding down to next integer</bookmark_value>
-<bookmark_value>rounding;down to next integer</bookmark_value>
+ <bookmark_value>numbers;rounding down to next integer</bookmark_value>
+ <bookmark_value>rounding;down to next integer</bookmark_value>
</bookmark><comment>mw added two entries</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_GANZZAHL" id="bm_id3151311" localize="false"/>
-<paragraph role="heading" id="hd_id3159084" xml-lang="en-US" level="2" l10n="U" oldref="218">INT</paragraph>
-<paragraph role="paragraph" id="par_id3158441" xml-lang="en-US" l10n="U" oldref="219"><ahelp hid="HID_FUNC_GANZZAHL">Rounds a number down to the nearest integer.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3146132" xml-lang="en-US" level="3" l10n="U" oldref="220">Syntax</paragraph>
-<paragraph role="code" id="par_id3156146" xml-lang="en-US" l10n="U" oldref="221">INT(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3154117" xml-lang="en-US" l10n="CHG" oldref="222">Returns <emph>Number</emph> rounded down to the nearest integer.</paragraph>
-<paragraph role="paragraph" id="par_id153508" xml-lang="en-US" l10n="NEW">Negative numbers round down to the integer below.</paragraph>
-<paragraph role="heading" id="hd_id3155118" xml-lang="en-US" level="3" l10n="U" oldref="223">Example</paragraph>
-<paragraph role="paragraph" id="par_id3156267" xml-lang="en-US" l10n="CHG" oldref="224">
-<item type="input">=INT(5.7)</item> returns 5.</paragraph>
-<paragraph role="paragraph" id="par_id3147323" xml-lang="en-US" l10n="CHG" oldref="225">
-<item type="input">=INT(-1.3)</item> returns -2.</paragraph><comment>see also TRUNC, ROUND, ROUNDDOWN, ROUNDUP,
+<paragraph xml-lang="en-US" id="hd_id3159084" role="heading" level="2" l10n="U"
+ oldref="218">INT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158441" role="paragraph" l10n="U" oldref="219"><ahelp hid="HID_FUNC_GANZZAHL">Rounds a number down to the nearest integer.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146132" role="heading" level="3" l10n="U"
+ oldref="220">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156146" role="code" l10n="U" oldref="221">INT(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154117" role="paragraph" l10n="CHG" oldref="222">Returns <emph>Number</emph> rounded down to the nearest integer.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id153508" role="paragraph" l10n="NEW">Negative numbers round down to the integer below.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155118" role="heading" level="3" l10n="U"
+ oldref="223">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156267" role="paragraph" l10n="CHG" oldref="224">
+ <item type="input">=INT(5.7)</item> returns 5.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147323" role="paragraph" l10n="CHG" oldref="225">
+ <item type="input">=INT(-1.3)</item> returns -2.</paragraph><comment>see also TRUNC, ROUND, ROUNDDOWN, ROUNDUP,
CEILING, FLOOR, EVEN, ODD, MROUND, </comment>
</section>
-<section id="Section44">
+ <section id="Section44">
<bookmark xml-lang="en-US" branch="index" id="bm_id3150938"><bookmark_value>EVEN function</bookmark_value>
-<bookmark_value>numbers;rounding up/down to even integers</bookmark_value>
-<bookmark_value>rounding;up/down to even integers</bookmark_value>
+ <bookmark_value>numbers;rounding up/down to even integers</bookmark_value>
+ <bookmark_value>rounding;up/down to even integers</bookmark_value>
</bookmark><comment>mw added two entries</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_GERADE" id="bm_id3150949" localize="false"/>
-<paragraph role="heading" id="hd_id3150938" xml-lang="en-US" level="2" l10n="U" oldref="227">EVEN</paragraph>
-<paragraph role="paragraph" id="par_id3149988" xml-lang="en-US" l10n="CHG" oldref="228"><ahelp hid="HID_FUNC_GERADE">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3148401" xml-lang="en-US" level="3" l10n="U" oldref="229">Syntax</paragraph>
-<paragraph role="code" id="par_id3150830" xml-lang="en-US" l10n="U" oldref="230">EVEN(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3153350" xml-lang="en-US" l10n="CHG" oldref="231"> Returns <emph>Number</emph> rounded to the next even integer up, away from zero. </paragraph>
-<paragraph role="heading" id="hd_id3155508" xml-lang="en-US" level="3" l10n="U" oldref="232">Examples</paragraph>
-<paragraph role="paragraph" id="par_id3154361" xml-lang="en-US" l10n="CHG" oldref="233">
-<item type="input">=EVEN(2.3)</item> returns 4.</paragraph>
-<paragraph role="paragraph" id="par_id8477736" xml-lang="en-US" l10n="NEW">
-<item type="input">=EVEN(2)</item> returns 2.</paragraph>
-<paragraph role="paragraph" id="par_id159611" xml-lang="en-US" l10n="NEW">
-<item type="input">=EVEN(0)</item> returns 0.</paragraph>
-<paragraph role="paragraph" id="par_id6097598" xml-lang="en-US" l10n="NEW">
-<item type="input">=EVEN(-0.5)</item> returns -2.</paragraph><comment>see also CEILING, FLOOR, ODD, MROUND,
+<paragraph xml-lang="en-US" id="hd_id3150938" role="heading" level="2" l10n="U"
+ oldref="227">EVEN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149988" role="paragraph" l10n="CHG" oldref="228"><ahelp hid="HID_FUNC_GERADE">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3148401" role="heading" level="3" l10n="U"
+ oldref="229">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150830" role="code" l10n="U" oldref="230">EVEN(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153350" role="paragraph" l10n="CHG" oldref="231"> Returns <emph>Number</emph> rounded to the next even integer up, away from zero. </paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155508" role="heading" level="3" l10n="U"
+ oldref="232">Examples</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154361" role="paragraph" l10n="CHG" oldref="233">
+ <item type="input">=EVEN(2.3)</item> returns 4.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8477736" role="paragraph" l10n="NEW">
+ <item type="input">=EVEN(2)</item> returns 2.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id159611" role="paragraph" l10n="NEW">
+ <item type="input">=EVEN(0)</item> returns 0.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6097598" role="paragraph" l10n="NEW">
+ <item type="input">=EVEN(-0.5)</item> returns -2.</paragraph><comment>see also CEILING, FLOOR, ODD, MROUND,
INT, TRUNC, ROUND, ROUNDDOWN, ROUNDUP</comment>
</section>
-<section id="Section43">
+ <section id="Section43">
<bookmark xml-lang="en-US" branch="index" id="bm_id3147356"><bookmark_value>GCD function</bookmark_value>
-<bookmark_value>greatest common divisor</bookmark_value>
+ <bookmark_value>greatest common divisor</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_GGT" id="bm_id3149737" localize="false"/>
-<paragraph role="heading" id="hd_id3147356" xml-lang="en-US" level="2" l10n="U" oldref="237">GCD</paragraph>
-<paragraph role="paragraph" id="par_id3152465" xml-lang="en-US" l10n="U" oldref="238"><ahelp hid="HID_FUNC_GGT">Returns the greatest common divisor of two or more integers.</ahelp></paragraph>
-<paragraph role="paragraph" id="par_id2769249" xml-lang="en-US" l10n="NEW">The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers.</paragraph>
-<paragraph role="heading" id="hd_id3150643" xml-lang="en-US" level="3" l10n="U" oldref="239">Syntax</paragraph>
-<paragraph role="code" id="par_id3154524" xml-lang="en-US" l10n="U" oldref="240">GCD(Integer1; Integer2; ...; Integer30)</paragraph>
-<paragraph role="paragraph" id="par_id3149340" xml-lang="en-US" l10n="U" oldref="241">
-<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated.</paragraph>
-<paragraph role="heading" id="hd_id3147317" xml-lang="en-US" level="3" l10n="U" oldref="242">Example</paragraph>
-<paragraph role="paragraph" id="par_id3151285" xml-lang="en-US" l10n="CHG" oldref="243">
-<item type="input">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder.</paragraph>
-<paragraph role="paragraph" id="par_id1604663" xml-lang="en-US" l10n="NEW">
-<item type="input">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type="input">9</item>, <item type="input">12</item>, <item type="input">9</item> gives 3.</paragraph>
-</section>
-<section id="Section42">
+<paragraph xml-lang="en-US" id="hd_id3147356" role="heading" level="2" l10n="U"
+ oldref="237">GCD</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152465" role="paragraph" l10n="U" oldref="238"><ahelp hid="HID_FUNC_GGT">Returns the greatest common divisor of two or more integers.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="par_id2769249" role="paragraph" l10n="NEW">The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150643" role="heading" level="3" l10n="U"
+ oldref="239">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154524" role="code" l10n="U" oldref="240">GCD(Integer1; Integer2; ...; Integer30)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149340" role="paragraph" l10n="U" oldref="241">
+ <emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3147317" role="heading" level="3" l10n="U"
+ oldref="242">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151285" role="paragraph" l10n="CHG" oldref="243">
+ <item type="input">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1604663" role="paragraph" l10n="NEW">
+ <item type="input">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type="input">9</item>, <item type="input">12</item>, <item type="input">9</item> gives 3.</paragraph>
+ </section>
+ <section id="Section42">
<bookmark xml-lang="en-US" branch="index" id="bm_id3151221"><bookmark_value>GCD_ADD function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_AAI_FUNC_GCD" id="bm_id3147578" localize="false"/>
-<paragraph role="heading" id="hd_id3151221" xml-lang="en-US" level="2" l10n="E" oldref="677">GCD_ADD</paragraph>
-<paragraph role="paragraph" id="par_id3153257" xml-lang="en-US" l10n="U" oldref="678"><ahelp hid="HID_AAI_FUNC_GCD"> The result is the greatest common divisor of a list of numbers.</ahelp></paragraph>
-<embed href="text/scalc/01/04060102.xhp#ADD_note"/>
-<paragraph role="heading" id="hd_id3147548" xml-lang="en-US" level="3" l10n="U" oldref="679">Syntax</paragraph>
-<paragraph role="code" id="par_id3156205" xml-lang="en-US" l10n="U" oldref="680">GCD_ADD(Number(s))</paragraph>
-<paragraph role="paragraph" id="par_id3145150" xml-lang="en-US" l10n="U" oldref="681">
-<emph>Number(s)</emph> is a list of up to 30 numbers.</paragraph>
-<paragraph role="heading" id="hd_id3150239" xml-lang="en-US" level="3" l10n="U" oldref="682">Example</paragraph>
-<paragraph role="paragraph" id="par_id3159192" xml-lang="en-US" l10n="U" oldref="683">
-<item type="input">=GCD_ADD(5;15;25)</item> returns 5.</paragraph>
-</section>
-<section id="Section41">
+<paragraph xml-lang="en-US" id="hd_id3151221" role="heading" level="2" l10n="E"
+ oldref="677">GCD_ADD</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153257" role="paragraph" l10n="U" oldref="678"><ahelp hid="HID_AAI_FUNC_GCD"> The result is the greatest common divisor of a list of numbers.</ahelp></paragraph>
+ <embed href="text/scalc/01/04060102.xhp#ADD_note"/>
+ <paragraph xml-lang="en-US" id="hd_id3147548" role="heading" level="3" l10n="U"
+ oldref="679">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156205" role="code" l10n="U" oldref="680">GCD_ADD(Number(s))</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145150" role="paragraph" l10n="U" oldref="681">
+ <emph>Number(s)</emph> is a list of up to 30 numbers.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150239" role="heading" level="3" l10n="U"
+ oldref="682">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159192" role="paragraph" l10n="U" oldref="683">
+ <item type="input">=GCD_ADD(5;15;25)</item> returns 5.</paragraph>
+ </section>
+ <section id="Section41">
<bookmark xml-lang="en-US" branch="index" id="bm_id3156048"><bookmark_value>ISEVEN function</bookmark_value>
-<bookmark_value>even integers</bookmark_value>
+ <bookmark_value>even integers</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ISTGERADE" id="bm_id3149430" localize="false"/>
-<paragraph role="heading" id="hd_id3156048" xml-lang="en-US" level="2" l10n="U" oldref="245">ISEVEN<comment>link from Information cat</comment></paragraph>
-<paragraph role="paragraph" id="par_id3149169" xml-lang="en-US" l10n="U" oldref="246"><ahelp hid="HID_FUNC_ISTGERADE">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3146928" xml-lang="en-US" level="3" l10n="U" oldref="247">Syntax</paragraph>
-<paragraph role="code" id="par_id3151203" xml-lang="en-US" l10n="U" oldref="248">ISEVEN(Value)</paragraph>
-<paragraph role="paragraph" id="par_id3150491" xml-lang="en-US" l10n="U" oldref="249">
-<emph>Value</emph> is the value to be checked.</paragraph>
-<paragraph role="paragraph" id="par_id3445844" xml-lang="en-US" l10n="NEW">If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored.</paragraph>
-<paragraph role="heading" id="hd_id3154136" xml-lang="en-US" level="3" l10n="U" oldref="250">Example</paragraph>
-<paragraph role="paragraph" id="par_id3163813" xml-lang="en-US" l10n="CHG" oldref="251">
-<item type="input">=ISEVEN(48)</item> returns TRUE</paragraph>
-<paragraph role="paragraph" id="par_id8378856" xml-lang="en-US" l10n="NEW">
-<item type="input">=ISEVEN(33)</item> returns FALSE</paragraph>
-<paragraph role="paragraph" id="par_id7154759" xml-lang="en-US" l10n="NEW">
-<item type="input">=ISEVEN(0)</item> returns TRUE</paragraph>
-<paragraph role="paragraph" id="par_id1912289" xml-lang="en-US" l10n="NEW">
-<item type="input">=ISEVEN(-2.1)</item> returns TRUE</paragraph>
-<paragraph role="paragraph" id="par_id5627307" xml-lang="en-US" l10n="NEW">
-<item type="input">=ISEVEN(3.999)</item> returns FALSE</paragraph><comment>see also ISODD </comment>
+<paragraph xml-lang="en-US" id="hd_id3156048" role="heading" level="2" l10n="U"
+ oldref="245">ISEVEN<comment>link from Information cat</comment></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149169" role="paragraph" l10n="U" oldref="246"><ahelp hid="HID_FUNC_ISTGERADE">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146928" role="heading" level="3" l10n="U"
+ oldref="247">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151203" role="code" l10n="U" oldref="248">ISEVEN(Value)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150491" role="paragraph" l10n="U" oldref="249">
+ <emph>Value</emph> is the value to be checked.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3445844" role="paragraph" l10n="NEW">If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154136" role="heading" level="3" l10n="U"
+ oldref="250">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163813" role="paragraph" l10n="CHG" oldref="251">
+ <item type="input">=ISEVEN(48)</item> returns TRUE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8378856" role="paragraph" l10n="NEW">
+ <item type="input">=ISEVEN(33)</item> returns FALSE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7154759" role="paragraph" l10n="NEW">
+ <item type="input">=ISEVEN(0)</item> returns TRUE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1912289" role="paragraph" l10n="NEW">
+ <item type="input">=ISEVEN(-2.1)</item> returns TRUE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5627307" role="paragraph" l10n="NEW">
+ <item type="input">=ISEVEN(3.999)</item> returns FALSE</paragraph><comment>see also ISODD </comment>
</section>
-<section id="Section40">
+ <section id="Section40">
<bookmark xml-lang="en-US" branch="index" id="bm_id3156034"><bookmark_value>ISODD function</bookmark_value>
-<bookmark_value>odd integers</bookmark_value>
+ <bookmark_value>odd integers</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ISTUNGERADE" id="bm_id3149298" localize="false"/>
-<paragraph role="heading" id="hd_id3156034" xml-lang="en-US" level="2" l10n="U" oldref="255">ISODD<comment>link from Information cat</comment></paragraph>
-<paragraph role="paragraph" id="par_id3155910" xml-lang="en-US" l10n="U" oldref="256"><ahelp hid="HID_FUNC_ISTUNGERADE">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3151006" xml-lang="en-US" level="3" l10n="U" oldref="257">Syntax</paragraph>
-<paragraph role="code" id="par_id3151375" xml-lang="en-US" l10n="U" oldref="258">ISODD(value)</paragraph>
-<paragraph role="paragraph" id="par_id3155139" xml-lang="en-US" l10n="U" oldref="259">
-<emph>Value</emph> is the value to be checked.</paragraph>
-<paragraph role="paragraph" id="par_id9027680" xml-lang="en-US" l10n="NEW">If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored.</paragraph>
-<paragraph role="heading" id="hd_id3163723" xml-lang="en-US" level="3" l10n="U" oldref="260">Example</paragraph>
-<paragraph role="paragraph" id="par_id3155345" xml-lang="en-US" l10n="CHG" oldref="261">
-<item type="input">=ISODD(33)</item> returns TRUE</paragraph>
-<paragraph role="paragraph" id="par_id9392986" xml-lang="en-US" l10n="NEW">
-<item type="input">=ISODD(48)</item> returns FALSE</paragraph>
-<paragraph role="paragraph" id="par_id5971251" xml-lang="en-US" l10n="NEW">
-<item type="input">=ISODD(3.999)</item> returns TRUE</paragraph>
-<paragraph role="paragraph" id="par_id4136478" xml-lang="en-US" l10n="NEW">
-<item type="input">=ISODD(-3.1)</item> returns TRUE</paragraph><comment>see also ISEVEN</comment>
+<paragraph xml-lang="en-US" id="hd_id3156034" role="heading" level="2" l10n="U"
+ oldref="255">ISODD<comment>link from Information cat</comment></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155910" role="paragraph" l10n="U" oldref="256"><ahelp hid="HID_FUNC_ISTUNGERADE">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3151006" role="heading" level="3" l10n="U"
+ oldref="257">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151375" role="code" l10n="U" oldref="258">ISODD(value)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155139" role="paragraph" l10n="U" oldref="259">
+ <emph>Value</emph> is the value to be checked.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9027680" role="paragraph" l10n="NEW">If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163723" role="heading" level="3" l10n="U"
+ oldref="260">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155345" role="paragraph" l10n="CHG" oldref="261">
+ <item type="input">=ISODD(33)</item> returns TRUE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9392986" role="paragraph" l10n="NEW">
+ <item type="input">=ISODD(48)</item> returns FALSE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5971251" role="paragraph" l10n="NEW">
+ <item type="input">=ISODD(3.999)</item> returns TRUE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id4136478" role="paragraph" l10n="NEW">
+ <item type="input">=ISODD(-3.1)</item> returns TRUE</paragraph><comment>see also ISEVEN</comment>
</section>
-<section id="Section39">
+ <section id="Section39">
<bookmark xml-lang="en-US" branch="index" id="bm_id3145213"><bookmark_value>LCM function</bookmark_value>
-<bookmark_value>least common multiples</bookmark_value>
-<bookmark_value>lowest common multiples</bookmark_value>
+ <bookmark_value>least common multiples</bookmark_value>
+ <bookmark_value>lowest common multiples</bookmark_value>
</bookmark><comment>mw added two entries</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_KGV" id="bm_id3145225" localize="false"/>
-<paragraph role="heading" id="hd_id3145213" xml-lang="en-US" level="2" l10n="U" oldref="265">LCM</paragraph>
-<paragraph role="paragraph" id="par_id3146814" xml-lang="en-US" l10n="U" oldref="266"><ahelp hid="HID_FUNC_KGV">Returns the least common multiple of one or more integers.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3148632" xml-lang="en-US" level="3" l10n="U" oldref="267">Syntax</paragraph>
-<paragraph role="code" id="par_id3147279" xml-lang="en-US" l10n="U" oldref="268">LCM(Integer1; Integer2; ...; Integer30)</paragraph>
-<paragraph role="paragraph" id="par_id3156348" xml-lang="en-US" l10n="U" oldref="269">
-<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated.</paragraph>
-<paragraph role="heading" id="hd_id3156431" xml-lang="en-US" level="3" l10n="U" oldref="270">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154914" xml-lang="en-US" l10n="U" oldref="271">If you enter the numbers <item type="input">512</item>;<item type="input">1024</item> and <item type="input">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result.</paragraph>
-</section>
-<section id="Section38">
+<paragraph xml-lang="en-US" id="hd_id3145213" role="heading" level="2" l10n="U"
+ oldref="265">LCM</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146814" role="paragraph" l10n="U" oldref="266"><ahelp hid="HID_FUNC_KGV">Returns the least common multiple of one or more integers.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3148632" role="heading" level="3" l10n="U"
+ oldref="267">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147279" role="code" l10n="U" oldref="268">LCM(Integer1; Integer2; ...; Integer30)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156348" role="paragraph" l10n="U" oldref="269">
+ <emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3156431" role="heading" level="3" l10n="U"
+ oldref="270">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154914" role="paragraph" l10n="U" oldref="271">If you enter the numbers <item type="input">512</item>;<item type="input">1024</item> and <item type="input">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result.</paragraph>
+ </section>
+ <section id="Section38">
<bookmark xml-lang="en-US" branch="index" id="bm_id3154230"><bookmark_value>LCM_ADD function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_AAI_FUNC_LCM" id="bm_id3147222" localize="false"/>
-<paragraph role="heading" id="hd_id3154230" xml-lang="en-US" level="2" l10n="U" oldref="684">LCM_ADD</paragraph>
-<paragraph role="paragraph" id="par_id3149036" xml-lang="en-US" l10n="U" oldref="685"><ahelp hid="HID_AAI_FUNC_LCM"> The result is the lowest common multiple of a list of numbers.</ahelp></paragraph>
-<embed href="text/scalc/01/04060102.xhp#ADD_note"/>
-<paragraph role="heading" id="hd_id3153132" xml-lang="en-US" level="3" l10n="U" oldref="686">Syntax</paragraph>
-<paragraph role="code" id="par_id3154395" xml-lang="en-US" l10n="U" oldref="687">LCM_ADD(Number(s))</paragraph>
-<paragraph role="paragraph" id="par_id3147377" xml-lang="en-US" l10n="U" oldref="688">
-<emph>Number(s)</emph> is a list of up to 30 numbers.</paragraph>
-<paragraph role="heading" id="hd_id3145122" xml-lang="en-US" level="3" l10n="U" oldref="689">Example</paragraph>
-<paragraph role="paragraph" id="par_id3145135" xml-lang="en-US" l10n="U" oldref="690">
-<item type="input">=LCM_ADD(5;15;25)</item> returns 75.</paragraph>
-</section>
-<section id="Section37">
+<paragraph xml-lang="en-US" id="hd_id3154230" role="heading" level="2" l10n="U"
+ oldref="684">LCM_ADD</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149036" role="paragraph" l10n="U" oldref="685"><ahelp hid="HID_AAI_FUNC_LCM"> The result is the lowest common multiple of a list of numbers.</ahelp></paragraph>
+ <embed href="text/scalc/01/04060102.xhp#ADD_note"/>
+ <paragraph xml-lang="en-US" id="hd_id3153132" role="heading" level="3" l10n="U"
+ oldref="686">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154395" role="code" l10n="U" oldref="687">LCM_ADD(Number(s))</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147377" role="paragraph" l10n="U" oldref="688">
+ <emph>Number(s)</emph> is a list of up to 30 numbers.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145122" role="heading" level="3" l10n="U"
+ oldref="689">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145135" role="paragraph" l10n="U" oldref="690">
+ <item type="input">=LCM_ADD(5;15;25)</item> returns 75.</paragraph>
+ </section>
+ <section id="Section37">
<bookmark xml-lang="en-US" branch="index" id="bm_id3155802"><bookmark_value>COMBIN function</bookmark_value>
-<bookmark_value>number of combinations</bookmark_value>
+ <bookmark_value>number of combinations</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_KOMBINATIONEN" id="bm_id3155077" localize="false"/>
-<paragraph role="heading" id="hd_id3155802" xml-lang="en-US" level="2" l10n="U" oldref="273">COMBIN<comment>should be statistical--&gt;add a link there</comment></paragraph>
-<paragraph role="paragraph" id="par_id3156172" xml-lang="en-US" l10n="CHG" oldref="274"><ahelp hid="HID_FUNC_KOMBINATIONEN">Returns the number of combinations for elements without repetition.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3156193" xml-lang="en-US" level="3" l10n="U" oldref="275">Syntax</paragraph>
-<paragraph role="code" id="par_id3150223" xml-lang="en-US" l10n="CHG" oldref="276">COMBIN(Count1; Count2)</paragraph>
-<paragraph role="paragraph" id="par_id3150313" xml-lang="en-US" l10n="CHG" oldref="277">
-<emph>Count1</emph> is the number of items in the set.</paragraph>
-<paragraph role="paragraph" id="par_id3153830" xml-lang="en-US" l10n="CHG" oldref="278">
-<emph>Count2</emph> is the number of items to choose from the set.</paragraph>
-<paragraph role="paragraph" id="par_id6807458" xml-lang="en-US" l10n="CHG">COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC.</paragraph>
-<paragraph role="paragraph" id="par_id7414471" xml-lang="en-US" l10n="NEW">COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)</paragraph>
-<paragraph role="heading" id="hd_id3153171" xml-lang="en-US" level="3" l10n="U" oldref="279">Example</paragraph>
-<paragraph role="paragraph" id="par_id3153517" xml-lang="en-US" l10n="CHG" oldref="280">
-<item type="input">=COMBIN(3;2)</item> returns 3.</paragraph><comment>see also COMBINA </comment>
+<paragraph xml-lang="en-US" id="hd_id3155802" role="heading" level="2" l10n="U"
+ oldref="273">COMBIN<comment>should be statistical--&gt;add a link there</comment></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156172" role="paragraph" l10n="CHG" oldref="274"><ahelp hid="HID_FUNC_KOMBINATIONEN">Returns the number of combinations for elements without repetition.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3156193" role="heading" level="3" l10n="U"
+ oldref="275">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150223" role="code" l10n="CHG" oldref="276">COMBIN(Count1; Count2)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150313" role="paragraph" l10n="CHG" oldref="277">
+ <emph>Count1</emph> is the number of items in the set.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153830" role="paragraph" l10n="CHG" oldref="278">
+ <emph>Count2</emph> is the number of items to choose from the set.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6807458" role="paragraph" l10n="CHG">COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7414471" role="paragraph" l10n="NEW">COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153171" role="heading" level="3" l10n="U"
+ oldref="279">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153517" role="paragraph" l10n="CHG" oldref="280">
+ <item type="input">=COMBIN(3;2)</item> returns 3.</paragraph><comment>see also COMBINA </comment>
</section>
-<section id="Section36">
+ <section id="Section36">
<bookmark xml-lang="en-US" branch="index" id="bm_id3150284"><bookmark_value>COMBINA function</bookmark_value>
-<bookmark_value>number of combinations with repetitions</bookmark_value>
+ <bookmark_value>number of combinations with repetitions</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_KOMBINATIONEN2" id="bm_id3150295" localize="false"/>
-<paragraph role="heading" id="hd_id3150284" xml-lang="en-US" level="2" l10n="U" oldref="282">COMBINA<comment>should be statistical--&gt;add a link there</comment></paragraph>
-<paragraph role="paragraph" id="par_id3157894" xml-lang="en-US" l10n="CHG" oldref="283"><ahelp hid="HID_FUNC_KOMBINATIONEN2">Returns the number of combinations of a subset of items including repetitions.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3145752" xml-lang="en-US" level="3" l10n="U" oldref="284">Syntax</paragraph>
-<paragraph role="code" id="par_id3145765" xml-lang="en-US" l10n="CHG" oldref="285">COMBINA(Count1; Count2)</paragraph>
-<paragraph role="paragraph" id="par_id3153372" xml-lang="en-US" l10n="CHG" oldref="286">
-<emph>Count1</emph> is the number of items in the set.</paragraph>
-<paragraph role="paragraph" id="par_id3155544" xml-lang="en-US" l10n="CHG" oldref="287">
-<emph>Count2</emph> is the number of items to choose from the set.</paragraph>
-<paragraph role="paragraph" id="par_id1997131" xml-lang="en-US" l10n="CHG">COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AB, BA, AC, CA, BC and CB.</paragraph>
-<paragraph role="paragraph" id="par_id2052064" xml-lang="en-US" l10n="CHG">COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)<comment>i88052</comment></paragraph>
-<paragraph role="heading" id="hd_id3154584" xml-lang="en-US" level="3" l10n="U" oldref="288">Example</paragraph>
-<paragraph role="paragraph" id="par_id3152904" xml-lang="en-US" l10n="CHG" oldref="289">
-<item type="input">=COMBINA(3;2)</item> returns 6.</paragraph><comment>see also COMBIN</comment>
+<paragraph xml-lang="en-US" id="hd_id3150284" role="heading" level="2" l10n="U"
+ oldref="282">COMBINA<comment>should be statistical--&gt;add a link there</comment></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157894" role="paragraph" l10n="CHG" oldref="283"><ahelp hid="HID_FUNC_KOMBINATIONEN2">Returns the number of combinations of a subset of items including repetitions.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145752" role="heading" level="3" l10n="U"
+ oldref="284">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145765" role="code" l10n="CHG" oldref="285">COMBINA(Count1; Count2)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153372" role="paragraph" l10n="CHG" oldref="286">
+ <emph>Count1</emph> is the number of items in the set.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155544" role="paragraph" l10n="CHG" oldref="287">
+ <emph>Count2</emph> is the number of items to choose from the set.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1997131" role="paragraph" l10n="CHG">COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AB, BA, AC, CA, BC and CB.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id2052064" role="paragraph" l10n="CHG">COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)<comment>i88052</comment></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154584" role="heading" level="3" l10n="U"
+ oldref="288">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152904" role="paragraph" l10n="CHG" oldref="289">
+ <item type="input">=COMBINA(3;2)</item> returns 6.</paragraph><comment>see also COMBIN</comment>
</section>
-<section id="Section35">
+ <section id="Section35">
<bookmark xml-lang="en-US" branch="index" id="bm_id3156086"><bookmark_value>TRUNC function</bookmark_value>
-<bookmark_value>decimal places;cutting off</bookmark_value>
+ <bookmark_value>decimal places;cutting off</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_KUERZEN" id="bm_id3157849" localize="false"/>
-<paragraph role="heading" id="hd_id3156086" xml-lang="en-US" level="2" l10n="U" oldref="291">TRUNC</paragraph>
-<paragraph role="paragraph" id="par_id3157866" xml-lang="en-US" l10n="CHG" oldref="292"><ahelp hid="HID_FUNC_KUERZEN">Truncates a number by removing decimal places.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3148499" xml-lang="en-US" level="3" l10n="U" oldref="293">Syntax</paragraph>
-<paragraph role="code" id="par_id3148511" xml-lang="en-US" l10n="U" oldref="294">TRUNC(Number; Count)</paragraph>
-<paragraph role="paragraph" id="par_id3150796" xml-lang="en-US" l10n="CHG" oldref="295">Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign.</paragraph>
-<paragraph role="paragraph" id="par_id3150816" xml-lang="en-US" l10n="CHG" oldref="296">
-<item type="literal">TRUNC(Number; 0)</item> behaves as <item type="literal">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers.</paragraph>
-<paragraph role="warning" id="par_id3148548" xml-lang="en-US" l10n="CHG" oldref="557">The <emph>visible</emph> decimal places of the result are specified in <link href="text/shared/optionen/01060500.xhp">Tools - Options - %PRODUCTNAME Calc - Calculate</link>.</paragraph>
-<paragraph role="heading" id="hd_id3152555" xml-lang="en-US" level="3" l10n="U" oldref="297">Example</paragraph>
-<paragraph role="paragraph" id="par_id3152569" xml-lang="en-US" l10n="CHG" oldref="298">
-<item type="input">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost.</paragraph>
-<paragraph role="paragraph" id="par_id7050080" xml-lang="en-US" l10n="NEW">
-<item type="input">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost.</paragraph><comment>see also INT, ROUND, ROUNDDOWN, ROUNDUP,
+<paragraph xml-lang="en-US" id="hd_id3156086" role="heading" level="2" l10n="U"
+ oldref="291">TRUNC</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157866" role="paragraph" l10n="CHG" oldref="292"><ahelp hid="HID_FUNC_KUERZEN">Truncates a number by removing decimal places.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3148499" role="heading" level="3" l10n="U"
+ oldref="293">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148511" role="code" l10n="U" oldref="294">TRUNC(Number; Count)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150796" role="paragraph" l10n="CHG" oldref="295">Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150816" role="paragraph" l10n="CHG" oldref="296">
+ <item type="literal">TRUNC(Number; 0)</item> behaves as <item type="literal">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148548" role="warning" l10n="CHG" oldref="557">The <emph>visible</emph> decimal places of the result are specified in <link href="text/shared/optionen/01060500.xhp">Tools - Options - %PRODUCTNAME Calc - Calculate</link>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152555" role="heading" level="3" l10n="U"
+ oldref="297">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152569" role="paragraph" l10n="CHG" oldref="298">
+ <item type="input">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7050080" role="paragraph" l10n="NEW">
+ <item type="input">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost.</paragraph><comment>see also INT, ROUND, ROUNDDOWN, ROUNDUP,
CEILING, FLOOR, EVEN, ODD, MROUND</comment>
</section>
-<section id="Section34">
+ <section id="Section34">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153601"><bookmark_value>LN function</bookmark_value>
-<bookmark_value>natural logarithm</bookmark_value>
+ <bookmark_value>natural logarithm</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_LN" id="bm_id3153613" localize="false"/>
-<paragraph role="heading" id="hd_id3153601" xml-lang="en-US" level="2" l10n="U" oldref="301">LN</paragraph>
-<paragraph role="paragraph" id="par_id3154974" xml-lang="en-US" l10n="CHG" oldref="302"><ahelp hid="HID_FUNC_LN">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904.</paragraph>
-<paragraph role="heading" id="hd_id3154993" xml-lang="en-US" level="3" l10n="U" oldref="303">Syntax</paragraph>
-<paragraph role="code" id="par_id3155284" xml-lang="en-US" l10n="U" oldref="304">LN(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3155297" xml-lang="en-US" l10n="U" oldref="305">
-<emph>Number</emph> is the value whose natural logarithm is to be calculated.</paragraph>
-<paragraph role="heading" id="hd_id3153852" xml-lang="en-US" level="3" l10n="U" oldref="306">Example</paragraph>
-<paragraph role="paragraph" id="par_id3153866" xml-lang="en-US" l10n="CHG" oldref="307">
-<item type="input">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986).</paragraph>
-<paragraph role="paragraph" id="par_id5747245" xml-lang="en-US" l10n="NEW">
-<item type="input">=LN(EXP(321))</item> returns 321.</paragraph><comment>see also LOG, LOG10, EXP, </comment>
+<paragraph xml-lang="en-US" id="hd_id3153601" role="heading" level="2" l10n="U"
+ oldref="301">LN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154974" role="paragraph" l10n="CHG" oldref="302"><ahelp hid="HID_FUNC_LN">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154993" role="heading" level="3" l10n="U"
+ oldref="303">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155284" role="code" l10n="U" oldref="304">LN(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155297" role="paragraph" l10n="U" oldref="305">
+ <emph>Number</emph> is the value whose natural logarithm is to be calculated.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153852" role="heading" level="3" l10n="U"
+ oldref="306">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153866" role="paragraph" l10n="CHG" oldref="307">
+ <item type="input">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5747245" role="paragraph" l10n="NEW">
+ <item type="input">=LN(EXP(321))</item> returns 321.</paragraph><comment>see also LOG, LOG10, EXP, </comment>
</section>
-<section id="Section33">
+ <section id="Section33">
<bookmark xml-lang="en-US" branch="index" id="bm_id3109813"><bookmark_value>LOG function</bookmark_value>
-<bookmark_value>logarithms</bookmark_value>
+ <bookmark_value>logarithms</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_LOG" id="bm_id3109824" localize="false"/>
-<paragraph role="heading" id="hd_id3109813" xml-lang="en-US" level="2" l10n="U" oldref="311">LOG</paragraph>
-<paragraph role="paragraph" id="par_id3109841" xml-lang="en-US" l10n="U" oldref="312"><ahelp hid="HID_FUNC_LOG">Returns the logarithm of a number to the specified base.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3144719" xml-lang="en-US" level="3" l10n="U" oldref="313">Syntax</paragraph>
-<paragraph role="code" id="par_id3144732" xml-lang="en-US" l10n="U" oldref="314">LOG(Number; Base)</paragraph>
-<paragraph role="paragraph" id="par_id3144746" xml-lang="en-US" l10n="U" oldref="315">
-<emph>Number</emph> is the value whose logarithm is to be calculated.</paragraph>
-<paragraph role="paragraph" id="par_id3152840" xml-lang="en-US" l10n="U" oldref="316">
-<emph>Base</emph> is the base for the logarithm calculation.</paragraph>
-<paragraph role="heading" id="hd_id3152860" xml-lang="en-US" level="3" l10n="U" oldref="317">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154429" xml-lang="en-US" l10n="CHG" oldref="318">
-<item type="input">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959).</paragraph>
-<paragraph role="paragraph" id="par_id5577562" xml-lang="en-US" l10n="NEW">
-<item type="input">=LOG(7^4;7)</item> returns 4.</paragraph><comment>see also LOG10, LN, POWER, </comment>
+<paragraph xml-lang="en-US" id="hd_id3109813" role="heading" level="2" l10n="U"
+ oldref="311">LOG</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3109841" role="paragraph" l10n="U" oldref="312"><ahelp hid="HID_FUNC_LOG">Returns the logarithm of a number to the specified base.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3144719" role="heading" level="3" l10n="U"
+ oldref="313">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144732" role="code" l10n="U" oldref="314">LOG(Number; Base)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144746" role="paragraph" l10n="U" oldref="315">
+ <emph>Number</emph> is the value whose logarithm is to be calculated.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152840" role="paragraph" l10n="CHG" oldref="316">
+ <emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152860" role="heading" level="3" l10n="U"
+ oldref="317">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154429" role="paragraph" l10n="CHG" oldref="318">
+ <item type="input">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5577562" role="paragraph" l10n="NEW">
+ <item type="input">=LOG(7^4;7)</item> returns 4.</paragraph><comment>see also LOG10, LN, POWER, </comment>
</section>
-<section id="Section32">
+ <section id="Section32">
<bookmark xml-lang="en-US" branch="index" id="bm_id3154187"><bookmark_value>LOG10 function</bookmark_value>
-<bookmark_value>base-10 logarithm</bookmark_value>
+ <bookmark_value>base-10 logarithm</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_LOG10" id="bm_id3155460" localize="false"/>
-<paragraph role="heading" id="hd_id3154187" xml-lang="en-US" level="2" l10n="U" oldref="322">LOG10</paragraph>
-<paragraph role="paragraph" id="par_id3155476" xml-lang="en-US" l10n="U" oldref="323"><ahelp hid="HID_FUNC_LOG10">Returns the base-10 logarithm of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3155494" xml-lang="en-US" level="3" l10n="U" oldref="324">Syntax</paragraph>
-<paragraph role="code" id="par_id3159294" xml-lang="en-US" l10n="U" oldref="325">LOG10(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3159308" xml-lang="en-US" l10n="CHG" oldref="326">Returns the logarithm to base 10 of <emph>Number</emph>.</paragraph>
-<paragraph role="heading" id="hd_id3159328" xml-lang="en-US" level="3" l10n="U" oldref="327">Example</paragraph>
-<paragraph role="paragraph" id="par_id3157916" xml-lang="en-US" l10n="CHG" oldref="328">
-<item type="input">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897).</paragraph><comment>see also LOG, LN, POWER </comment>
+<paragraph xml-lang="en-US" id="hd_id3154187" role="heading" level="2" l10n="U"
+ oldref="322">LOG10</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155476" role="paragraph" l10n="U" oldref="323"><ahelp hid="HID_FUNC_LOG10">Returns the base-10 logarithm of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155494" role="heading" level="3" l10n="U"
+ oldref="324">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159294" role="code" l10n="U" oldref="325">LOG10(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159308" role="paragraph" l10n="CHG" oldref="326">Returns the logarithm to base 10 of <emph>Number</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3159328" role="heading" level="3" l10n="U"
+ oldref="327">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157916" role="paragraph" l10n="CHG" oldref="328">
+ <item type="input">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897).</paragraph><comment>see also LOG, LN, POWER </comment>
</section>
-<section id="Section31">
+ <section id="Section31">
<bookmark xml-lang="en-US" branch="index" id="bm_id3152518"><bookmark_value>CEILING function</bookmark_value>
-<bookmark_value>rounding;up to multiples of significance</bookmark_value>
+ <bookmark_value>rounding;up to multiples of significance</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_OBERGRENZE" id="bm_id3152530" localize="false"/>
-<paragraph role="heading" id="hd_id3152518" xml-lang="en-US" level="2" l10n="U" oldref="332">CEILING</paragraph>
-<paragraph role="paragraph" id="par_id3153422" xml-lang="en-US" l10n="CHG" oldref="558"><ahelp hid="HID_FUNC_OBERGRENZE">Rounds a number up to the nearest multiple of Significance.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3153440" xml-lang="en-US" level="3" l10n="U" oldref="334">Syntax</paragraph>
-<paragraph role="code" id="par_id3153454" xml-lang="en-US" l10n="CHG" oldref="335">CEILING(Number; Significance; Mode)</paragraph>
-<paragraph role="paragraph" id="par_id3153467" xml-lang="en-US" l10n="U" oldref="336">
-<emph>Number</emph> is the number that is to be rounded up.</paragraph>
-<paragraph role="paragraph" id="par_id3155000" xml-lang="en-US" l10n="CHG" oldref="337">
-<emph>Significance</emph> is the number to whose multiple the value is to be rounded up.</paragraph>
-<paragraph role="paragraph" id="par_id3155020" xml-lang="en-US" l10n="CHG" oldref="559">
-<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter.</paragraph>
-<paragraph role="warning" id="par_id3163792" xml-lang="en-US" l10n="CHG" oldref="629">If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc.</paragraph>
-<paragraph role="heading" id="hd_id3145697" xml-lang="en-US" level="3" l10n="U" oldref="338">Example</paragraph>
-<paragraph role="paragraph" id="par_id3145710" xml-lang="en-US" l10n="CHG" oldref="339">
-<item type="input">=CEILING(-11;-2)</item> returns -10</paragraph>
-<paragraph role="paragraph" id="par_id3145725" xml-lang="en-US" l10n="CHG" oldref="340">
-<item type="input">=CEILING(-11;-2;0)</item> returns -10</paragraph>
-<paragraph role="paragraph" id="par_id3145740" xml-lang="en-US" l10n="CHG" oldref="341">
-<item type="input">=CEILING(-11;-2;1)</item> returns -12</paragraph><comment>see also FLOOR, EVEN, ODD, MROUND,
+<paragraph xml-lang="en-US" id="hd_id3152518" role="heading" level="2" l10n="U"
+ oldref="332">CEILING</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153422" role="paragraph" l10n="CHG" oldref="558"><ahelp hid="HID_FUNC_OBERGRENZE">Rounds a number up to the nearest multiple of Significance.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153440" role="heading" level="3" l10n="U"
+ oldref="334">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153454" role="code" l10n="CHG" oldref="335">CEILING(Number; Significance; Mode)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153467" role="paragraph" l10n="U" oldref="336">
+ <emph>Number</emph> is the number that is to be rounded up.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155000" role="paragraph" l10n="CHG" oldref="337">
+ <emph>Significance</emph> is the number to whose multiple the value is to be rounded up.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155020" role="paragraph" l10n="CHG" oldref="559">
+ <emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163792" role="warning" l10n="CHG" oldref="629">If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145697" role="heading" level="3" l10n="U"
+ oldref="338">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145710" role="paragraph" l10n="CHG" oldref="339">
+ <item type="input">=CEILING(-11;-2)</item> returns -10</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145725" role="paragraph" l10n="CHG" oldref="340">
+ <item type="input">=CEILING(-11;-2;0)</item> returns -10</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145740" role="paragraph" l10n="CHG" oldref="341">
+ <item type="input">=CEILING(-11;-2;1)</item> returns -12</paragraph><comment>see also FLOOR, EVEN, ODD, MROUND,
INT, TRUNC, ROUND, ROUNDDOWN, ROUNDUP</comment>
</section>
-<section id="Section30">
+ <section id="Section30">
<bookmark xml-lang="en-US" branch="index" id="bm_id3157762"><bookmark_value>PI function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_PI" id="bm_id3157774" localize="false"/>
-<paragraph role="heading" id="hd_id3157762" xml-lang="en-US" level="2" l10n="U" oldref="343">PI</paragraph>
-<paragraph role="paragraph" id="par_id3157790" xml-lang="en-US" l10n="CHG" oldref="344"><ahelp hid="HID_FUNC_PI">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3157809" xml-lang="en-US" level="3" l10n="U" oldref="345">Syntax</paragraph>
-<paragraph role="code" id="par_id3157822" xml-lang="en-US" l10n="U" oldref="346">PI()</paragraph>
-<paragraph role="heading" id="hd_id3157836" xml-lang="en-US" level="3" l10n="U" oldref="347">Example</paragraph>
-<paragraph role="paragraph" id="par_id3152370" xml-lang="en-US" l10n="CHG" oldref="348">
-<item type="input">=PI()</item> returns 3.14159265358979.</paragraph>
-</section>
-<section id="Section29">
+<paragraph xml-lang="en-US" id="hd_id3157762" role="heading" level="2" l10n="U"
+ oldref="343">PI</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157790" role="paragraph" l10n="CHG" oldref="344"><ahelp hid="HID_FUNC_PI">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3157809" role="heading" level="3" l10n="U"
+ oldref="345">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157822" role="code" l10n="U" oldref="346">PI()</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3157836" role="heading" level="3" l10n="U"
+ oldref="347">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152370" role="paragraph" l10n="CHG" oldref="348">
+ <item type="input">=PI()</item> returns 3.14159265358979.</paragraph>
+ </section>
+ <section id="Section29">
<bookmark xml-lang="en-US" branch="index" id="bm_id3152418"><bookmark_value>MULTINOMIAL function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_AAI_FUNC_MULTINOMIAL" id="bm_id3152429" localize="false"/>
-<paragraph role="heading" id="hd_id3152418" xml-lang="en-US" level="2" l10n="U" oldref="635">MULTINOMIAL</paragraph>
-<paragraph role="paragraph" id="par_id3152454" xml-lang="en-US" l10n="U" oldref="636"><ahelp hid="HID_AAI_FUNC_MULTINOMIAL"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3155646" xml-lang="en-US" level="3" l10n="U" oldref="637">Syntax</paragraph>
-<paragraph role="code" id="par_id3155660" xml-lang="en-US" l10n="U" oldref="638">MULTINOMIAL(Number(s))</paragraph>
-<paragraph role="paragraph" id="par_id3155673" xml-lang="en-US" l10n="U" oldref="639">
-<emph>Number(s)</emph> is a list of up to 30 numbers.</paragraph>
-<paragraph role="heading" id="hd_id3155687" xml-lang="en-US" level="3" l10n="U" oldref="640">Example</paragraph>
-<paragraph role="paragraph" id="par_id3155701" xml-lang="en-US" l10n="U" oldref="641">
-<item type="input">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type="input">2</item>, <item type="input">3</item> and <item type="input">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)</paragraph>
-</section>
-<section id="Section28">
+<paragraph xml-lang="en-US" id="hd_id3152418" role="heading" level="2" l10n="U"
+ oldref="635">MULTINOMIAL</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152454" role="paragraph" l10n="U" oldref="636"><ahelp hid="HID_AAI_FUNC_MULTINOMIAL"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155646" role="heading" level="3" l10n="U"
+ oldref="637">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155660" role="code" l10n="U" oldref="638">MULTINOMIAL(Number(s))</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155673" role="paragraph" l10n="U" oldref="639">
+ <emph>Number(s)</emph> is a list of up to 30 numbers.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155687" role="heading" level="3" l10n="U"
+ oldref="640">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155701" role="paragraph" l10n="U" oldref="641">
+ <item type="input">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type="input">2</item>, <item type="input">3</item> and <item type="input">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)</paragraph>
+ </section>
+ <section id="Section28">
<bookmark xml-lang="en-US" branch="index" id="bm_id3155717"><bookmark_value>POWER function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_POTENZ" id="bm_id3155728" localize="false"/>
-<paragraph role="heading" id="hd_id3155717" xml-lang="en-US" level="2" l10n="U" oldref="350">POWER</paragraph>
-<paragraph role="paragraph" id="par_id3159495" xml-lang="en-US" l10n="CHG" oldref="351"><ahelp hid="HID_FUNC_POTENZ">Returns a number raised to a power.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3159513" xml-lang="en-US" level="3" l10n="U" oldref="352">Syntax</paragraph>
-<paragraph role="code" id="par_id3159526" xml-lang="en-US" l10n="U" oldref="353">POWER(Base; Power)</paragraph>
-<paragraph role="paragraph" id="par_id3159540" xml-lang="en-US" l10n="CHG" oldref="354">Returns <emph>Base</emph> raised to the power of <emph>Power</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id5081637" xml-lang="en-US" l10n="NEW">The same result may be achieved by using the exponentiation operator ^:</paragraph>
-<paragraph role="code" id="par_id9759514" xml-lang="en-US" l10n="NEW">
-<item type="literal">Base^Power</item>
-</paragraph>
-<paragraph role="heading" id="hd_id3159580" xml-lang="en-US" level="3" l10n="U" oldref="356">Example</paragraph>
-<paragraph role="paragraph" id="par_id3159594" xml-lang="en-US" l10n="CHG" oldref="357">
-<item type="input">=POWER(4;3)</item> returns 64, which is 4 to the power of 3.</paragraph>
-<paragraph role="paragraph" id="par_id1614429" xml-lang="en-US" l10n="NEW">=4^3 also returns 4 to the power of 3.</paragraph><comment>see also EXP, LOG, SQRT</comment>
+<paragraph xml-lang="en-US" id="hd_id3155717" role="heading" level="2" l10n="U"
+ oldref="350">POWER</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159495" role="paragraph" l10n="CHG" oldref="351"><ahelp hid="HID_FUNC_POTENZ">Returns a number raised to a power.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3159513" role="heading" level="3" l10n="U"
+ oldref="352">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159526" role="code" l10n="U" oldref="353">POWER(Base; Power)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159540" role="paragraph" l10n="CHG" oldref="354">Returns <emph>Base</emph> raised to the power of <emph>Power</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5081637" role="paragraph" l10n="NEW">The same result may be achieved by using the exponentiation operator ^:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9759514" role="code" l10n="NEW">
+ <item type="literal">Base^Power</item>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3159580" role="heading" level="3" l10n="U"
+ oldref="356">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159594" role="paragraph" l10n="CHG" oldref="357">
+ <item type="input">=POWER(4;3)</item> returns 64, which is 4 to the power of 3.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1614429" role="paragraph" l10n="NEW">=4^3 also returns 4 to the power of 3.</paragraph><comment>see also EXP, LOG, SQRT</comment>
</section>
-<section id="Section27">
+ <section id="Section27">
<bookmark xml-lang="en-US" branch="index" id="bm_id3152651"><bookmark_value>SERIESSUM function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_AAI_FUNC_SERIESSUM" id="bm_id3152662" localize="false"/>
-<paragraph role="heading" id="hd_id3152651" xml-lang="en-US" level="2" l10n="U" oldref="642">SERIESSUM</paragraph>
-<paragraph role="paragraph" id="par_id3152688" xml-lang="en-US" l10n="CHG" oldref="643"><ahelp hid=".">Sums the first terms of a power series.</ahelp></paragraph>
-<paragraph role="paragraph" id="par_id3152708" xml-lang="en-US" l10n="U" oldref="644">SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)</paragraph>
-<paragraph role="heading" id="hd_id3152724" xml-lang="en-US" level="3" l10n="U" oldref="645">Syntax</paragraph>
-<paragraph role="code" id="par_idN11BD9" xml-lang="en-US" l10n="NEW">SERIESSUM(X; N; M; Coefficients)</paragraph>
-<paragraph role="paragraph" id="par_id3152737" xml-lang="en-US" l10n="CHG" oldref="646">
-<emph>X</emph> is the input value for the power series.</paragraph>
-<paragraph role="paragraph" id="par_id3144344" xml-lang="en-US" l10n="CHG" oldref="647">
-<emph>N</emph> is the initial power</paragraph>
-<paragraph role="paragraph" id="par_id3144357" xml-lang="en-US" l10n="CHG" oldref="648">
-<emph>M</emph> is the increment to increase N</paragraph>
-<paragraph role="paragraph" id="par_id3144370" xml-lang="en-US" l10n="U" oldref="649">
-<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section.</paragraph>
-</section>
-<section id="Section26">
+<paragraph xml-lang="en-US" id="hd_id3152651" role="heading" level="2" l10n="U"
+ oldref="642">SERIESSUM</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152688" role="paragraph" l10n="CHG" oldref="643"><ahelp hid=".">Sums the first terms of a power series.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152708" role="paragraph" l10n="U" oldref="644">SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152724" role="heading" level="3" l10n="U"
+ oldref="645">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN11BD9" role="code" l10n="NEW">SERIESSUM(X; N; M; Coefficients)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152737" role="paragraph" l10n="CHG" oldref="646">
+ <emph>X</emph> is the input value for the power series.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144344" role="paragraph" l10n="CHG" oldref="647">
+ <emph>N</emph> is the initial power</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144357" role="paragraph" l10n="CHG" oldref="648">
+ <emph>M</emph> is the increment to increase N</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144370" role="paragraph" l10n="U" oldref="649">
+ <emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section.</paragraph>
+ </section>
+ <section id="Section26">
<bookmark xml-lang="en-US" branch="index" id="bm_id3144386"><bookmark_value>PRODUCT function</bookmark_value>
-<bookmark_value>numbers;multiplying</bookmark_value>
-<bookmark_value>multiplying;numbers</bookmark_value>
+ <bookmark_value>numbers;multiplying</bookmark_value>
+ <bookmark_value>multiplying;numbers</bookmark_value>
</bookmark><comment>mw added two entries</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_PRODUKT" id="bm_id3144397" localize="false"/>
-<paragraph role="heading" id="hd_id3144386" xml-lang="en-US" level="2" l10n="U" oldref="361">PRODUCT</paragraph>
-<paragraph role="paragraph" id="par_id3144414" xml-lang="en-US" l10n="U" oldref="362"><ahelp hid="HID_FUNC_PRODUKT">Multiplies all the numbers given as arguments and returns the product.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3144433" xml-lang="en-US" level="3" l10n="U" oldref="363">Syntax</paragraph>
-<paragraph role="code" id="par_id3144446" xml-lang="en-US" l10n="U" oldref="364">PRODUCT(Number1; Number2; ...; Number30)</paragraph>
-<paragraph role="paragraph" id="par_id3144460" xml-lang="en-US" l10n="U" oldref="365">
-<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated.</paragraph>
-<paragraph role="paragraph" id="par_id1589098" xml-lang="en-US" l10n="NEW">PRODUCT returns number1 * number2 * number3 * ...</paragraph>
-<paragraph role="heading" id="hd_id3144480" xml-lang="en-US" level="3" l10n="U" oldref="366">Example</paragraph>
-<paragraph role="paragraph" id="par_id3144494" xml-lang="en-US" l10n="CHG" oldref="367">
-<item type="input">=PRODUCT(2;3;4)</item> returns 24.</paragraph><comment>see also FACT, SUM</comment>
+<paragraph xml-lang="en-US" id="hd_id3144386" role="heading" level="2" l10n="U"
+ oldref="361">PRODUCT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144414" role="paragraph" l10n="U" oldref="362"><ahelp hid="HID_FUNC_PRODUKT">Multiplies all the numbers given as arguments and returns the product.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3144433" role="heading" level="3" l10n="U"
+ oldref="363">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144446" role="code" l10n="U" oldref="364">PRODUCT(Number1; Number2; ...; Number30)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144460" role="paragraph" l10n="U" oldref="365">
+ <emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1589098" role="paragraph" l10n="NEW">PRODUCT returns number1 * number2 * number3 * ...</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3144480" role="heading" level="3" l10n="U"
+ oldref="366">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144494" role="paragraph" l10n="CHG" oldref="367">
+ <item type="input">=PRODUCT(2;3;4)</item> returns 24.</paragraph><comment>see also FACT, SUM</comment>
</section>
-<section id="Section25">
+ <section id="Section25">
<bookmark xml-lang="en-US" branch="index" id="bm_id3160340"><bookmark_value>SUMSQ function</bookmark_value>
-<bookmark_value>square number additions</bookmark_value>
-<bookmark_value>sums;of square numbers</bookmark_value>
+ <bookmark_value>square number additions</bookmark_value>
+ <bookmark_value>sums;of square numbers</bookmark_value>
</bookmark><comment>mw added two entries</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_QUADRATESUMME" id="bm_id3160351" localize="false"/>
-<paragraph role="heading" id="hd_id3160340" xml-lang="en-US" level="2" l10n="U" oldref="369">SUMSQ</paragraph>
-<paragraph role="paragraph" id="par_id3160368" xml-lang="en-US" l10n="U" oldref="370"><ahelp hid="HID_FUNC_QUADRATESUMME">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3160388" xml-lang="en-US" level="3" l10n="U" oldref="371">Syntax</paragraph>
-<paragraph role="code" id="par_id3160402" xml-lang="en-US" l10n="U" oldref="372">SUMSQ(Number1; Number2; ...; Number30)</paragraph>
-<paragraph role="paragraph" id="par_id3160415" xml-lang="en-US" l10n="U" oldref="373">
-<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated.</paragraph>
-<paragraph role="heading" id="hd_id3160436" xml-lang="en-US" level="3" l10n="U" oldref="374">Example</paragraph>
-<paragraph role="paragraph" id="par_id3160449" xml-lang="en-US" l10n="U" oldref="375">If you enter the numbers <item type="input">2</item>; <item type="input">3</item> and <item type="input">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result.</paragraph>
-</section>
-<section id="Section24">
+<paragraph xml-lang="en-US" id="hd_id3160340" role="heading" level="2" l10n="U"
+ oldref="369">SUMSQ</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3160368" role="paragraph" l10n="U" oldref="370"><ahelp hid="HID_FUNC_QUADRATESUMME">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3160388" role="heading" level="3" l10n="U"
+ oldref="371">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3160402" role="code" l10n="U" oldref="372">SUMSQ(Number1; Number2; ...; Number30)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3160415" role="paragraph" l10n="U" oldref="373">
+ <emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3160436" role="heading" level="3" l10n="U"
+ oldref="374">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3160449" role="paragraph" l10n="U" oldref="375">If you enter the numbers <item type="input">2</item>; <item type="input">3</item> and <item type="input">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result.</paragraph>
+ </section>
+ <section id="Section24">
<bookmark xml-lang="en-US" branch="index" id="bm_id3158247"><bookmark_value>MOD function</bookmark_value>
-<bookmark_value>remainders of divisions</bookmark_value>
+ <bookmark_value>remainders of divisions</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_REST" id="bm_id3158259" localize="false"/>
-<paragraph role="heading" id="hd_id3158247" xml-lang="en-US" level="2" l10n="U" oldref="387">MOD</paragraph>
-<paragraph role="paragraph" id="par_id3158276" xml-lang="en-US" l10n="CHG" oldref="388"><ahelp hid="HID_FUNC_REST">Returns the remainder when one integer is divided by another.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3158294" xml-lang="en-US" level="3" l10n="U" oldref="389">Syntax</paragraph>
-<paragraph role="code" id="par_id3158308" xml-lang="en-US" l10n="U" oldref="390">MOD(Dividend; Divisor)</paragraph>
-<paragraph role="paragraph" id="par_id3158321" xml-lang="en-US" l10n="CHG" oldref="391"> For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id3158341" xml-lang="en-US" l10n="CHG" oldref="392">This function is implemented as <item type="literal">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer.</paragraph>
-<paragraph role="heading" id="hd_id3158361" xml-lang="en-US" level="3" l10n="U" oldref="393">Example</paragraph>
-<paragraph role="paragraph" id="par_id3158374" xml-lang="en-US" l10n="CHG" oldref="394">
-<item type="input">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3.</paragraph>
-<paragraph role="paragraph" id="par_id1278420" xml-lang="en-US" l10n="NEW">
-<item type="input">=MOD(11.25;2.5)</item> returns 1.25.</paragraph><comment>see also QUOTIENT, INT, </comment>
+<paragraph xml-lang="en-US" id="hd_id3158247" role="heading" level="2" l10n="U"
+ oldref="387">MOD</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158276" role="paragraph" l10n="CHG" oldref="388"><ahelp hid="HID_FUNC_REST">Returns the remainder when one integer is divided by another.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3158294" role="heading" level="3" l10n="U"
+ oldref="389">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158308" role="code" l10n="U" oldref="390">MOD(Dividend; Divisor)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158321" role="paragraph" l10n="CHG" oldref="391"> For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158341" role="paragraph" l10n="CHG" oldref="392">This function is implemented as <item type="literal">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3158361" role="heading" level="3" l10n="U"
+ oldref="393">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158374" role="paragraph" l10n="CHG" oldref="394">
+ <item type="input">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1278420" role="paragraph" l10n="NEW">
+ <item type="input">=MOD(11.25;2.5)</item> returns 1.25.</paragraph><comment>see also QUOTIENT, INT, </comment>
</section>
-<section id="Section23">
+ <section id="Section23">
<bookmark xml-lang="en-US" branch="index" id="bm_id3144592"><bookmark_value>QUOTIENT function</bookmark_value>
-<bookmark_value>divisions</bookmark_value>
+ <bookmark_value>divisions</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_AAI_FUNC_QUOTIENT" id="bm_id3144603" localize="false"/>
-<paragraph role="heading" id="hd_id3144592" xml-lang="en-US" level="2" l10n="E" oldref="652">QUOTIENT</paragraph>
-<paragraph role="paragraph" id="par_id3144627" xml-lang="en-US" l10n="CHG" oldref="653"><ahelp hid="HID_AAI_FUNC_QUOTIENT">Returns the integer part of a division operation.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3144646" xml-lang="en-US" level="3" l10n="U" oldref="654">Syntax</paragraph>
-<paragraph role="code" id="par_id3144659" xml-lang="en-US" l10n="U" oldref="655">QUOTIENT(Numerator; Denominator)</paragraph>
-<paragraph role="paragraph" id="par_id9038972" xml-lang="en-US" l10n="NEW">Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id7985168" xml-lang="en-US" l10n="NEW">QUOTIENT is equivalent to <item type="literal">INT(numerator/denominator)</item>, except that it may report errors with different error codes.</paragraph>
-<paragraph role="heading" id="hd_id3144674" xml-lang="en-US" level="3" l10n="U" oldref="656">Example</paragraph>
-<paragraph role="paragraph" id="par_id3144687" xml-lang="en-US" l10n="CHG" oldref="657">
-<item type="input">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost.</paragraph><comment>see also MOD, INT </comment>
+<paragraph xml-lang="en-US" id="hd_id3144592" role="heading" level="2" l10n="E"
+ oldref="652">QUOTIENT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144627" role="paragraph" l10n="CHG" oldref="653"><ahelp hid="HID_AAI_FUNC_QUOTIENT">Returns the integer part of a division operation.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3144646" role="heading" level="3" l10n="U"
+ oldref="654">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144659" role="code" l10n="U" oldref="655">QUOTIENT(Numerator; Denominator)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9038972" role="paragraph" l10n="NEW">Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7985168" role="paragraph" l10n="NEW">QUOTIENT is equivalent to <item type="literal">INT(numerator/denominator)</item>, except that it may report errors with different error codes.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3144674" role="heading" level="3" l10n="U"
+ oldref="656">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144687" role="paragraph" l10n="CHG" oldref="657">
+ <item type="input">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost.</paragraph><comment>see also MOD, INT </comment>
</section>
-<section id="Section22">
+ <section id="Section22">
<bookmark xml-lang="en-US" branch="index" id="bm_id3144702"><bookmark_value>RADIANS function</bookmark_value>
-<bookmark_value>converting;degrees, into radians</bookmark_value>
+ <bookmark_value>converting;degrees, into radians</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_RAD" id="bm_id3158008" localize="false"/>
-<paragraph role="heading" id="hd_id3144702" xml-lang="en-US" level="2" l10n="U" oldref="377">RADIANS</paragraph>
-<paragraph role="paragraph" id="par_id3158025" xml-lang="en-US" l10n="U" oldref="378"><ahelp hid="HID_FUNC_RAD">Converts degrees to radians.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3158042" xml-lang="en-US" level="3" l10n="U" oldref="379">Syntax</paragraph>
-<paragraph role="code" id="par_id3158055" xml-lang="en-US" l10n="U" oldref="380">RADIANS(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3158069" xml-lang="en-US" l10n="CHG" oldref="381">
-<emph>Number</emph> is the angle in degrees to be converted to radians.</paragraph>
-<paragraph role="heading" id="hd_id876186" xml-lang="en-US" level="3" l10n="NEW">Example</paragraph>
-<paragraph role="paragraph" id="par_id3939634" xml-lang="en-US" l10n="NEW">
-<item type="input">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy.</paragraph><comment>see also DEGREES </comment>
+<paragraph xml-lang="en-US" id="hd_id3144702" role="heading" level="2" l10n="U"
+ oldref="377">RADIANS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158025" role="paragraph" l10n="U" oldref="378"><ahelp hid="HID_FUNC_RAD">Converts degrees to radians.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3158042" role="heading" level="3" l10n="U"
+ oldref="379">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158055" role="code" l10n="U" oldref="380">RADIANS(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158069" role="paragraph" l10n="CHG" oldref="381">
+ <emph>Number</emph> is the angle in degrees to be converted to radians.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id876186" role="heading" level="3" l10n="NEW">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3939634" role="paragraph" l10n="NEW">
+ <item type="input">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy.</paragraph><comment>see also DEGREES </comment>
</section>
-<section id="Section21">
+ <section id="Section21">
<bookmark xml-lang="en-US" branch="index" id="bm_id3158121"><bookmark_value>ROUND function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_RUNDEN" id="bm_id3158133" localize="false"/>
-<paragraph role="heading" id="hd_id3158121" xml-lang="en-US" level="2" l10n="U" oldref="398">ROUND</paragraph>
-<paragraph role="paragraph" id="par_id3158150" xml-lang="en-US" l10n="CHG" oldref="399"><ahelp hid="HID_FUNC_RUNDEN">Rounds a number to a certain number of decimal places.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3158169" xml-lang="en-US" level="3" l10n="U" oldref="400">Syntax</paragraph>
-<paragraph role="code" id="par_id3158182" xml-lang="en-US" l10n="U" oldref="401">ROUND(Number; Count)</paragraph>
-<paragraph role="paragraph" id="par_id3158196" xml-lang="en-US" l10n="U" oldref="402">Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Ccunt is negative, the function rounds to the nearest 10, 100, 1000, etc.</paragraph>
-<paragraph role="paragraph" id="par_id599688" xml-lang="en-US" l10n="NEW">This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives.</paragraph>
-<paragraph role="heading" id="hd_id3145863" xml-lang="en-US" level="3" l10n="U" oldref="404">Example</paragraph>
-<paragraph role="paragraph" id="par_id3145876" xml-lang="en-US" l10n="CHG" oldref="405">
-<item type="input">=ROUND(2.348;2)</item> returns 2.35</paragraph>
-<paragraph role="paragraph" id="par_id3145899" xml-lang="en-US" l10n="CHG" oldref="406">
-<item type="input">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals.</paragraph>
-<paragraph role="paragraph" id="par_id1371501" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUND(2.348;0)</item> returns 2.</paragraph>
-<paragraph role="paragraph" id="par_id4661702" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUND(2.5)</item> returns 3. </paragraph>
-<paragraph role="paragraph" id="par_id7868892" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUND(987.65;-2)</item> returns 1000.</paragraph><comment>see also INT, TRUNC, ROUNDDOWN, ROUNDUP,
+<paragraph xml-lang="en-US" id="hd_id3158121" role="heading" level="2" l10n="U"
+ oldref="398">ROUND</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158150" role="paragraph" l10n="CHG" oldref="399"><ahelp hid="HID_FUNC_RUNDEN">Rounds a number to a certain number of decimal places.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3158169" role="heading" level="3" l10n="U"
+ oldref="400">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158182" role="code" l10n="U" oldref="401">ROUND(Number; Count)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158196" role="paragraph" l10n="U" oldref="402">Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Ccunt is negative, the function rounds to the nearest 10, 100, 1000, etc.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id599688" role="paragraph" l10n="NEW">This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145863" role="heading" level="3" l10n="U"
+ oldref="404">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145876" role="paragraph" l10n="CHG" oldref="405">
+ <item type="input">=ROUND(2.348;2)</item> returns 2.35</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145899" role="paragraph" l10n="CHG" oldref="406">
+ <item type="input">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1371501" role="paragraph" l10n="NEW">
+ <item type="input">=ROUND(2.348;0)</item> returns 2.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id4661702" role="paragraph" l10n="NEW">
+ <item type="input">=ROUND(2.5)</item> returns 3. </paragraph>
+ <paragraph xml-lang="en-US" id="par_id7868892" role="paragraph" l10n="NEW">
+ <item type="input">=ROUND(987.65;-2)</item> returns 1000.</paragraph><comment>see also INT, TRUNC, ROUNDDOWN, ROUNDUP,
CEILING, FLOOR, EVEN, ODD, MROUND</comment>
</section>
-<section id="Section20">
+ <section id="Section20">
<bookmark xml-lang="en-US" branch="index" id="bm_id3145991"><bookmark_value>ROUNDDOWN function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ABRUNDEN" id="bm_id3146003" localize="false"/>
-<paragraph role="heading" id="hd_id3145991" xml-lang="en-US" level="2" l10n="U" oldref="24">ROUNDDOWN</paragraph>
-<paragraph role="paragraph" id="par_id3146020" xml-lang="en-US" l10n="CHG" oldref="25"><ahelp hid="HID_FUNC_ABRUNDEN">Rounds a number down, toward zero, to a certain precision.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3146037" xml-lang="en-US" level="3" l10n="U" oldref="26">Syntax</paragraph>
-<paragraph role="code" id="par_id3146051" xml-lang="en-US" l10n="U" oldref="27">ROUNDDOWN(Number; Count)</paragraph>
-<paragraph role="paragraph" id="par_id3146064" xml-lang="en-US" l10n="CHG" oldref="28">Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc.</paragraph>
-<paragraph role="paragraph" id="par_id2188787" xml-lang="en-US" l10n="NEW">This function rounds towards zero. See ROUNDUP and ROUND for alternatives.</paragraph>
-<paragraph role="heading" id="hd_id3163164" xml-lang="en-US" level="3" l10n="U" oldref="30">Example</paragraph>
-<paragraph role="paragraph" id="par_id3163178" xml-lang="en-US" l10n="CHG" oldref="31">
-<item type="input">=ROUNDDOWN(1.234;2)</item> returns 1.23.</paragraph>
-<paragraph role="paragraph" id="par_id5833307" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUNDDOWN(45.67;0)</item> returns 45.</paragraph>
-<paragraph role="paragraph" id="par_id7726676" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUNDDOWN(-45.67)</item> returns -45.</paragraph>
-<paragraph role="paragraph" id="par_id3729361" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUNDDOWN(987.65;-2)</item> returns 900.</paragraph><comment>see also INT, TRUNC, ROUND, ROUNDUP,
+<paragraph xml-lang="en-US" id="hd_id3145991" role="heading" level="2" l10n="U"
+ oldref="24">ROUNDDOWN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146020" role="paragraph" l10n="CHG" oldref="25"><ahelp hid="HID_FUNC_ABRUNDEN">Rounds a number down, toward zero, to a certain precision.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146037" role="heading" level="3" l10n="U"
+ oldref="26">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146051" role="code" l10n="U" oldref="27">ROUNDDOWN(Number; Count)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146064" role="paragraph" l10n="CHG" oldref="28">Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id2188787" role="paragraph" l10n="NEW">This function rounds towards zero. See ROUNDUP and ROUND for alternatives.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163164" role="heading" level="3" l10n="U"
+ oldref="30">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163178" role="paragraph" l10n="CHG" oldref="31">
+ <item type="input">=ROUNDDOWN(1.234;2)</item> returns 1.23.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5833307" role="paragraph" l10n="NEW">
+ <item type="input">=ROUNDDOWN(45.67;0)</item> returns 45.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7726676" role="paragraph" l10n="NEW">
+ <item type="input">=ROUNDDOWN(-45.67)</item> returns -45.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3729361" role="paragraph" l10n="NEW">
+ <item type="input">=ROUNDDOWN(987.65;-2)</item> returns 900.</paragraph><comment>see also INT, TRUNC, ROUND, ROUNDUP,
CEILING, FLOOR, EVEN, ODD, MROUND</comment>
</section>
-<section id="Section19">
+ <section id="Section19">
<bookmark xml-lang="en-US" branch="index" id="bm_id3163268"><bookmark_value>ROUNDUP function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_AUFRUNDEN" id="bm_id3163280" localize="false"/>
-<paragraph role="heading" id="hd_id3163268" xml-lang="en-US" level="2" l10n="U" oldref="140">ROUNDUP</paragraph>
-<paragraph role="paragraph" id="par_id3163297" xml-lang="en-US" l10n="CHG" oldref="141"><ahelp hid="HID_FUNC_AUFRUNDEN">Rounds a number up, away from zero, to a certain precision.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3163315" xml-lang="en-US" level="3" l10n="U" oldref="142">Syntax</paragraph>
-<paragraph role="code" id="par_id3163328" xml-lang="en-US" l10n="U" oldref="143">ROUNDUP(Number; Count)</paragraph>
-<paragraph role="paragraph" id="par_id3163342" xml-lang="en-US" l10n="CHG" oldref="144">Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc.</paragraph>
-<paragraph role="paragraph" id="par_id9573961" xml-lang="en-US" l10n="NEW">This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives.</paragraph>
-<paragraph role="heading" id="hd_id3163381" xml-lang="en-US" level="3" l10n="U" oldref="146">Example</paragraph>
-<paragraph role="paragraph" id="par_id3144786" xml-lang="en-US" l10n="CHG" oldref="147">
-<item type="input">=ROUNDUP(1.1111;2)</item> returns 1.12.</paragraph>
-<paragraph role="paragraph" id="par_id7700430" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUNDUP(1.2345;1)</item> returns 1.3.</paragraph>
-<paragraph role="paragraph" id="par_id1180455" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUNDUP(45.67;0)</item> returns 46.</paragraph>
-<paragraph role="paragraph" id="par_id3405560" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUNDUP(-45.67)</item> returns -46.</paragraph>
-<paragraph role="paragraph" id="par_id3409527" xml-lang="en-US" l10n="NEW">
-<item type="input">=ROUNDUP(987.65;-2)</item> returns 1000.</paragraph><comment>see also INT, TRUNC, ROUND, ROUNDDOWN,
+<paragraph xml-lang="en-US" id="hd_id3163268" role="heading" level="2" l10n="U"
+ oldref="140">ROUNDUP</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163297" role="paragraph" l10n="CHG" oldref="141"><ahelp hid="HID_FUNC_AUFRUNDEN">Rounds a number up, away from zero, to a certain precision.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163315" role="heading" level="3" l10n="U"
+ oldref="142">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163328" role="code" l10n="U" oldref="143">ROUNDUP(Number; Count)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163342" role="paragraph" l10n="CHG" oldref="144">Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9573961" role="paragraph" l10n="NEW">This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163381" role="heading" level="3" l10n="U"
+ oldref="146">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144786" role="paragraph" l10n="CHG" oldref="147">
+ <item type="input">=ROUNDUP(1.1111;2)</item> returns 1.12.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7700430" role="paragraph" l10n="NEW">
+ <item type="input">=ROUNDUP(1.2345;1)</item> returns 1.3.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1180455" role="paragraph" l10n="NEW">
+ <item type="input">=ROUNDUP(45.67;0)</item> returns 46.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3405560" role="paragraph" l10n="NEW">
+ <item type="input">=ROUNDUP(-45.67)</item> returns -46.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3409527" role="paragraph" l10n="NEW">
+ <item type="input">=ROUNDUP(987.65;-2)</item> returns 1000.</paragraph><comment>see also INT, TRUNC, ROUND, ROUNDDOWN,
CEILING, FLOOR, EVEN, ODD, MROUND</comment>
</section>
-<section id="Section18">
+ <section id="Section18">
<bookmark xml-lang="en-US" branch="index" id="bm_id3144877"><bookmark_value>SIN function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_SIN" id="bm_id3144889" localize="false"/>
-<paragraph role="heading" id="hd_id3144877" xml-lang="en-US" level="2" l10n="U" oldref="408">SIN</paragraph>
-<paragraph role="paragraph" id="par_id3144906" xml-lang="en-US" l10n="CHG" oldref="409"><ahelp hid="HID_FUNC_SIN">Returns the sine of the given angle (in radians).</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3144923" xml-lang="en-US" level="3" l10n="U" oldref="410">Syntax</paragraph>
-<paragraph role="code" id="par_id3144937" xml-lang="en-US" l10n="U" oldref="411">SIN(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3144950" xml-lang="en-US" l10n="CHG" oldref="412">Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians.</paragraph>
-<paragraph role="paragraph" id="par_id8079470" xml-lang="en-US" l10n="NEW">To return the sine of an angle in degrees, use the RADIANS function.</paragraph>
-<paragraph role="heading" id="hd_id3144969" xml-lang="en-US" level="3" l10n="U" oldref="413">Example</paragraph>
-<paragraph role="paragraph" id="par_id3144983" xml-lang="en-US" l10n="CHG" oldref="414">
-<item type="input">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians.</paragraph>
-<paragraph role="paragraph" id="par_id3916440" xml-lang="en-US" l10n="NEW">
-<item type="input">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees.</paragraph><comment>see also COS, TAN, COT,
+<paragraph xml-lang="en-US" id="hd_id3144877" role="heading" level="2" l10n="U"
+ oldref="408">SIN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144906" role="paragraph" l10n="CHG" oldref="409"><ahelp hid="HID_FUNC_SIN">Returns the sine of the given angle (in radians).</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3144923" role="heading" level="3" l10n="U"
+ oldref="410">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144937" role="code" l10n="U" oldref="411">SIN(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144950" role="paragraph" l10n="CHG" oldref="412">Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8079470" role="paragraph" l10n="NEW">To return the sine of an angle in degrees, use the RADIANS function.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3144969" role="heading" level="3" l10n="U"
+ oldref="413">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144983" role="paragraph" l10n="CHG" oldref="414">
+ <item type="input">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3916440" role="paragraph" l10n="NEW">
+ <item type="input">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees.</paragraph><comment>see also COS, TAN, COT,
ACOS, ASIN, ATAN, ATAN2, ACOT </comment>
</section>
-<section id="Section17">
+ <section id="Section17">
<bookmark xml-lang="en-US" branch="index" id="bm_id3163397"><bookmark_value>SINH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_SINHYP" id="bm_id3163409" localize="false"/>
-<paragraph role="heading" id="hd_id3163397" xml-lang="en-US" level="2" l10n="U" oldref="418">SINH</paragraph>
-<paragraph role="paragraph" id="par_id3163426" xml-lang="en-US" l10n="U" oldref="419"><ahelp hid="HID_FUNC_SINHYP">Returns the hyperbolic sine of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3163444" xml-lang="en-US" level="3" l10n="U" oldref="420">Syntax</paragraph>
-<paragraph role="code" id="par_id3163457" xml-lang="en-US" l10n="U" oldref="421">SINH(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3163471" xml-lang="en-US" l10n="CHG" oldref="422">Returns the hyperbolic sine of <emph>Number</emph>.</paragraph>
-<paragraph role="heading" id="hd_id3163491" xml-lang="en-US" level="3" l10n="U" oldref="423">Example</paragraph>
-<paragraph role="paragraph" id="par_id3163504" xml-lang="en-US" l10n="CHG" oldref="424">
-<item type="input">=SINH(0)</item> returns 0, the hyperbolic sine of 0.</paragraph><comment>see also COSH, TANH, COTH,
+<paragraph xml-lang="en-US" id="hd_id3163397" role="heading" level="2" l10n="U"
+ oldref="418">SINH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163426" role="paragraph" l10n="U" oldref="419"><ahelp hid="HID_FUNC_SINHYP">Returns the hyperbolic sine of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163444" role="heading" level="3" l10n="U"
+ oldref="420">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163457" role="code" l10n="U" oldref="421">SINH(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163471" role="paragraph" l10n="CHG" oldref="422">Returns the hyperbolic sine of <emph>Number</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163491" role="heading" level="3" l10n="U"
+ oldref="423">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163504" role="paragraph" l10n="CHG" oldref="424">
+ <item type="input">=SINH(0)</item> returns 0, the hyperbolic sine of 0.</paragraph><comment>see also COSH, TANH, COTH,
ACOSH, ASINH, ATANH, ACOTH</comment>
</section>
-<section id="Section16">
+ <section id="Section16">
<bookmark xml-lang="en-US" branch="index" id="bm_id3163596"><bookmark_value>SUM function</bookmark_value>
-<bookmark_value>adding;numbers in cell ranges</bookmark_value>
+ <bookmark_value>adding;numbers in cell ranges</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_SUMME" id="bm_id3163608" localize="false"/>
-<paragraph role="heading" id="hd_id3163596" xml-lang="en-US" level="2" l10n="U" oldref="428">SUM</paragraph>
-<paragraph role="paragraph" id="par_id3163625" xml-lang="en-US" l10n="U" oldref="429"><ahelp hid="HID_FUNC_SUMME">Adds all the numbers in a range of cells.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3163643" xml-lang="en-US" level="3" l10n="U" oldref="430">Syntax</paragraph>
-<paragraph role="code" id="par_id3163656" xml-lang="en-US" l10n="U" oldref="431">SUM(Number1; Number2; ...; Number30)</paragraph>
-<paragraph role="paragraph" id="par_id3163671" xml-lang="en-US" l10n="U" oldref="432">
-<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated.</paragraph>
-<paragraph role="heading" id="hd_id3163690" xml-lang="en-US" level="3" l10n="U" oldref="433">Example</paragraph>
-<paragraph role="paragraph" id="par_id3163704" xml-lang="en-US" l10n="U" oldref="434">If you enter the numbers <item type="input">2</item>; <item type="input">3 </item>and <item type="input">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result.</paragraph>
-<paragraph role="paragraph" id="par_id3151740" xml-lang="en-US" l10n="U" oldref="556">
-<item type="input">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type="input">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range.</paragraph>
-<paragraph role="paragraph" id="par_id3151756" xml-lang="en-US" l10n="U" oldref="619">Conditions linked by AND can be used with the function SUM() in the following manner:</paragraph>
-<paragraph role="paragraph" id="par_id3151774" xml-lang="en-US" l10n="CHG" oldref="620">Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period &gt;=2008-01-01 to &lt;2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type="input">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type="input">-02-01</item>, that is no longer included.</paragraph>
-<paragraph role="paragraph" id="par_id3151799" xml-lang="en-US" l10n="U" oldref="621">Enter the following formula as an array formula:</paragraph>
-<paragraph role="paragraph" id="par_id3151813" xml-lang="en-US" l10n="U" oldref="622">
-<item type="input">=SUM((A1:A40&gt;=C1)*(A1:A40&lt;C2)*B1:B40)</item>
-</paragraph>
-<paragraph role="paragraph" id="par_id3151828" xml-lang="en-US" l10n="U" oldref="623">In order to enter this as an array formula, you must press the Shift<switchinline select="sys"><caseinline select="MAC">+Command</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces.</paragraph>
-<paragraph role="paragraph" id="par_id3151869" xml-lang="en-US" l10n="U" oldref="624">{=SUM((A1:A40&gt;=C1)*(A1:A40&lt;C2)*B1:B40)}</paragraph>
-<paragraph role="paragraph" id="par_id3151884" xml-lang="en-US" l10n="CHG" oldref="625">The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix.</paragraph>
-</section>
-<section id="Section15">
+<paragraph xml-lang="en-US" id="hd_id3163596" role="heading" level="2" l10n="U"
+ oldref="428">SUM</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163625" role="paragraph" l10n="U" oldref="429"><ahelp hid="HID_FUNC_SUMME">Adds all the numbers in a range of cells.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163643" role="heading" level="3" l10n="U"
+ oldref="430">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163656" role="code" l10n="U" oldref="431">SUM(Number1; Number2; ...; Number30)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163671" role="paragraph" l10n="U" oldref="432">
+ <emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163690" role="heading" level="3" l10n="U"
+ oldref="433">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163704" role="paragraph" l10n="U" oldref="434">If you enter the numbers <item type="input">2</item>; <item type="input">3 </item>and <item type="input">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151740" role="paragraph" l10n="U" oldref="556">
+ <item type="input">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type="input">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151756" role="paragraph" l10n="U" oldref="619">Conditions linked by AND can be used with the function SUM() in the following manner:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151774" role="paragraph" l10n="CHG" oldref="620">Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period &gt;=2008-01-01 to &lt;2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type="input">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type="input">-02-01</item>, that is no longer included.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151799" role="paragraph" l10n="U" oldref="621">Enter the following formula as an array formula:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151813" role="paragraph" l10n="U" oldref="622">
+ <item type="input">=SUM((A1:A40&gt;=C1)*(A1:A40&lt;C2)*B1:B40)</item>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151828" role="paragraph" l10n="U" oldref="623">In order to enter this as an array formula, you must press the Shift<switchinline select="sys"><caseinline select="MAC">+Command
+</caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151869" role="paragraph" l10n="U" oldref="624">{=SUM((A1:A40&gt;=C1)*(A1:A40&lt;C2)*B1:B40)}</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151884" role="paragraph" l10n="CHG" oldref="625">The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix.</paragraph>
+ </section>
+ <section id="Section15">
<bookmark xml-lang="en-US" branch="index" id="bm_id3151957"><bookmark_value>SUMIF function</bookmark_value>
-<bookmark_value>adding;specified numbers</bookmark_value>
+ <bookmark_value>adding;specified numbers</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_SUMMEWENN" id="bm_id3151969" localize="false"/>
-<paragraph role="heading" id="hd_id3151957" xml-lang="en-US" level="2" l10n="U" oldref="436">SUMIF</paragraph>
-<paragraph role="paragraph" id="par_id3151986" xml-lang="en-US" l10n="U" oldref="437"><ahelp hid="HID_FUNC_SUMMEWENN">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value.</paragraph>
-<embed href="text/shared/00/00000001.xhp#regulaer"/>
-<paragraph role="heading" id="hd_id3152015" xml-lang="en-US" level="3" l10n="U" oldref="438">Syntax</paragraph>
-<paragraph role="code" id="par_id3152028" xml-lang="en-US" l10n="U" oldref="439">SUMIF(Range; Criteria; SumRange)</paragraph>
-<paragraph role="paragraph" id="par_id3152043" xml-lang="en-US" l10n="U" oldref="440">
-<emph>Range</emph> is the range to which the criteria are to be applied.</paragraph>
-<paragraph role="paragraph" id="par_id3152062" xml-lang="en-US" l10n="CHG" oldref="441">
-<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes.</paragraph>
-<paragraph role="paragraph" id="par_id3152083" xml-lang="en-US" l10n="U" oldref="442">
-<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed.</paragraph>
-<paragraph role="note" id="par_id8347422" xml-lang="en-US" l10n="NEW">SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given.</paragraph>
-<paragraph role="heading" id="hd_id3152110" xml-lang="en-US" level="3" l10n="U" oldref="443">Example</paragraph>
-<paragraph role="paragraph" id="par_id3152148" xml-lang="en-US" l10n="CHG" oldref="626">To sum up only negative numbers: <item type="input">=SUMIF(A1:A10;"&lt;0")</item>
-</paragraph>
-<paragraph role="paragraph" id="par_id6670125" xml-lang="en-US" l10n="NEW">
-<item type="input">=SUMIF(A1:A10;"&gt;0";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are &gt;0.</paragraph>
-<paragraph role="paragraph" id="par_id6062196" xml-lang="en-US" l10n="NEW">See COUNTIF() for some more syntax examples that can be used with SUMIF().</paragraph>
-</section>
-<section id="Section14">
+<paragraph xml-lang="en-US" id="hd_id3151957" role="heading" level="2" l10n="U"
+ oldref="436">SUMIF</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151986" role="paragraph" l10n="U" oldref="437"><ahelp hid="HID_FUNC_SUMMEWENN">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value.</paragraph>
+ <embed href="text/shared/00/00000001.xhp#regulaer"/>
+ <paragraph xml-lang="en-US" id="hd_id3152015" role="heading" level="3" l10n="U"
+ oldref="438">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152028" role="code" l10n="U" oldref="439">SUMIF(Range; Criteria; SumRange)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152043" role="paragraph" l10n="U" oldref="440">
+ <emph>Range</emph> is the range to which the criteria are to be applied.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152062" role="paragraph" l10n="CHG" oldref="441">
+ <emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152083" role="paragraph" l10n="U" oldref="442">
+ <emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8347422" role="note" l10n="NEW">SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152110" role="heading" level="3" l10n="U"
+ oldref="443">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152148" role="paragraph" l10n="CHG" oldref="626">To sum up only negative numbers: <item type="input">=SUMIF(A1:A10;"&lt;0")</item>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="par_id6670125" role="paragraph" l10n="NEW">
+ <item type="input">=SUMIF(A1:A10;"&gt;0";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are &gt;0.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6062196" role="paragraph" l10n="NEW">See COUNTIF() for some more syntax examples that can be used with SUMIF().</paragraph>
+ </section>
+ <section id="Section14">
<bookmark xml-lang="en-US" branch="index" id="bm_id3152195"><bookmark_value>TAN function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_TAN" id="bm_id3152207" localize="false"/>
-<paragraph role="heading" id="hd_id3152195" xml-lang="en-US" level="2" l10n="U" oldref="446">TAN</paragraph>
-<paragraph role="paragraph" id="par_id3152224" xml-lang="en-US" l10n="CHG" oldref="447"><ahelp hid="HID_FUNC_TAN">Returns the tangent of the given angle (in radians).</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3152242" xml-lang="en-US" level="3" l10n="U" oldref="448">Syntax</paragraph>
-<paragraph role="code" id="par_id3152255" xml-lang="en-US" l10n="U" oldref="449">TAN(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3152269" xml-lang="en-US" l10n="CHG" oldref="450">Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians.</paragraph>
-<paragraph role="paragraph" id="par_id5752128" xml-lang="en-US" l10n="NEW">To return the tangent of an angle in degrees, use the RADIANS function.</paragraph>
-<paragraph role="heading" id="hd_id3152287" xml-lang="en-US" level="3" l10n="U" oldref="451">Example</paragraph>
-<paragraph role="paragraph" id="par_id3152301" xml-lang="en-US" l10n="CHG" oldref="452">
-<item type="input">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians.</paragraph>
-<paragraph role="paragraph" id="par_id1804864" xml-lang="en-US" l10n="NEW">
-<item type="input">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees.</paragraph><comment>see also COS, SIN, COT,
+<paragraph xml-lang="en-US" id="hd_id3152195" role="heading" level="2" l10n="U"
+ oldref="446">TAN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152224" role="paragraph" l10n="CHG" oldref="447"><ahelp hid="HID_FUNC_TAN">Returns the tangent of the given angle (in radians).</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152242" role="heading" level="3" l10n="U"
+ oldref="448">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152255" role="code" l10n="U" oldref="449">TAN(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152269" role="paragraph" l10n="CHG" oldref="450">Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5752128" role="paragraph" l10n="NEW">To return the tangent of an angle in degrees, use the RADIANS function.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152287" role="heading" level="3" l10n="U"
+ oldref="451">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152301" role="paragraph" l10n="CHG" oldref="452">
+ <item type="input">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1804864" role="paragraph" l10n="NEW">
+ <item type="input">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees.</paragraph><comment>see also COS, SIN, COT,
ACOS, ASIN, ATAN, ATAN2, ACOT</comment>
</section>
-<section id="Section13">
+ <section id="Section13">
<bookmark xml-lang="en-US" branch="index" id="bm_id3165434"><bookmark_value>TANH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_TANHYP" id="bm_id3165446" localize="false"/>
-<paragraph role="heading" id="hd_id3165434" xml-lang="en-US" level="2" l10n="U" oldref="456">TANH</paragraph>
-<paragraph role="paragraph" id="par_id3165462" xml-lang="en-US" l10n="U" oldref="457"><ahelp hid="HID_FUNC_TANHYP">Returns the hyperbolic tangent of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3165480" xml-lang="en-US" level="3" l10n="U" oldref="458">Syntax</paragraph>
-<paragraph role="code" id="par_id3165494" xml-lang="en-US" l10n="U" oldref="459">TANH(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3165508" xml-lang="en-US" l10n="CHG" oldref="460">Returns the hyperbolic tangent of <emph>Number</emph>.</paragraph>
-<paragraph role="heading" id="hd_id3165527" xml-lang="en-US" level="3" l10n="U" oldref="461">Example</paragraph>
-<paragraph role="paragraph" id="par_id3165541" xml-lang="en-US" l10n="CHG" oldref="462">
-<item type="input">=TANH(0)</item> returns 0, the hyperbolic tangent of 0.</paragraph><comment>see also COSH, SINH, COTH,
+<paragraph xml-lang="en-US" id="hd_id3165434" role="heading" level="2" l10n="U"
+ oldref="456">TANH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3165462" role="paragraph" l10n="U" oldref="457"><ahelp hid="HID_FUNC_TANHYP">Returns the hyperbolic tangent of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3165480" role="heading" level="3" l10n="U"
+ oldref="458">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3165494" role="code" l10n="U" oldref="459">TANH(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3165508" role="paragraph" l10n="CHG" oldref="460">Returns the hyperbolic tangent of <emph>Number</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3165527" role="heading" level="3" l10n="U"
+ oldref="461">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3165541" role="paragraph" l10n="CHG" oldref="462">
+ <item type="input">=TANH(0)</item> returns 0, the hyperbolic tangent of 0.</paragraph><comment>see also COSH, SINH, COTH,
ACOSH, ASINH, ATANH, ACOTH</comment>
</section>
-<section id="Section12">
+ <section id="Section12">
<bookmark xml-lang="en-US" branch="index" id="bm_id3165633"><bookmark_value>AutoFilter function; subtotals</bookmark_value>
-<bookmark_value>sums;of filtered data</bookmark_value>
-<bookmark_value>filtered data; sums</bookmark_value>
-<bookmark_value>SUBTOTAL function</bookmark_value>
+ <bookmark_value>sums;of filtered data</bookmark_value>
+ <bookmark_value>filtered data; sums</bookmark_value>
+ <bookmark_value>SUBTOTAL function</bookmark_value>
</bookmark><comment>mw made "sums..." a two level entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_TEILERGEBNIS" id="bm_id3165644" localize="false"/>
-<paragraph role="heading" id="hd_id3165633" xml-lang="en-US" level="2" l10n="U" oldref="466">SUBTOTAL</paragraph>
-<paragraph role="paragraph" id="par_id3165682" xml-lang="en-US" l10n="U" oldref="467"><ahelp hid="HID_FUNC_TEILERGEBNIS">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account.</paragraph>
-<paragraph role="heading" id="hd_id3165704" xml-lang="en-US" level="3" l10n="U" oldref="495">Syntax</paragraph>
-<paragraph role="code" id="par_id3165717" xml-lang="en-US" l10n="U" oldref="496">SUBTOTAL(Function; Range)</paragraph>
-<paragraph role="paragraph" id="par_id3165731" xml-lang="en-US" l10n="U" oldref="497">
-<emph>Function</emph> is a number that stands for one of the following functions:</paragraph>
-<table id="tbl_id3165752">
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165782" xml-lang="en-US" l10n="U" oldref="469">Function index</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165806" xml-lang="en-US" l10n="U" oldref="470">Function</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165833" xml-lang="en-US" l10n="U" oldref="471">1</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165856" xml-lang="en-US" l10n="U" oldref="472">AVERAGE</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165883" xml-lang="en-US" l10n="U" oldref="473">2</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165906" xml-lang="en-US" l10n="U" oldref="474">COUNT</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165933" xml-lang="en-US" l10n="U" oldref="475">3</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165956" xml-lang="en-US" l10n="U" oldref="476">COUNTA</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3165983" xml-lang="en-US" l10n="U" oldref="477">4</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3166006" xml-lang="en-US" l10n="U" oldref="478">MAX</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3166033" xml-lang="en-US" l10n="U" oldref="479">5</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3166056" xml-lang="en-US" l10n="U" oldref="480">MIN</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143316" xml-lang="en-US" l10n="U" oldref="481">6</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143339" xml-lang="en-US" l10n="U" oldref="482">PRODUCT</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143366" xml-lang="en-US" l10n="U" oldref="483">7</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143389" xml-lang="en-US" l10n="U" oldref="484">STDEV</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143416" xml-lang="en-US" l10n="U" oldref="485">8</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143439" xml-lang="en-US" l10n="U" oldref="486">STDEVP</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143466" xml-lang="en-US" l10n="U" oldref="487">9</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143489" xml-lang="en-US" l10n="U" oldref="488">SUM</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143516" xml-lang="en-US" l10n="U" oldref="489">10</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143539" xml-lang="en-US" l10n="U" oldref="490">VAR</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143566" xml-lang="en-US" l10n="U" oldref="491">11</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3143589" xml-lang="en-US" l10n="U" oldref="492">VARP</paragraph>
-</tablecell>
-</tablerow>
-</table>
+<paragraph xml-lang="en-US" id="hd_id3165633" role="heading" level="2" l10n="U"
+ oldref="466">SUBTOTAL</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3165682" role="paragraph" l10n="U" oldref="467"><ahelp hid="HID_FUNC_TEILERGEBNIS">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3165704" role="heading" level="3" l10n="U"
+ oldref="495">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3165717" role="code" l10n="U" oldref="496">SUBTOTAL(Function; Range)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3165731" role="paragraph" l10n="U" oldref="497">
+ <emph>Function</emph> is a number that stands for one of the following functions:</paragraph>
+ <table id="tbl_id3165752">
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165782" role="paragraph" l10n="U" oldref="469">Function index</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165806" role="paragraph" l10n="U" oldref="470">Function</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165833" role="paragraph" l10n="U" oldref="471">1</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165856" role="paragraph" l10n="U" oldref="472">AVERAGE</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165883" role="paragraph" l10n="U" oldref="473">2</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165906" role="paragraph" l10n="U" oldref="474">COUNT</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165933" role="paragraph" l10n="U" oldref="475">3</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165956" role="paragraph" l10n="U" oldref="476">COUNTA</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3165983" role="paragraph" l10n="U" oldref="477">4</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3166006" role="paragraph" l10n="U" oldref="478">MAX</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3166033" role="paragraph" l10n="U" oldref="479">5</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3166056" role="paragraph" l10n="U" oldref="480">MIN</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143316" role="paragraph" l10n="U" oldref="481">6</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143339" role="paragraph" l10n="U" oldref="482">PRODUCT</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143366" role="paragraph" l10n="U" oldref="483">7</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143389" role="paragraph" l10n="U" oldref="484">STDEV</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143416" role="paragraph" l10n="U" oldref="485">8</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143439" role="paragraph" l10n="U" oldref="486">STDEVP</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143466" role="paragraph" l10n="U" oldref="487">9</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143489" role="paragraph" l10n="U" oldref="488">SUM</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143516" role="paragraph" l10n="U" oldref="489">10</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143539" role="paragraph" l10n="U" oldref="490">VAR</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143566" role="paragraph" l10n="U" oldref="491">11</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3143589" role="paragraph" l10n="U" oldref="492">VARP</paragraph>
+ </tablecell>
+ </tablerow>
+ </table>
-<paragraph role="paragraph" id="par_id3143606" xml-lang="en-US" l10n="U" oldref="498">
-<emph>Range</emph> is the range whose cells are included.</paragraph>
-<paragraph role="heading" id="hd_id3143625" xml-lang="en-US" level="3" l10n="U" oldref="499">Example</paragraph>
-<paragraph role="paragraph" id="par_id3143638" xml-lang="en-US" l10n="U" oldref="562">You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:</paragraph>
-<paragraph role="paragraph" id="par_id3143658" xml-lang="en-US" l10n="U" oldref="563">
-<item type="input">=SUBTOTAL(9;B2:B5)</item>
-</paragraph>
-</section>
-<section id="Section11">
-<bookmark xml-lang="en-US" branch="index" id="bm_id3143672"><bookmark_value>Euro; converting in</bookmark_value>
-<bookmark_value>CONVERT function</bookmark_value>
+ <paragraph xml-lang="en-US" id="par_id3143606" role="paragraph" l10n="U" oldref="498">
+ <emph>Range</emph> is the range whose cells are included.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3143625" role="heading" level="3" l10n="U"
+ oldref="499">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143638" role="paragraph" l10n="U" oldref="562">You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143658" role="paragraph" l10n="U" oldref="563">
+ <item type="input">=SUBTOTAL(9;B2:B5)</item>
+ </paragraph>
+ </section>
+ <section id="Section11">
+<bookmark xml-lang="en-US" branch="index" id="bm_id3143672"><bookmark_value>Euro; converting</bookmark_value>
+ <bookmark_value>EUROCONVERT function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_UMRECHNEN" id="bm_id3143684" localize="false"/>
-<paragraph role="heading" id="hd_id3143672" xml-lang="en-US" level="2" l10n="U" oldref="564">CONVERT<comment>insert link in financial</comment></paragraph>
-<paragraph role="paragraph" id="par_id3143708" xml-lang="en-US" l10n="CHG" oldref="565"><ahelp hid="HID_FUNC_UMRECHNEN">Converts old European national currency to and from Euros.</ahelp></paragraph>
-<paragraph role="heading" id="par_id3143731" xml-lang="en-US" level="3" l10n="U" oldref="566">
-<emph>Syntax</emph>
-</paragraph>
-<paragraph role="code" id="par_id3143748" xml-lang="en-US" l10n="CHG" oldref="567">CONVERT(Value; "Currency1"; "Currency2")</paragraph>
-<paragraph role="paragraph" id="par_id3143763" xml-lang="en-US" l10n="U" oldref="568">
-<emph>Value</emph> is the amount of the currency to be converted.</paragraph>
-<paragraph role="paragraph" id="par_id3143782" xml-lang="en-US" l10n="U" oldref="569">
-<emph>Currency1</emph> and <emph>Currency2</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, "EUR"). The rates (shown per Euro) were set by the European Commission.</paragraph>
-<paragraph role="paragraph" id="par_id2361217" xml-lang="en-US" l10n="NEW">Either <emph>Currency1</emph> or <emph>Currency2</emph> must be specified as Euros.</paragraph>
-<paragraph role="heading" id="par_id3143819" xml-lang="en-US" level="3" l10n="U" oldref="570">
-<emph>Examples</emph>
-</paragraph>
-<paragraph role="paragraph" id="par_id3143837" xml-lang="en-US" l10n="U" oldref="571">
-<item type="input">=CONVERT(100;"ATS";"EUR")</item> converts 100 Austrian Schillings into Euros.</paragraph>
-<paragraph role="paragraph" id="par_id3143853" xml-lang="en-US" l10n="U" oldref="572">
-<item type="input">=CONVERT(100;"EUR";"DEM")</item> converts 100 Euros into German Marks.</paragraph>
-</section>
-<section id="Section10">
+<bookmark xml-lang="en-US" branch="hid/HID_FUNC_EUROCONVERT" id="bm_id0119200904282677" localize="false"/>
+<paragraph xml-lang="en-US" id="hd_id3143672" role="heading" level="2" l10n="CHG"
+ oldref="564">EUROCONVERT<comment>insert link in financial</comment></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143708" role="paragraph" l10n="CHG" oldref="565"><ahelp hid="HID_FUNC_UMRECHNEN">Converts between old European national currency and to and from Euros.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143731" role="heading" level="3" l10n="U"
+ oldref="566">
+ <emph>Syntax</emph>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143748" role="code" l10n="CHG" oldref="567">EUROCONVERT(Value; "From_currency"; "To_currency", full_precision, triangulation_precision)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143763" role="paragraph" l10n="U" oldref="568">
+ <emph>Value</emph> is the amount of the currency to be converted.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143782" role="paragraph" l10n="CHG" oldref="569">
+ <emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, "EUR"). The rates (shown per Euro) were set by the European Commission.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id0119200904301810" role="paragraph" l10n="NEW">
+ <emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id0119200904301815" role="paragraph" l10n="NEW">
+ <emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and &gt;=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is "EUR", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143819" role="heading" level="3" l10n="U"
+ oldref="570">
+ <emph>Examples</emph>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143837" role="paragraph" l10n="U" oldref="571">
+ <item type="input">=EUROCONVERT(100;"ATS";"EUR")</item> converts 100 Austrian Schillings into Euros.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143853" role="paragraph" l10n="U" oldref="572">
+ <item type="input">=EUROCONVERT(100;"EUR";"DEM")</item> converts 100 Euros into German Marks.</paragraph>
+ </section>
+ <section id="Section10">
<bookmark xml-lang="en-US" branch="index" id="bm_id3157177"><bookmark_value>ODD function</bookmark_value>
-<bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>
+ <bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_UNGERADE" id="bm_id3157188" localize="false"/>
-<paragraph role="heading" id="hd_id3157177" xml-lang="en-US" level="2" l10n="U" oldref="502">ODD</paragraph>
-<paragraph role="paragraph" id="par_id3157205" xml-lang="en-US" l10n="CHG" oldref="503"><ahelp hid="HID_FUNC_UNGERADE">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3157223" xml-lang="en-US" level="3" l10n="U" oldref="504">Syntax</paragraph>
-<paragraph role="code" id="par_id3157237" xml-lang="en-US" l10n="U" oldref="505">ODD(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3157250" xml-lang="en-US" l10n="CHG" oldref="506"> Returns <emph>Number</emph> rounded to the next odd integer up, away from zero.</paragraph>
-<paragraph role="heading" id="hd_id3157270" xml-lang="en-US" level="3" l10n="U" oldref="507">Example</paragraph>
-<paragraph role="paragraph" id="par_id3157283" xml-lang="en-US" l10n="CHG" oldref="508">
-<item type="input">=ODD(1.2)</item> returns 3.</paragraph>
-<paragraph role="paragraph" id="par_id8746910" xml-lang="en-US" l10n="NEW">
-<item type="input">=ODD(1)</item> returns 1.</paragraph>
-<paragraph role="paragraph" id="par_id9636524" xml-lang="en-US" l10n="NEW">
-<item type="input">=ODD(0)</item> returns 1.</paragraph>
-<paragraph role="paragraph" id="par_id5675527" xml-lang="en-US" l10n="NEW">
-<item type="input">=ODD(-3.1)</item> returns -5.</paragraph><comment>see also CEILING, FLOOR, EVEN, MROUND,
+<paragraph xml-lang="en-US" id="hd_id3157177" role="heading" level="2" l10n="U"
+ oldref="502">ODD</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157205" role="paragraph" l10n="CHG" oldref="503"><ahelp hid="HID_FUNC_UNGERADE">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3157223" role="heading" level="3" l10n="U"
+ oldref="504">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157237" role="code" l10n="U" oldref="505">ODD(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157250" role="paragraph" l10n="CHG" oldref="506"> Returns <emph>Number</emph> rounded to the next odd integer up, away from zero.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3157270" role="heading" level="3" l10n="U"
+ oldref="507">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157283" role="paragraph" l10n="CHG" oldref="508">
+ <item type="input">=ODD(1.2)</item> returns 3.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8746910" role="paragraph" l10n="NEW">
+ <item type="input">=ODD(1)</item> returns 1.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9636524" role="paragraph" l10n="NEW">
+ <item type="input">=ODD(0)</item> returns 1.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5675527" role="paragraph" l10n="NEW">
+ <item type="input">=ODD(-3.1)</item> returns -5.</paragraph><comment>see also CEILING, FLOOR, EVEN, MROUND,
INT, TRUNC, ROUND, ROUNDDOWN, ROUNDUP</comment>
</section>
-<section id="Section9">
+ <section id="Section9">
<bookmark xml-lang="en-US" branch="index" id="bm_id3157404"><bookmark_value>FLOOR function</bookmark_value>
-<bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>
+ <bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_UNTERGRENZE" id="bm_id3157415" localize="false"/>
-<paragraph role="heading" id="hd_id3157404" xml-lang="en-US" level="2" l10n="U" oldref="512">FLOOR</paragraph>
-<paragraph role="paragraph" id="par_id3157432" xml-lang="en-US" l10n="U" oldref="513"><ahelp hid="HID_FUNC_UNTERGRENZE">Rounds a number down to the nearest multiple of Significance.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3157451" xml-lang="en-US" level="3" l10n="U" oldref="514">Syntax</paragraph>
-<paragraph role="code" id="par_id3157464" xml-lang="en-US" l10n="U" oldref="515">FLOOR(Number; Significance; Mode)</paragraph>
-<paragraph role="paragraph" id="par_id3157478" xml-lang="en-US" l10n="U" oldref="516">
-<emph>Number</emph> is the number that is to be rounded down.</paragraph>
-<paragraph role="paragraph" id="par_id3157497" xml-lang="en-US" l10n="U" oldref="517">
-<emph>Significance</emph> is the value to whose multiple the number is to be rounded down.</paragraph>
-<paragraph role="paragraph" id="par_id3157517" xml-lang="en-US" l10n="CHG" oldref="561">
-<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter.</paragraph>
-<paragraph role="warning" id="par_id3163894" xml-lang="en-US" l10n="CHG" oldref="630">If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc.</paragraph>
-<paragraph role="heading" id="hd_id3163932" xml-lang="en-US" level="3" l10n="U" oldref="518">Example</paragraph>
-<paragraph role="paragraph" id="par_id3163945" xml-lang="en-US" l10n="CHG" oldref="519">
-<item type="input">=FLOOR( -11;-2)</item> returns -12</paragraph>
-<paragraph role="paragraph" id="par_id3163966" xml-lang="en-US" l10n="CHG" oldref="520">
-<item type="input">=FLOOR( -11;-2;0)</item> returns -12</paragraph>
-<paragraph role="paragraph" id="par_id3163988" xml-lang="en-US" l10n="CHG" oldref="521">
-<item type="input">=FLOOR( -11;-2;1)</item> returns -10</paragraph><comment>see also CEILING, EVEN, ODD, MROUND,
+<paragraph xml-lang="en-US" id="hd_id3157404" role="heading" level="2" l10n="U"
+ oldref="512">FLOOR</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157432" role="paragraph" l10n="U" oldref="513"><ahelp hid="HID_FUNC_UNTERGRENZE">Rounds a number down to the nearest multiple of Significance.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3157451" role="heading" level="3" l10n="U"
+ oldref="514">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157464" role="code" l10n="U" oldref="515">FLOOR(Number; Significance; Mode)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157478" role="paragraph" l10n="U" oldref="516">
+ <emph>Number</emph> is the number that is to be rounded down.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157497" role="paragraph" l10n="U" oldref="517">
+ <emph>Significance</emph> is the value to whose multiple the number is to be rounded down.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3157517" role="paragraph" l10n="CHG" oldref="561">
+ <emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163894" role="warning" l10n="CHG" oldref="630">If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3163932" role="heading" level="3" l10n="U"
+ oldref="518">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163945" role="paragraph" l10n="CHG" oldref="519">
+ <item type="input">=FLOOR( -11;-2)</item> returns -12</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163966" role="paragraph" l10n="CHG" oldref="520">
+ <item type="input">=FLOOR( -11;-2;0)</item> returns -12</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3163988" role="paragraph" l10n="CHG" oldref="521">
+ <item type="input">=FLOOR( -11;-2;1)</item> returns -10</paragraph><comment>see also CEILING, EVEN, ODD, MROUND,
INT, TRUNC, ROUND, ROUNDDOWN, ROUNDUP, </comment>
</section>
-<section id="Section8">
+ <section id="Section8">
<bookmark xml-lang="en-US" branch="index" id="bm_id3164086"><bookmark_value>SIGN function</bookmark_value>
-<bookmark_value>algebraic signs</bookmark_value>
+ <bookmark_value>algebraic signs</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_VORZEICHEN" id="bm_id3164098" localize="false"/>
-<paragraph role="heading" id="hd_id3164086" xml-lang="en-US" level="2" l10n="U" oldref="523">SIGN</paragraph>
-<paragraph role="paragraph" id="par_id3164115" xml-lang="en-US" l10n="CHG" oldref="524"><ahelp hid="HID_FUNC_VORZEICHEN">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3164136" xml-lang="en-US" level="3" l10n="U" oldref="525">Syntax</paragraph>
-<paragraph role="code" id="par_id3164150" xml-lang="en-US" l10n="U" oldref="526">SIGN(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3164164" xml-lang="en-US" l10n="U" oldref="527">
-<emph>Number</emph> is the number whose sign is to be determined.</paragraph>
-<paragraph role="heading" id="hd_id3164183" xml-lang="en-US" level="3" l10n="U" oldref="528">Example</paragraph>
-<paragraph role="paragraph" id="par_id3164197" xml-lang="en-US" l10n="CHG" oldref="529">
-<item type="input">=SIGN(3.4)</item> returns 1.</paragraph>
-<paragraph role="paragraph" id="par_id3164212" xml-lang="en-US" l10n="CHG" oldref="530">
-<item type="input">=SIGN(-4.5)</item> returns -1.</paragraph><comment>see also ABS</comment>
+<paragraph xml-lang="en-US" id="hd_id3164086" role="heading" level="2" l10n="U"
+ oldref="523">SIGN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164115" role="paragraph" l10n="CHG" oldref="524"><ahelp hid="HID_FUNC_VORZEICHEN">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164136" role="heading" level="3" l10n="U"
+ oldref="525">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164150" role="code" l10n="U" oldref="526">SIGN(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164164" role="paragraph" l10n="U" oldref="527">
+ <emph>Number</emph> is the number whose sign is to be determined.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164183" role="heading" level="3" l10n="U"
+ oldref="528">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164197" role="paragraph" l10n="CHG" oldref="529">
+ <item type="input">=SIGN(3.4)</item> returns 1.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164212" role="paragraph" l10n="CHG" oldref="530">
+ <item type="input">=SIGN(-4.5)</item> returns -1.</paragraph><comment>see also ABS</comment>
</section>
-<section id="Section7">
+ <section id="Section7">
<bookmark xml-lang="en-US" branch="index" id="bm_id3164252"><bookmark_value>MROUND function</bookmark_value>
-<bookmark_value>nearest multiple</bookmark_value>
+ <bookmark_value>nearest multiple</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_AAI_FUNC_MROUND" id="bm_id3164264" localize="false"/>
-<paragraph role="heading" id="hd_id3164252" xml-lang="en-US" level="2" l10n="E" oldref="658">MROUND</paragraph>
-<paragraph role="paragraph" id="par_id3164288" xml-lang="en-US" l10n="CHG" oldref="659"><ahelp hid="HID_AAI_FUNC_MROUND">Returns a number rounded to the nearest multiple of another number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3164306" xml-lang="en-US" level="3" l10n="U" oldref="660">Syntax</paragraph>
-<paragraph role="code" id="par_id3164320" xml-lang="en-US" l10n="U" oldref="661">MROUND(Number; Multiple)</paragraph>
-<paragraph role="paragraph" id="par_id3486434" xml-lang="en-US" l10n="NEW">Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>. </paragraph>
-<paragraph role="paragraph" id="par_id3068636" xml-lang="en-US" l10n="NEW">An alternative implementation would be <item type="literal">Multiple * ROUND(Number/Multiple)</item>.</paragraph>
-<paragraph role="heading" id="hd_id3164333" xml-lang="en-US" level="3" l10n="U" oldref="662">Example</paragraph>
-<paragraph role="paragraph" id="par_id3164347" xml-lang="en-US" l10n="CHG" oldref="663">
-<item type="input">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6).</paragraph>
-<paragraph role="paragraph" id="par_idN14DD6" xml-lang="en-US" l10n="CHG">
-<item type="input">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3).</paragraph><comment>see also CEILING, FLOOR, EVEN, ODD,
+<paragraph xml-lang="en-US" id="hd_id3164252" role="heading" level="2" l10n="E"
+ oldref="658">MROUND</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164288" role="paragraph" l10n="CHG" oldref="659"><ahelp hid="HID_AAI_FUNC_MROUND">Returns a number rounded to the nearest multiple of another number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164306" role="heading" level="3" l10n="U"
+ oldref="660">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164320" role="code" l10n="U" oldref="661">MROUND(Number; Multiple)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3486434" role="paragraph" l10n="NEW">Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>. </paragraph>
+ <paragraph xml-lang="en-US" id="par_id3068636" role="paragraph" l10n="NEW">An alternative implementation would be <item type="literal">Multiple * ROUND(Number/Multiple)</item>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164333" role="heading" level="3" l10n="U"
+ oldref="662">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164347" role="paragraph" l10n="CHG" oldref="663">
+ <item type="input">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6).</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN14DD6" role="paragraph" l10n="CHG">
+ <item type="input">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3).</paragraph><comment>see also CEILING, FLOOR, EVEN, ODD,
INT, TRUNC, ROUND, ROUNDDOWN, ROUNDUP</comment>
</section>
-<section id="Section6">
+ <section id="Section6">
<bookmark xml-lang="en-US" branch="index" id="bm_id3164375"><bookmark_value>SQRT function</bookmark_value>
-<bookmark_value>square roots;positive numbers</bookmark_value>
+ <bookmark_value>square roots;positive numbers</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_WURZEL" id="bm_id3164387" localize="false"/>
-<paragraph role="heading" id="hd_id3164375" xml-lang="en-US" level="2" l10n="U" oldref="532">SQRT</paragraph>
-<paragraph role="paragraph" id="par_id3164404" xml-lang="en-US" l10n="CHG" oldref="533"><ahelp hid="HID_FUNC_WURZEL">Returns the positive square root of a number.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3164424" xml-lang="en-US" level="3" l10n="U" oldref="534">Syntax</paragraph>
-<paragraph role="code" id="par_id3164437" xml-lang="en-US" l10n="U" oldref="535">SQRT(Number)</paragraph>
-<paragraph role="paragraph" id="par_id3164451" xml-lang="en-US" l10n="CHG" oldref="536">Returns the positive square root of <emph>Number</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id6870021" xml-lang="en-US" l10n="NEW"> Number must be positive.</paragraph>
-<paragraph role="heading" id="hd_id3164471" xml-lang="en-US" level="3" l10n="U" oldref="537">Example</paragraph>
-<paragraph role="paragraph" id="par_id3164484" xml-lang="en-US" l10n="CHG" oldref="538">
-<item type="input">=SQRT(16)</item> returns 4.</paragraph>
-<paragraph role="paragraph" id="par_id3591723" xml-lang="en-US" l10n="NEW">
-<item type="input">=SQRT(-16)</item> returns an <item type="literal">invalid argument</item> error.</paragraph><comment>see also SQRTPI, POWER </comment>
+<paragraph xml-lang="en-US" id="hd_id3164375" role="heading" level="2" l10n="U"
+ oldref="532">SQRT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164404" role="paragraph" l10n="CHG" oldref="533"><ahelp hid="HID_FUNC_WURZEL">Returns the positive square root of a number.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164424" role="heading" level="3" l10n="U"
+ oldref="534">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164437" role="code" l10n="U" oldref="535">SQRT(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164451" role="paragraph" l10n="CHG" oldref="536">Returns the positive square root of <emph>Number</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6870021" role="paragraph" l10n="NEW"> Number must be positive.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164471" role="heading" level="3" l10n="U"
+ oldref="537">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164484" role="paragraph" l10n="CHG" oldref="538">
+ <item type="input">=SQRT(16)</item> returns 4.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3591723" role="paragraph" l10n="NEW">
+ <item type="input">=SQRT(-16)</item> returns an <item type="literal">invalid argument</item> error.</paragraph><comment>see also SQRTPI, POWER </comment>
</section>
-<section id="Section5">
+ <section id="Section5">
<bookmark xml-lang="en-US" branch="index" id="bm_id3164560"><bookmark_value>SQRTPI function</bookmark_value>
-<bookmark_value>square roots;products of Pi</bookmark_value>
+ <bookmark_value>square roots;products of Pi</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_AAI_FUNC_SQRTPI" id="bm_id3164572" localize="false"/>
-<paragraph role="heading" id="hd_id3164560" xml-lang="en-US" level="2" l10n="E" oldref="665">SQRTPI</paragraph>
-<paragraph role="paragraph" id="par_id3164596" xml-lang="en-US" l10n="CHG" oldref="666"><ahelp hid="HID_AAI_FUNC_SQRTPI">Returns the square root of (PI times a number).</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3164614" xml-lang="en-US" level="3" l10n="U" oldref="667">Syntax</paragraph>
-<paragraph role="code" id="par_id3164627" xml-lang="en-US" l10n="U" oldref="668">SQRTPI(Number)</paragraph>
-<paragraph role="paragraph" id="par_id1501510" xml-lang="en-US" l10n="NEW">Returns the positive square root of (PI multiplied by <emph>Number</emph>).</paragraph>
-<paragraph role="paragraph" id="par_id9929197" xml-lang="en-US" l10n="NEW">This is equivalent to <item type="literal">SQRT(PI()*Number)</item>.</paragraph>
-<paragraph role="heading" id="hd_id3164641" xml-lang="en-US" level="3" l10n="U" oldref="669">Example</paragraph>
-<paragraph role="paragraph" id="par_id3164654" xml-lang="en-US" l10n="CHG" oldref="670">
-<item type="input">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628.</paragraph><comment>see also SQRT</comment>
+<paragraph xml-lang="en-US" id="hd_id3164560" role="heading" level="2" l10n="E"
+ oldref="665">SQRTPI</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164596" role="paragraph" l10n="CHG" oldref="666"><ahelp hid="HID_AAI_FUNC_SQRTPI">Returns the square root of (PI times a number).</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164614" role="heading" level="3" l10n="U"
+ oldref="667">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164627" role="code" l10n="U" oldref="668">SQRTPI(Number)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1501510" role="paragraph" l10n="NEW">Returns the positive square root of (PI multiplied by <emph>Number</emph>).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9929197" role="paragraph" l10n="NEW">This is equivalent to <item type="literal">SQRT(PI()*Number)</item>.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164641" role="heading" level="3" l10n="U"
+ oldref="669">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164654" role="paragraph" l10n="CHG" oldref="670">
+ <item type="input">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628.</paragraph><comment>see also SQRT</comment>
</section>
-<section id="Section4">
+ <section id="Section4">
<bookmark xml-lang="en-US" branch="index" id="bm_id3164669"><bookmark_value>random numbers; between limits</bookmark_value>
-<bookmark_value>RANDBETWEEN function</bookmark_value>
+ <bookmark_value>RANDBETWEEN function</bookmark_value>
</bookmark><comment>mw changed "random numbers;"</comment>
<bookmark xml-lang="en-US" branch="hid/HID_AAI_FUNC_RANDBETWEEN" id="bm_id3164680" localize="false"/>
-<paragraph role="heading" id="hd_id3164669" xml-lang="en-US" level="2" l10n="E" oldref="671">RANDBETWEEN</paragraph>
-<paragraph role="paragraph" id="par_id3164711" xml-lang="en-US" l10n="CHG" oldref="672"><ahelp hid="HID_AAI_FUNC_RANDBETWEEN">Returns an integer random number in a specified range.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3164745" xml-lang="en-US" level="3" l10n="U" oldref="673">Syntax</paragraph>
-<paragraph role="code" id="par_id3164758" xml-lang="en-US" l10n="U" oldref="674">RANDBETWEEN(Bottom; Top)</paragraph>
-<paragraph role="paragraph" id="par_id7112338" xml-lang="en-US" l10n="NEW">Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive).</paragraph>
-<paragraph role="paragraph" id="par_id2855616" xml-lang="en-US" l10n="NEW">This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9.</paragraph>
-<paragraph role="paragraph" id="par_id2091433" xml-lang="en-US" l10n="NEW">To generate random numbers which never recalculate, copy cells containing this function, and use <item type="menuitem">Edit - Paste Special</item> (with <item type="menuitem">Paste All</item> and <item type="menuitem">Formulas</item> not marked and <item type="menuitem">Numbers</item> marked).</paragraph>
-<paragraph role="heading" id="hd_id3164772" xml-lang="en-US" level="3" l10n="U" oldref="675">Example</paragraph>
-<paragraph role="paragraph" id="par_id3164785" xml-lang="en-US" l10n="U" oldref="676">
-<item type="input">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30.</paragraph><comment>see also RAND</comment>
+<paragraph xml-lang="en-US" id="hd_id3164669" role="heading" level="2" l10n="E"
+ oldref="671">RANDBETWEEN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164711" role="paragraph" l10n="CHG" oldref="672"><ahelp hid="HID_AAI_FUNC_RANDBETWEEN">Returns an integer random number in a specified range.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164745" role="heading" level="3" l10n="U"
+ oldref="673">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164758" role="code" l10n="U" oldref="674">RANDBETWEEN(Bottom; Top)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7112338" role="paragraph" l10n="NEW">Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id2855616" role="paragraph" l10n="NEW">This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select="sys"><caseinline select="MAC">Command
+</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id2091433" role="paragraph" l10n="NEW">To generate random numbers which never recalculate, copy cells containing this function, and use <item type="menuitem">Edit - Paste Special</item> (with <item type="menuitem">Paste All</item> and <item type="menuitem">Formulas</item> not marked and <item type="menuitem">Numbers</item> marked).</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164772" role="heading" level="3" l10n="U"
+ oldref="675">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164785" role="paragraph" l10n="U" oldref="676">
+ <item type="input">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30.</paragraph><comment>see also RAND</comment>
</section>
-<section id="Section3">
+ <section id="Section3">
<bookmark xml-lang="en-US" branch="index" id="bm_id3164800"><bookmark_value>RAND function</bookmark_value>
-<bookmark_value>random numbers;between 0 and 1</bookmark_value>
+ <bookmark_value>random numbers;between 0 and 1</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ZUFALLSZAHL" id="bm_id3164812" localize="false"/>
-<paragraph role="heading" id="hd_id3164800" xml-lang="en-US" level="2" l10n="U" oldref="542">RAND</paragraph>
-<paragraph role="paragraph" id="par_id3164829" xml-lang="en-US" l10n="CHG" oldref="543"><ahelp hid="HID_FUNC_ZUFALLSZAHL">Returns a random number between 0 and 1.</ahelp><comment>The value of 0 can be returned, the value of 1 not.</comment><comment>this is really true after issue 53642 will be fixed</comment></paragraph>
-<paragraph role="heading" id="hd_id3164870" xml-lang="en-US" level="3" l10n="U" oldref="545">Syntax</paragraph>
-<paragraph role="code" id="par_id3164884" xml-lang="en-US" l10n="U" oldref="546">RAND()</paragraph>
-<paragraph role="paragraph" id="par_id5092318" xml-lang="en-US" l10n="NEW">This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select="sys"><caseinline select="MAC">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9.</paragraph>
-<paragraph role="paragraph" id="par_id9312417" xml-lang="en-US" l10n="NEW">To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type="menuitem">Edit - Paste Special</item> (with <item type="menuitem">Paste All</item> and <item type="menuitem">Formulas</item> not marked and <item type="menuitem">Numbers</item> marked).</paragraph>
-<paragraph role="heading" id="hd_id9089022" xml-lang="en-US" level="3" l10n="NEW">Example</paragraph>
-<paragraph role="paragraph" id="par_id9569078" xml-lang="en-US" l10n="NEW">
-<item type="input">=RAND()</item> returns a random number between 0 and 1.</paragraph><comment>see also RANDBETWEEN
+<paragraph xml-lang="en-US" id="hd_id3164800" role="heading" level="2" l10n="U"
+ oldref="542">RAND</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164829" role="paragraph" l10n="CHG" oldref="543"><ahelp hid="HID_FUNC_ZUFALLSZAHL">Returns a random number between 0 and 1.</ahelp><comment>The value of 0 can be returned, the value of 1 not.</comment><comment>this is really true after issue 53642 will be fixed</comment></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3164870" role="heading" level="3" l10n="U"
+ oldref="545">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164884" role="code" l10n="U" oldref="546">RAND()</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5092318" role="paragraph" l10n="NEW">This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select="sys"><caseinline select="MAC">Command
+</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9312417" role="paragraph" l10n="NEW">To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type="menuitem">Edit - Paste Special</item> (with <item type="menuitem">Paste All</item> and <item type="menuitem">Formulas</item> not marked and <item type="menuitem">Numbers</item> marked).</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id9089022" role="heading" level="3" l10n="NEW">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9569078" role="paragraph" l10n="NEW">
+ <item type="input">=RAND()</item> returns a random number between 0 and 1.</paragraph><comment>see also RANDBETWEEN
</comment>
</section>
-<section id="Section2">
+ <section id="Section2">
<bookmark xml-lang="en-US" branch="index" id="bm_id3164897"><bookmark_value>COUNTIF function</bookmark_value>
-<bookmark_value>counting;specified cells</bookmark_value>
+ <bookmark_value>counting;specified cells</bookmark_value>
</bookmark><comment>mw added one entry</comment>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ZAEHLENWENN" id="bm_id3164909" localize="false"/>
-<paragraph role="heading" id="hd_id3164897" xml-lang="en-US" level="2" l10n="U" oldref="547">COUNTIF</paragraph>
-<paragraph role="paragraph" id="par_id3164926" xml-lang="en-US" l10n="CHG" oldref="548"><ahelp hid="HID_FUNC_ZAEHLENWENN">Returns the number of cells that meet with certain criteria within a cell range.</ahelp></paragraph>
-<embed href="text/shared/00/00000001.xhp#regulaer"/>
-<paragraph role="heading" id="hd_id3164953" xml-lang="en-US" level="3" l10n="U" oldref="549">Syntax</paragraph>
-<paragraph role="code" id="par_id3164967" xml-lang="en-US" l10n="U" oldref="550">COUNTIF(Range; Criteria)</paragraph>
-<paragraph role="paragraph" id="par_id3164980" xml-lang="en-US" l10n="U" oldref="551">
-<emph>Range</emph> is the range to which the criteria are to be applied.</paragraph>
-<paragraph role="paragraph" id="par_id3165000" xml-lang="en-US" l10n="CHG" oldref="552">
-<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes.</paragraph>
-<paragraph role="heading" id="hd_id3165037" xml-lang="en-US" level="3" l10n="U" oldref="553">Example</paragraph>
-<paragraph role="paragraph" id="par_id3166505" xml-lang="en-US" l10n="CHG" oldref="627">A1:A10 is a cell range containing the numbers <item type="input">2000</item> to <item type="input">2009</item>. Cell B1 contains the number <item type="input">2006</item>. In cell B2, you enter a formula:</paragraph>
-<paragraph role="paragraph" id="par_id3581652" xml-lang="en-US" l10n="NEW">
-<item type="input">=COUNTIF(A1:A10;2006)</item> - this returns 1</paragraph>
-<paragraph role="paragraph" id="par_id708639" xml-lang="en-US" l10n="NEW">
-<item type="input">=COUNTIF(A1:A10;B1)</item> - this returns 1</paragraph>
-<paragraph role="paragraph" id="par_id5169225" xml-lang="en-US" l10n="NEW">
-<item type="input">=COUNTIF(A1:A10;"&gt;=2006") </item>- this returns 3</paragraph>
-<paragraph role="paragraph" id="par_id2118594" xml-lang="en-US" l10n="NEW">
-<item type="input">=COUNTIF(A1:A10;"&lt;"&amp;B1)</item> - when B1 contains <item type="input">2006</item>, this returns 6</paragraph>
-<paragraph role="paragraph" id="par_id166020" xml-lang="en-US" l10n="NEW">
-<item type="input">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type="input">&gt;2006</item> counts the number of cells in the range A1:A10 which are &gt;2006 </paragraph>
-<paragraph role="paragraph" id="par_id6386913" xml-lang="en-US" l10n="NEW">To count only negative numbers: <item type="input">=COUNTIF(A1:A10;"&lt;0")</item>
-</paragraph>
-</section>
+<paragraph xml-lang="en-US" id="hd_id3164897" role="heading" level="2" l10n="U"
+ oldref="547">COUNTIF</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164926" role="paragraph" l10n="CHG" oldref="548"><ahelp hid="HID_FUNC_ZAEHLENWENN">Returns the number of cells that meet with certain criteria within a cell range.</ahelp></paragraph>
+ <embed href="text/shared/00/00000001.xhp#regulaer"/>
+ <paragraph xml-lang="en-US" id="hd_id3164953" role="heading" level="3" l10n="U"
+ oldref="549">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164967" role="code" l10n="U" oldref="550">COUNTIF(Range; Criteria)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3164980" role="paragraph" l10n="U" oldref="551">
+ <emph>Range</emph> is the range to which the criteria are to be applied.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3165000" role="paragraph" l10n="CHG" oldref="552">
+ <emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3165037" role="heading" level="3" l10n="U"
+ oldref="553">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3166505" role="paragraph" l10n="CHG" oldref="627">A1:A10 is a cell range containing the numbers <item type="input">2000</item> to <item type="input">2009</item>. Cell B1 contains the number <item type="input">2006</item>. In cell B2, you enter a formula:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3581652" role="paragraph" l10n="NEW">
+ <item type="input">=COUNTIF(A1:A10;2006)</item> - this returns 1</paragraph>
+ <paragraph xml-lang="en-US" id="par_id708639" role="paragraph" l10n="NEW">
+ <item type="input">=COUNTIF(A1:A10;B1)</item> - this returns 1</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5169225" role="paragraph" l10n="NEW">
+ <item type="input">=COUNTIF(A1:A10;"&gt;=2006") </item>- this returns 3</paragraph>
+ <paragraph xml-lang="en-US" id="par_id2118594" role="paragraph" l10n="NEW">
+ <item type="input">=COUNTIF(A1:A10;"&lt;"&amp;B1)</item> - when B1 contains <item type="input">2006</item>, this returns 6</paragraph>
+ <paragraph xml-lang="en-US" id="par_id166020" role="paragraph" l10n="NEW">
+ <item type="input">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type="input">&gt;2006</item> counts the number of cells in the range A1:A10 which are &gt;2006 </paragraph>
+ <paragraph xml-lang="en-US" id="par_id6386913" role="paragraph" l10n="NEW">To count only negative numbers: <item type="input">=COUNTIF(A1:A10;"&lt;0")</item>
+ </paragraph>
+ </section>
</sort>
<section id="relatedtopics">
-<embed href="text/scalc/01/04060100.xhp#drking"/>
-</section>
-</body>
-</helpdocument>
+ <embed href="text/scalc/01/04060100.xhp#drking"/>
+ </section>
+ </body>
+</helpdocument> \ No newline at end of file
diff --git a/helpcontent2/source/text/scalc/01/04060109.xhp b/helpcontent2/source/text/scalc/01/04060109.xhp
index e40c995eb9..0b9edb1030 100644
--- a/helpcontent2/source/text/scalc/01/04060109.xhp
+++ b/helpcontent2/source/text/scalc/01/04060109.xhp
@@ -10,8 +10,8 @@
*
* OpenOffice.org - a multi-platform office productivity suite
*
- * $RCSfile: 04060109.xhp,v $
- * $Revision: 1.20.4.2 $
+ * $RCSfile: soffice2xmlhelp.xsl,v $
+ * $Revision: 1.10 $
*
* This file is part of OpenOffice.org.
*
@@ -35,540 +35,594 @@
<meta>
-<topic id="textscalc0104060109xml" indexer="include">
-<title id="tit" xml-lang="en-US">Spreadsheet Functions</title>
-<filename>/text/scalc/01/04060109.xhp</filename>
-</topic>
-</meta>
-<body>
+ <topic id="textscalc0104060109xml" indexer="include">
+ <title xml-lang="en-US" id="tit">Spreadsheet Functions</title>
+ <filename>/text/scalc/01/04060109.xhp</filename>
+ </topic>
+ </meta>
+ <body>
<bookmark xml-lang="en-US" branch="index" id="bm_id3148522"><bookmark_value>spreadsheets; functions</bookmark_value>
-<bookmark_value>Function Wizard; spreadsheets</bookmark_value>
-<bookmark_value>functions; spreadsheets</bookmark_value>
+ <bookmark_value>Function Wizard; spreadsheets</bookmark_value>
+ <bookmark_value>functions; spreadsheets</bookmark_value>
</bookmark>
-<paragraph role="heading" id="hd_id3148522" xml-lang="en-US" level="1" l10n="U" oldref="1">Spreadsheet Functions</paragraph>
-<paragraph role="paragraph" id="par_id3144508" xml-lang="en-US" l10n="U" oldref="2"><variable id="tabelletext">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.
+<paragraph xml-lang="en-US" id="hd_id3148522" role="heading" level="1" l10n="U" oldref="1">Spreadsheet Functions</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144508" role="paragraph" l10n="U" oldref="2"><variable id="tabelletext">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.
</variable></paragraph>
-<section id="howtoget">
-<embed href="text/scalc/00/00000404.xhp#efefft"/>
-</section>
+ <section id="howtoget">
+ <embed href="text/scalc/00/00000404.xhp#efefft"/>
+ </section>
<sort order="asc">
<section id="Section1">
<bookmark xml-lang="en-US" branch="index" id="bm_id3146968"><bookmark_value>ADDRESS function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ADRESSE" id="bm_id3147546" localize="false"/>
-<paragraph role="heading" id="hd_id3146968" xml-lang="en-US" level="2" l10n="U" oldref="3">ADDRESS</paragraph>
-<paragraph role="paragraph" id="par_id3155762" xml-lang="en-US" l10n="CHG" oldref="4"><ahelp hid="HID_FUNC_ADRESSE">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet.</paragraph>
-<section id="r1c1">
-<paragraph role="paragraph" id="par_id1027200802301348" xml-lang="en-US" l10n="NEW">For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used.</paragraph>
-<paragraph role="paragraph" id="par_id1027200802301445" xml-lang="en-US" l10n="NEW">In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position.</paragraph>
-<paragraph role="paragraph" id="par_id102720080230153" xml-lang="en-US" l10n="NEW">In INDIRECT, the parameter is appended as the second parameter.</paragraph>
-<paragraph role="paragraph" id="par_id102720080230151" xml-lang="en-US" l10n="NEW">In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used. </paragraph>
-<paragraph role="paragraph" id="par_id1027200802301556" xml-lang="en-US" l10n="NEW">In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation.</paragraph>
-<paragraph role="paragraph" id="par_id1027200802301521" xml-lang="en-US" l10n="NEW">When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted.</paragraph>
-<paragraph role="paragraph" id="par_id1027200802301650" xml-lang="en-US" l10n="NEW">When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed.</paragraph>
-<paragraph role="note" id="par_id102720080230162" xml-lang="en-US" l10n="NEW">Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0.</paragraph>
-<paragraph role="note" id="par_id1027200802301756" xml-lang="en-US" l10n="NEW">The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function.</paragraph>
-</section>
-<paragraph role="heading" id="hd_id3151196" xml-lang="en-US" level="3" l10n="U" oldref="5">Syntax</paragraph>
-<paragraph role="code" id="par_id3154707" xml-lang="en-US" l10n="U" oldref="6">ADDRESS(Row; Column; Abs; A1; "Sheet")</paragraph>
-<paragraph role="paragraph" id="par_id3147505" xml-lang="en-US" l10n="U" oldref="7">
-<emph>Row</emph> represents the row number for the cell reference</paragraph>
-<paragraph role="paragraph" id="par_id3145323" xml-lang="en-US" l10n="U" oldref="8">
-<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)</paragraph>
-<paragraph role="paragraph" id="par_id3153074" xml-lang="en-US" l10n="U" oldref="9">
-<emph>Abs</emph> determines the type of reference:</paragraph>
-<paragraph role="paragraph" id="par_id3153298" xml-lang="en-US" l10n="CHG" oldref="10">1: absolute ($A$1)</paragraph>
-<paragraph role="paragraph" id="par_id3150431" xml-lang="en-US" l10n="U" oldref="11">2: row reference type is absolute; column reference is relative (A$1)</paragraph>
-<paragraph role="paragraph" id="par_id3146096" xml-lang="en-US" l10n="U" oldref="12">3: row (relative); column (absolute) ($A1)</paragraph>
-<paragraph role="paragraph" id="par_id3153334" xml-lang="en-US" l10n="U" oldref="13">4: relative (A1)</paragraph>
-<paragraph role="paragraph" id="par_id1027200802465915" xml-lang="en-US" l10n="NEW">
-<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used.</paragraph>
-<paragraph role="paragraph" id="par_id3153962" xml-lang="en-US" l10n="U" oldref="14">
-<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes.</paragraph>
-<paragraph role="heading" id="hd_id3147299" xml-lang="en-US" level="3" l10n="U" oldref="15">Example:</paragraph>
-<paragraph role="paragraph" id="par_id3148744" xml-lang="en-US" l10n="U" oldref="16">
-<item type="input">=ADDRESS(1;1;2;"Sheet2")</item> returns the following: Sheet2.A$1</paragraph>
-<paragraph role="paragraph" id="par_id3159260" xml-lang="en-US" l10n="U" oldref="17">If the cell A1 in sheet 2 contains the value <item type="input">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type="input">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6.</paragraph>
-</section>
-<section id="Section2">
+<paragraph xml-lang="en-US" id="hd_id3146968" role="heading" level="2" l10n="U" oldref="3">ADDRESS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155762" role="paragraph" l10n="CHG" oldref="4"><ahelp hid="HID_FUNC_ADRESSE">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet.</paragraph>
+ <section id="r1c1">
+ <paragraph xml-lang="en-US" id="par_id1027200802301348" role="paragraph" l10n="NEW">For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1027200802301445" role="paragraph" l10n="NEW">In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id102720080230153" role="paragraph" l10n="NEW">In INDIRECT, the parameter is appended as the second parameter.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id102720080230151" role="paragraph" l10n="NEW">In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used. </paragraph>
+ <paragraph xml-lang="en-US" id="par_id1027200802301556" role="paragraph" l10n="NEW">In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1027200802301521" role="paragraph" l10n="NEW">When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1027200802301650" role="paragraph" l10n="NEW">When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id102720080230162" role="note" l10n="NEW">Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1027200802301756" role="note" l10n="NEW">The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function.</paragraph>
+ </section>
+ <paragraph xml-lang="en-US" id="hd_id3151196" role="heading" level="3" l10n="U" oldref="5">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154707" role="code" l10n="U" oldref="6">ADDRESS(Row; Column; Abs; A1; "Sheet")</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147505" role="paragraph" l10n="U" oldref="7">
+ <emph>Row</emph> represents the row number for the cell reference</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145323" role="paragraph" l10n="U" oldref="8">
+ <emph>Column</emph> represents the column number for the cell reference (the number, not the letter)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153074" role="paragraph" l10n="U" oldref="9">
+ <emph>Abs</emph> determines the type of reference:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153298" role="paragraph" l10n="CHG" oldref="10">1: absolute ($A$1)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150431" role="paragraph" l10n="U" oldref="11">2: row reference type is absolute; column reference is relative (A$1)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146096" role="paragraph" l10n="U" oldref="12">3: row (relative); column (absolute) ($A1)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153334" role="paragraph" l10n="U" oldref="13">4: relative (A1)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1027200802465915" role="paragraph" l10n="NEW">
+ <emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153962" role="paragraph" l10n="U" oldref="14">
+ <emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3147299" role="heading" level="3" l10n="U"
+ oldref="15">Example:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148744" role="paragraph" l10n="U" oldref="16">
+ <item type="input">=ADDRESS(1;1;2;"Sheet2")</item> returns the following: Sheet2.A$1</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159260" role="paragraph" l10n="U" oldref="17">If the cell A1 in sheet 2 contains the value <item type="input">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type="input">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6.</paragraph>
+ </section>
+ <section id="Section2">
<bookmark xml-lang="en-US" branch="index" id="bm_id3150372"><bookmark_value>AREAS function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_BEREICHE" id="bm_id3149721" localize="false"/>
-<paragraph role="heading" id="hd_id3150372" xml-lang="en-US" level="2" l10n="U" oldref="19">AREAS</paragraph>
-<paragraph role="paragraph" id="par_id3150036" xml-lang="en-US" l10n="U" oldref="20"><ahelp hid="HID_FUNC_BEREICHE">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell.</paragraph>
-<paragraph role="heading" id="hd_id3145222" xml-lang="en-US" level="3" l10n="U" oldref="21">Syntax</paragraph>
-<paragraph role="code" id="par_id3155907" xml-lang="en-US" l10n="U" oldref="22">AREAS(Reference)</paragraph>
-<paragraph role="paragraph" id="par_id3153118" xml-lang="en-US" l10n="U" oldref="23">Reference represents the reference to a cell or cell range.</paragraph>
-<paragraph role="heading" id="hd_id3148891" xml-lang="en-US" level="3" l10n="U" oldref="24">Example</paragraph>
-<paragraph role="paragraph" id="par_id3149946" xml-lang="en-US" l10n="U" oldref="25">
-<item type="input">=AREAS(A1:B3;F2;G1)</item> returns 3, as it is a reference to three cells and/or areas.</paragraph>
-<paragraph role="paragraph" id="par_id3146820" xml-lang="en-US" l10n="U" oldref="26">
-<item type="input">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>.</paragraph>
-</section>
-<section id="Section3">
+<paragraph xml-lang="en-US" id="hd_id3150372" role="heading" level="2" l10n="U"
+ oldref="19">AREAS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150036" role="paragraph" l10n="U" oldref="20"><ahelp hid="HID_FUNC_BEREICHE">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145222" role="heading" level="3" l10n="U"
+ oldref="21">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155907" role="code" l10n="U" oldref="22">AREAS(Reference)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153118" role="paragraph" l10n="U" oldref="23">Reference represents the reference to a cell or cell range.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3148891" role="heading" level="3" l10n="U"
+ oldref="24">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149946" role="paragraph" l10n="U" oldref="25">
+ <item type="input">=AREAS(A1:B3;F2;G1)</item> returns 3, as it is a reference to three cells and/or areas.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146820" role="paragraph" l10n="U" oldref="26">
+ <item type="input">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>.</paragraph>
+ </section>
+ <section id="Section3">
<bookmark xml-lang="en-US" branch="index" id="bm_id3148727"><bookmark_value>DDE function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_DDE" id="bm_id3154680" localize="false"/>
-<paragraph role="heading" id="hd_id3148727" xml-lang="en-US" level="2" l10n="U" oldref="28">DDE</paragraph>
-<paragraph role="paragraph" id="par_id3149434" xml-lang="en-US" l10n="U" oldref="29"><ahelp hid="HID_FUNC_DDE">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type="productname">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed.</paragraph>
-<paragraph role="heading" id="hd_id3150700" xml-lang="en-US" level="3" l10n="U" oldref="30">Syntax</paragraph>
-<paragraph role="code" id="par_id3148886" xml-lang="en-US" l10n="U" oldref="31">DDE("Server"; "File"; "Range"; Mode)</paragraph>
-<paragraph role="paragraph" id="par_id3154842" xml-lang="en-US" l10n="U" oldref="32">
-<emph>Server</emph> is the name of a server application. <item type="productname">%PRODUCTNAME</item>applications have the server name "Soffice".</paragraph>
-<paragraph role="paragraph" id="par_id3153034" xml-lang="en-US" l10n="U" oldref="33">
-<emph>File</emph> is the complete file name, including path specification.</paragraph>
-<paragraph role="paragraph" id="par_id3147472" xml-lang="en-US" l10n="U" oldref="34">
-<emph>Range</emph> is the area containing the data to be evaluated.</paragraph>
-<paragraph role="paragraph" id="par_id3152773" xml-lang="en-US" l10n="U" oldref="184">
-<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers.</paragraph>
-<table id="tbl_id3155828">
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3154383" xml-lang="en-US" l10n="U" oldref="185">
-<emph>Mode</emph>
-</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3145146" xml-lang="en-US" l10n="U" oldref="186">
-<emph>Effect</emph>
-</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3154558" xml-lang="en-US" l10n="U" oldref="187">0 or missing</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3145596" xml-lang="en-US" l10n="U" oldref="188">Number format from the "Default" cell style</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3152785" xml-lang="en-US" l10n="U" oldref="189">1</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3154380" xml-lang="en-US" l10n="U" oldref="190">Data are always interpreted in the standard format for US English</paragraph>
-</tablecell>
-</tablerow>
-<tablerow>
-<tablecell>
-<paragraph role="paragraph" id="par_id3150279" xml-lang="en-US" l10n="U" oldref="191">2</paragraph>
-</tablecell>
-<tablecell>
-<paragraph role="paragraph" id="par_id3153775" xml-lang="en-US" l10n="U" oldref="192">Data are retrieved as text; no conversion to numbers</paragraph>
-</tablecell>
-</tablerow>
-</table>
+<paragraph xml-lang="en-US" id="hd_id3148727" role="heading" level="2" l10n="U"
+ oldref="28">DDE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149434" role="paragraph" l10n="U" oldref="29"><ahelp hid="HID_FUNC_DDE">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type="productname">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150700" role="heading" level="3" l10n="U"
+ oldref="30">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148886" role="code" l10n="U" oldref="31">DDE("Server"; "File"; "Range"; Mode)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154842" role="paragraph" l10n="U" oldref="32">
+ <emph>Server</emph> is the name of a server application. <item type="productname">%PRODUCTNAME</item>applications have the server name "Soffice".</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153034" role="paragraph" l10n="U" oldref="33">
+ <emph>File</emph> is the complete file name, including path specification.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147472" role="paragraph" l10n="U" oldref="34">
+ <emph>Range</emph> is the area containing the data to be evaluated.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152773" role="paragraph" l10n="U" oldref="184">
+ <emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers.</paragraph>
+ <table id="tbl_id3155828">
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3154383" role="paragraph" l10n="U" oldref="185">
+ <emph>Mode</emph>
+ </paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3145146" role="paragraph" l10n="U" oldref="186">
+ <emph>Effect</emph>
+ </paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3154558" role="paragraph" l10n="U" oldref="187">0 or missing</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3145596" role="paragraph" l10n="U" oldref="188">Number format from the "Default" cell style</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3152785" role="paragraph" l10n="U" oldref="189">1</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3154380" role="paragraph" l10n="U" oldref="190">Data are always interpreted in the standard format for US English</paragraph>
+ </tablecell>
+ </tablerow>
+ <tablerow>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3150279" role="paragraph" l10n="U" oldref="191">2</paragraph>
+ </tablecell>
+ <tablecell>
+ <paragraph xml-lang="en-US" id="par_id3153775" role="paragraph" l10n="U" oldref="192">Data are retrieved as text; no conversion to numbers</paragraph>
+ </tablecell>
+ </tablerow>
+ </table>
-<paragraph role="heading" id="hd_id3149546" xml-lang="en-US" level="3" l10n="U" oldref="35">Example</paragraph>
-<paragraph role="paragraph" id="par_id3148734" xml-lang="en-US" l10n="U" oldref="36">
-<item type="input">=DDE("soffice";"c:\office\document\data1.sxc";"sheet1.A1")</item> reads the contents of cell A1 in sheet1 of the <item type="productname">%PRODUCTNAME</item> Calc spreadsheet data1.sxc.</paragraph>
-<paragraph role="paragraph" id="par_id3153081" xml-lang="en-US" l10n="U" oldref="37">
-<item type="input">=DDE("soffice";"c:\office\document\motto.sxw";"Today's motto")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type="literal">Today's Motto</item> (in <item type="productname">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type="productname">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type="productname">%PRODUCTNAME</item> Calc cells in which this DDE link is defined.</paragraph>
-</section>
-<section id="Section4">
+ <paragraph xml-lang="en-US" id="hd_id3149546" role="heading" level="3" l10n="U"
+ oldref="35">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148734" role="paragraph" l10n="U" oldref="36">
+ <item type="input">=DDE("soffice";"c:\office\document\data1.sxc";"sheet1.A1")</item> reads the contents of cell A1 in sheet1 of the <item type="productname">%PRODUCTNAME</item> Calc spreadsheet data1.sxc.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153081" role="paragraph" l10n="U" oldref="37">
+ <item type="input">=DDE("soffice";"c:\office\document\motto.sxw";"Today's motto")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type="literal">Today's Motto</item> (in <item type="productname">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type="productname">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type="productname">%PRODUCTNAME</item> Calc cells in which this DDE link is defined.</paragraph>
+ </section>
+ <section id="Section4">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153114"><bookmark_value>ERRORTYPE function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_FEHLERTYP" id="bm_id3153000" localize="false"/>
-<paragraph role="heading" id="hd_id3153114" xml-lang="en-US" level="2" l10n="U" oldref="38">ERRORTYPE</paragraph>
-<paragraph role="paragraph" id="par_id3148568" xml-lang="en-US" l10n="U" oldref="39"><ahelp hid="HID_FUNC_FEHLERTYP">Returns the number corresponding to an <link href="text/scalc/05/02140000.xhp" name="error value">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text.</paragraph>
-<embed href="text/shared/00/00000001.xhp#wahr"/>
-<paragraph role="note" id="par_id3149877" xml-lang="en-US" l10n="U" oldref="40">The Status Bar displays the predefined error code from <item type="productname">%PRODUCTNAME</item> if you click the cell containing the error.</paragraph>
-<paragraph role="heading" id="hd_id3154327" xml-lang="en-US" level="3" l10n="U" oldref="41">Syntax</paragraph>
-<paragraph role="code" id="par_id3151322" xml-lang="en-US" l10n="U" oldref="42">ERRORTYPE(Reference)</paragraph>
-<paragraph role="paragraph" id="par_id3150132" xml-lang="en-US" l10n="U" oldref="43">
-<emph>Reference</emph> contains the address of the cell in which the error occurs.</paragraph>
-<paragraph role="heading" id="hd_id3145248" xml-lang="en-US" level="3" l10n="U" oldref="44">Example</paragraph>
-<paragraph role="paragraph" id="par_id3146904" xml-lang="en-US" l10n="U" oldref="45">If cell A1 displays Err:518, the function <item type="input">=ERRORTYPE(A1)</item> returns the number 518.</paragraph>
-</section>
-<section id="Section5">
+<paragraph xml-lang="en-US" id="hd_id3153114" role="heading" level="2" l10n="U"
+ oldref="38">ERRORTYPE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148568" role="paragraph" l10n="U" oldref="39"><ahelp hid="HID_FUNC_FEHLERTYP">Returns the number corresponding to an <link href="text/scalc/05/02140000.xhp" name="error value">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text.</paragraph>
+ <embed href="text/shared/00/00000001.xhp#wahr"/>
+ <paragraph xml-lang="en-US" id="par_id3149877" role="note" l10n="U" oldref="40">The Status Bar displays the predefined error code from <item type="productname">%PRODUCTNAME</item> if you click the cell containing the error.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154327" role="heading" level="3" l10n="U"
+ oldref="41">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151322" role="code" l10n="U" oldref="42">ERRORTYPE(Reference)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150132" role="paragraph" l10n="U" oldref="43">
+ <emph>Reference</emph> contains the address of the cell in which the error occurs.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145248" role="heading" level="3" l10n="U"
+ oldref="44">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146904" role="paragraph" l10n="U" oldref="45">If cell A1 displays Err:518, the function <item type="input">=ERRORTYPE(A1)</item> returns the number 518.</paragraph>
+ </section>
+ <section id="Section5">
<bookmark xml-lang="en-US" branch="index" id="bm_id3151221"><bookmark_value>INDEX function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_INDEX" id="bm_id3157989" localize="false"/>
-<paragraph role="heading" id="hd_id3151221" xml-lang="en-US" level="2" l10n="U" oldref="47">INDEX</paragraph>
-<paragraph role="paragraph" id="par_id3150268" xml-lang="en-US" l10n="CHG" oldref="48"><ahelp hid="HID_FUNC_INDEX">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp><comment>UFI: will change with i4904; see http://so-web.germany.sun.com/iBIS/servlet/edit.ControlPanel?tid=i57108</comment><comment>changed by i83070</comment></paragraph>
-<paragraph role="heading" id="hd_id3156063" xml-lang="en-US" level="3" l10n="U" oldref="49">Syntax</paragraph>
-<paragraph role="code" id="par_id3149007" xml-lang="en-US" l10n="U" oldref="50">INDEX(Reference; Row; Column; Range)</paragraph>
-<paragraph role="paragraph" id="par_id3153260" xml-lang="en-US" l10n="CHG" oldref="51">
-<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses.</paragraph>
-<paragraph role="paragraph" id="par_id3145302" xml-lang="en-US" l10n="CHG" oldref="52">
-<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned.</paragraph>
-<paragraph role="paragraph" id="par_id3154628" xml-lang="en-US" l10n="CHG" oldref="53">
-<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned.</paragraph>
-<paragraph role="paragraph" id="par_id3155514" xml-lang="en-US" l10n="U" oldref="54">
-<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range.</paragraph>
-<paragraph role="heading" id="hd_id3145264" xml-lang="en-US" level="3" l10n="U" oldref="55">Example</paragraph>
-<paragraph role="paragraph" id="par_id3159112" xml-lang="en-US" l10n="U" oldref="56">
-<item type="input">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id3150691" xml-lang="en-US" l10n="U" oldref="57">
-<item type="input">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>.</paragraph>
-<paragraph role="paragraph" id="par_id4109012" xml-lang="en-US" l10n="NEW">
-<item type="input">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6.</paragraph>
-<paragraph role="paragraph" id="par_id9272133" xml-lang="en-US" l10n="NEW">
-<item type="input">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6.</paragraph>
-<paragraph role="paragraph" id="par_id3158419" xml-lang="en-US" l10n="U" oldref="58">
-<item type="input">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Set</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type="input">2</item> as the <emph>range</emph> parameter.</paragraph>
-<paragraph role="paragraph" id="par_id3148595" xml-lang="en-US" l10n="U" oldref="59">
-<item type="input">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range.</paragraph>
-<paragraph role="paragraph" id="par_id9960020" xml-lang="en-US" l10n="NEW">
-<item type="input">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range.</paragraph>
-</section>
-<section id="Section6">
+<paragraph xml-lang="en-US" id="hd_id3151221" role="heading" level="2" l10n="U"
+ oldref="47">INDEX</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150268" role="paragraph" l10n="CHG" oldref="48"><ahelp hid="HID_FUNC_INDEX">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp><comment>UFI: will change with i4904; see http://so-web.germany.sun.com/iBIS/servlet/edit.ControlPanel?tid=i57108</comment><comment>changed by i83070</comment></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3156063" role="heading" level="3" l10n="U"
+ oldref="49">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149007" role="code" l10n="U" oldref="50">INDEX(Reference; Row; Column; Range)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153260" role="paragraph" l10n="CHG" oldref="51">
+ <emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145302" role="paragraph" l10n="CHG" oldref="52">
+ <emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154628" role="paragraph" l10n="CHG" oldref="53">
+ <emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155514" role="paragraph" l10n="U" oldref="54">
+ <emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145264" role="heading" level="3" l10n="U"
+ oldref="55">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159112" role="paragraph" l10n="U" oldref="56">
+ <item type="input">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150691" role="paragraph" l10n="U" oldref="57">
+ <item type="input">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id4109012" role="paragraph" l10n="NEW">
+ <item type="input">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9272133" role="paragraph" l10n="NEW">
+ <item type="input">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3158419" role="paragraph" l10n="U" oldref="58">
+ <item type="input">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Set</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type="input">2</item> as the <emph>range</emph> parameter.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148595" role="paragraph" l10n="U" oldref="59">
+ <item type="input">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9960020" role="paragraph" l10n="NEW">
+ <item type="input">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range.</paragraph>
+ </section>
+ <section id="Section6">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153181"><bookmark_value>INDIRECT function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_INDIREKT" id="bm_id3153922" localize="false"/>
-<paragraph role="heading" id="hd_id3153181" xml-lang="en-US" level="2" l10n="U" oldref="62">INDIRECT</paragraph>
-<paragraph role="paragraph" id="par_id3147169" xml-lang="en-US" l10n="U" oldref="63"><ahelp hid="HID_FUNC_INDIREKT">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string.</paragraph>
-<embed href="text/scalc/01/04060109.xhp#r1c1"/>
-<paragraph role="heading" id="hd_id3153717" xml-lang="en-US" level="3" l10n="U" oldref="64">Syntax</paragraph>
-<paragraph role="code" id="par_id3149824" xml-lang="en-US" l10n="U" oldref="65">INDIRECT(Ref; A1)</paragraph>
-<paragraph role="paragraph" id="par_id3154317" xml-lang="en-US" l10n="U" oldref="66">
-<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents.</paragraph>
-<paragraph role="paragraph" id="par_id1027200802470312" xml-lang="en-US" l10n="NEW">
-<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used.</paragraph>
-<paragraph role="note" id="par_idN10CAE" xml-lang="en-US" l10n="NEW">If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT("filename!sheetname"&amp;B1) is not converted into the Calc address in INDIRECT("filename.sheetname"&amp;B1).<comment>UFI: for #i34465#</comment></paragraph>
-<paragraph role="note" id="par_id7687917" xml-lang="en-US" l10n="NEW">INDIRECT cannot resolve range names as in INDIRECT("RangeName").<comment>i83070</comment></paragraph>
-<paragraph role="heading" id="hd_id3150389" xml-lang="en-US" level="3" l10n="U" oldref="67">Example</paragraph>
-<paragraph role="paragraph" id="par_id3150608" xml-lang="en-US" l10n="U" oldref="68">
-<item type="input">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type="input">100</item>.</paragraph>
-<paragraph role="paragraph" id="par_id3083286" xml-lang="en-US" l10n="CHG" oldref="181">
-<item type="input">=SUM(INDIRECT("a1:" &amp; ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled.</paragraph>
-</section>
-<section id="Section7">
+<paragraph xml-lang="en-US" id="hd_id3153181" role="heading" level="2" l10n="U"
+ oldref="62">INDIRECT</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147169" role="paragraph" l10n="U" oldref="63"><ahelp hid="HID_FUNC_INDIREKT">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string.</paragraph>
+ <embed href="text/scalc/01/04060109.xhp#r1c1"/>
+ <paragraph xml-lang="en-US" id="hd_id3153717" role="heading" level="3" l10n="U"
+ oldref="64">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149824" role="code" l10n="U" oldref="65">INDIRECT(Ref; A1)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154317" role="paragraph" l10n="U" oldref="66">
+ <emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1027200802470312" role="paragraph" l10n="NEW">
+ <emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN10CAE" role="note" l10n="NEW">For interoperability with Microsoft Excel, the sheet address separator ! is allowed as in INDIRECT("filename!sheetname"&amp;B1).<comment>UFI: finally a fix for #i34465#</comment></paragraph>
+ <paragraph xml-lang="en-US" id="par_id7687917" role="note" l10n="NEW">INDIRECT cannot resolve range names as in INDIRECT("RangeName").<comment>i83070</comment></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3150389" role="heading" level="3" l10n="U"
+ oldref="67">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150608" role="paragraph" l10n="U" oldref="68">
+ <item type="input">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type="input">100</item>.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3083286" role="paragraph" l10n="CHG" oldref="181">
+ <item type="input">=SUM(INDIRECT("a1:" &amp; ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled.</paragraph>
+ </section>
+ <section id="Section7">
<bookmark xml-lang="en-US" branch="index" id="bm_id3154818"><bookmark_value>COLUMN function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_SPALTE" id="bm_id3156378" localize="false"/>
-<paragraph role="heading" id="hd_id3154818" xml-lang="en-US" level="2" l10n="U" oldref="70">COLUMN</paragraph>
-<paragraph role="paragraph" id="par_id3149711" xml-lang="en-US" l10n="U" oldref="193"><ahelp hid="HID_FUNC_SPALTE">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href="text/scalc/01/04060107.xhp#wasmatrix" name="array">array</link> if the formula is entered <link href="text/scalc/01/04060107.xhp#somatrixformel" name="as an array formula">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined.</paragraph>
-<paragraph role="heading" id="hd_id3149283" xml-lang="en-US" level="3" l10n="U" oldref="72">Syntax</paragraph>
-<paragraph role="code" id="par_id3149447" xml-lang="en-US" l10n="U" oldref="73">COLUMN(Reference)</paragraph>
-<paragraph role="paragraph" id="par_id3156310" xml-lang="en-US" l10n="U" oldref="74">
-<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found.</paragraph>
-<paragraph role="paragraph" id="par_id3155837" xml-lang="en-US" l10n="U" oldref="194">If no reference is entered, the column number of the cell in which the formula is entered is found. <item type="productname">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell.</paragraph>
-<paragraph role="heading" id="hd_id3152932" xml-lang="en-US" level="3" l10n="U" oldref="75">Example</paragraph>
-<paragraph role="paragraph" id="par_id3147571" xml-lang="en-US" l10n="U" oldref="76">
-<item type="input">=COLUMN(A1)</item> equals 1. Column A is the first column in the table.</paragraph>
-<paragraph role="paragraph" id="par_id3147079" xml-lang="en-US" l10n="U" oldref="77">
-<item type="input">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table.</paragraph>
-<paragraph role="paragraph" id="par_id3146861" xml-lang="en-US" l10n="U" oldref="195">
-<item type="input">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)</paragraph>
-<paragraph role="paragraph" id="par_id3156320" xml-lang="en-US" l10n="U" oldref="196">
-<item type="input">{=COLUMN(B2:B7)}</item> and <item type="input">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula.</paragraph>
-<paragraph role="paragraph" id="par_id3150872" xml-lang="en-US" l10n="U" oldref="197">
-<item type="input">=COLUMN()</item> returns 3 if the formula was entered in column C.</paragraph>
-<paragraph role="paragraph" id="par_id3153277" xml-lang="en-US" l10n="U" oldref="198">
-<item type="input">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if "Rabbit" is the named area (C1:D3).</paragraph>
-</section>
-<section id="Section8">
+<paragraph xml-lang="en-US" id="hd_id3154818" role="heading" level="2" l10n="U"
+ oldref="70">COLUMN</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149711" role="paragraph" l10n="U" oldref="193"><ahelp hid="HID_FUNC_SPALTE">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href="text/scalc/01/04060107.xhp#wasmatrix" name="array">array</link> if the formula is entered <link href="text/scalc/01/04060107.xhp#somatrixformel" name="as an array formula">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149283" role="heading" level="3" l10n="U"
+ oldref="72">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149447" role="code" l10n="U" oldref="73">COLUMN(Reference)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156310" role="paragraph" l10n="U" oldref="74">
+ <emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155837" role="paragraph" l10n="U" oldref="194">If no reference is entered, the column number of the cell in which the formula is entered is found. <item type="productname">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3152932" role="heading" level="3" l10n="U"
+ oldref="75">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147571" role="paragraph" l10n="U" oldref="76">
+ <item type="input">=COLUMN(A1)</item> equals 1. Column A is the first column in the table.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147079" role="paragraph" l10n="U" oldref="77">
+ <item type="input">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146861" role="paragraph" l10n="U" oldref="195">
+ <item type="input">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156320" role="paragraph" l10n="U" oldref="196">
+ <item type="input">{=COLUMN(B2:B7)}</item> and <item type="input">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150872" role="paragraph" l10n="U" oldref="197">
+ <item type="input">=COLUMN()</item> returns 3 if the formula was entered in column C.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153277" role="paragraph" l10n="U" oldref="198">
+ <item type="input">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if "Rabbit" is the named area (C1:D3).</paragraph>
+ </section>
+ <section id="Section8">
<bookmark xml-lang="en-US" branch="index" id="bm_id3154643"><bookmark_value>COLUMNS function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_SPALTEN" id="bm_id3156134" localize="false"/>
-<paragraph role="heading" id="hd_id3154643" xml-lang="en-US" level="2" l10n="U" oldref="79">COLUMNS</paragraph>
-<paragraph role="paragraph" id="par_id3151182" xml-lang="en-US" l10n="U" oldref="80"><ahelp hid="HID_FUNC_SPALTEN">Returns the number of columns in the given reference.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3149141" xml-lang="en-US" level="3" l10n="U" oldref="81">Syntax</paragraph>
-<paragraph role="code" id="par_id3154047" xml-lang="en-US" l10n="U" oldref="82">COLUMNS(Array)</paragraph>
-<paragraph role="paragraph" id="par_id3154745" xml-lang="en-US" l10n="U" oldref="83">
-<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell.</paragraph>
-<paragraph role="heading" id="hd_id3153622" xml-lang="en-US" level="3" l10n="U" oldref="84">Example</paragraph>
-<paragraph role="paragraph" id="par_id3149577" xml-lang="en-US" l10n="U" oldref="200">
-<item type="input">=COLUMNS(B5)</item> returns 1 because a cell only contains one column.</paragraph>
-<paragraph role="paragraph" id="par_id3145649" xml-lang="en-US" l10n="U" oldref="85">
-<item type="input">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns.</paragraph>
-<paragraph role="paragraph" id="par_id3155846" xml-lang="en-US" l10n="U" oldref="201">
-<item type="input">=COLUMNS(Rabbit)</item> returns 2 if <item type="literal">Rabbit</item> is the named range (C1:D3).</paragraph>
-</section>
-<section id="Section9">
+<paragraph xml-lang="en-US" id="hd_id3154643" role="heading" level="2" l10n="U"
+ oldref="79">COLUMNS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151182" role="paragraph" l10n="U" oldref="80"><ahelp hid="HID_FUNC_SPALTEN">Returns the number of columns in the given reference.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149141" role="heading" level="3" l10n="U"
+ oldref="81">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154047" role="code" l10n="U" oldref="82">COLUMNS(Array)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154745" role="paragraph" l10n="U" oldref="83">
+ <emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153622" role="heading" level="3" l10n="U"
+ oldref="84">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149577" role="paragraph" l10n="U" oldref="200">
+ <item type="input">=COLUMNS(B5)</item> returns 1 because a cell only contains one column.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145649" role="paragraph" l10n="U" oldref="85">
+ <item type="input">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155846" role="paragraph" l10n="U" oldref="201">
+ <item type="input">=COLUMNS(Rabbit)</item> returns 2 if <item type="literal">Rabbit</item> is the named range (C1:D3).</paragraph>
+ </section>
+ <section id="Section9">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153152"><bookmark_value>vertical search function</bookmark_value>
-<bookmark_value>VLOOKUP function</bookmark_value>
+ <bookmark_value>VLOOKUP function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_SVERWEIS" id="bm_id3152809" localize="false"/>
-<paragraph role="heading" id="hd_id3153152" xml-lang="en-US" level="2" l10n="U" oldref="87">VLOOKUP</paragraph>
-<paragraph role="paragraph" id="par_id3149984" xml-lang="en-US" l10n="CHG" oldref="88"><ahelp hid="HID_FUNC_SVERWEIS">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type="literal">Index</item>. If the <item type="literal">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type="literal">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type="literal">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order.</paragraph>
-<embed href="text/shared/00/00000001.xhp#regulaer"/>
-<paragraph role="heading" id="hd_id3146898" xml-lang="en-US" level="3" l10n="U" oldref="89">Syntax</paragraph>
-<paragraph role="code" id="par_id3150156" xml-lang="en-US" l10n="U" oldref="90">=VLOOKUP(SearchCriterion; Array; Index; SortOrder)</paragraph>
-<paragraph role="paragraph" id="par_id3149289" xml-lang="en-US" l10n="U" oldref="91">
-<emph>SearchCriterion</emph> is the value searched for in the first column of the array.</paragraph>
-<paragraph role="paragraph" id="par_id3153884" xml-lang="en-US" l10n="U" oldref="92">
-<emph>Array</emph> is the reference, which is to comprise at least two columns.</paragraph>
-<paragraph role="paragraph" id="par_id3156005" xml-lang="en-US" l10n="U" oldref="93">
-<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1.</paragraph>
-<paragraph role="paragraph" id="par_id3151208" xml-lang="en-US" l10n="U" oldref="94">
-<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>.</paragraph>
-<embed href="text/scalc/05/empty_cells.xhp#empty_cells"/>
-<paragraph role="heading" id="hd_id3147487" xml-lang="en-US" level="3" l10n="U" oldref="95">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154129" xml-lang="en-US" l10n="U" oldref="96">You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type="input">100</item>, E1 contains the name <item type="input">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type="literal">SortOrder</item> parameter is not necessary.</paragraph>
-<paragraph role="paragraph" id="par_id3145663" xml-lang="en-US" l10n="U" oldref="97">Enter the following formula in B1:</paragraph>
-<paragraph role="paragraph" id="par_id3151172" xml-lang="en-US" l10n="U" oldref="98">
-<item type="input">=VLOOKUP(A1;D1:E100;2)</item>
-</paragraph>
-<paragraph role="paragraph" id="par_id3149200" xml-lang="en-US" l10n="U" oldref="99">As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered.</paragraph>
-</section>
-<section id="Section10">
+<paragraph xml-lang="en-US" id="hd_id3153152" role="heading" level="2" l10n="U"
+ oldref="87">VLOOKUP</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149984" role="paragraph" l10n="CHG" oldref="88"><ahelp hid="HID_FUNC_SVERWEIS">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type="literal">Index</item>. If the <item type="literal">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type="literal">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type="literal">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order.</paragraph>
+ <embed href="text/shared/00/00000001.xhp#regulaer"/>
+ <paragraph xml-lang="en-US" id="hd_id3146898" role="heading" level="3" l10n="U"
+ oldref="89">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150156" role="code" l10n="U" oldref="90">=VLOOKUP(SearchCriterion; Array; Index; SortOrder)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149289" role="paragraph" l10n="U" oldref="91">
+ <emph>SearchCriterion</emph> is the value searched for in the first column of the array.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153884" role="paragraph" l10n="U" oldref="92">
+ <emph>Array</emph> is the reference, which is to comprise at least two columns.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156005" role="paragraph" l10n="U" oldref="93">
+ <emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151208" role="paragraph" l10n="U" oldref="94">
+ <emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>.</paragraph>
+ <embed href="text/scalc/05/empty_cells.xhp#empty_cells"/>
+ <paragraph xml-lang="en-US" id="hd_id3147487" role="heading" level="3" l10n="U"
+ oldref="95">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154129" role="paragraph" l10n="U" oldref="96">You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type="input">100</item>, E1 contains the name <item type="input">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type="literal">SortOrder</item> parameter is not necessary.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3145663" role="paragraph" l10n="U" oldref="97">Enter the following formula in B1:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151172" role="paragraph" l10n="U" oldref="98">
+ <item type="input">=VLOOKUP(A1;D1:E100;2)</item>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149200" role="paragraph" l10n="U" oldref="99">As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered.</paragraph>
+ </section>
+ <section id="Section10">
<bookmark xml-lang="en-US" branch="index" id="bm_id3153905"><bookmark_value>sheet numbers; looking up</bookmark_value>
-<bookmark_value>SHEET function</bookmark_value>
+ <bookmark_value>SHEET function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_TABELLE" id="bm_id3154693" localize="false"/>
-<paragraph role="heading" id="hd_id3153905" xml-lang="en-US" level="2" l10n="U" oldref="215">SHEET</paragraph>
-<paragraph role="paragraph" id="par_id3150309" xml-lang="en-US" l10n="U" oldref="216"><ahelp hid="HID_FUNC_TABELLE">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula.</paragraph>
-<paragraph role="heading" id="hd_id3148564" xml-lang="en-US" level="3" l10n="U" oldref="217">Syntax</paragraph>
-<paragraph role="code" id="par_id3153095" xml-lang="en-US" l10n="U" oldref="218">SHEET(Reference)</paragraph>
-<paragraph role="paragraph" id="par_id3154588" xml-lang="en-US" l10n="U" oldref="219">
-<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string.</paragraph>
-<paragraph role="heading" id="hd_id3155399" xml-lang="en-US" level="3" l10n="U" oldref="220">Example</paragraph>
-<paragraph role="paragraph" id="par_id3146988" xml-lang="en-US" l10n="U" oldref="221">
-<item type="input">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document.</paragraph>
-</section>
-<section id="Section11">
+<paragraph xml-lang="en-US" id="hd_id3153905" role="heading" level="2" l10n="U"
+ oldref="215">SHEET</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150309" role="paragraph" l10n="U" oldref="216"><ahelp hid="HID_FUNC_TABELLE">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3148564" role="heading" level="3" l10n="U"
+ oldref="217">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153095" role="code" l10n="U" oldref="218">SHEET(Reference)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154588" role="paragraph" l10n="U" oldref="219">
+ <emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155399" role="heading" level="3" l10n="U"
+ oldref="220">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146988" role="paragraph" l10n="U" oldref="221">
+ <item type="input">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document.</paragraph>
+ </section>
+ <section id="Section11">
<bookmark xml-lang="en-US" branch="index" id="bm_id3148829"><bookmark_value>number of sheets; function</bookmark_value>
-<bookmark_value>SHEETS function</bookmark_value>
+ <bookmark_value>SHEETS function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_TABELLEN" id="bm_id3150524" localize="false"/>
-<paragraph role="heading" id="hd_id3148829" xml-lang="en-US" level="2" l10n="U" oldref="222">SHEETS</paragraph>
-<paragraph role="paragraph" id="par_id3148820" xml-lang="en-US" l10n="U" oldref="223"><ahelp hid="HID_FUNC_TABELLEN">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document.</paragraph>
-<paragraph role="heading" id="hd_id3154220" xml-lang="en-US" level="3" l10n="U" oldref="224">Syntax</paragraph>
-<paragraph role="code" id="par_id3150777" xml-lang="en-US" l10n="U" oldref="225">SHEETS(Reference)</paragraph>
-<paragraph role="paragraph" id="par_id3153060" xml-lang="en-US" l10n="U" oldref="226">
-<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional.</paragraph>
-<paragraph role="heading" id="hd_id3149766" xml-lang="en-US" level="3" l10n="U" oldref="227">Example</paragraph>
-<paragraph role="paragraph" id="par_id3150507" xml-lang="en-US" l10n="U" oldref="228">
-<item type="input">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated.</paragraph>
-</section>
-<section id="Section12">
+<paragraph xml-lang="en-US" id="hd_id3148829" role="heading" level="2" l10n="U"
+ oldref="222">SHEETS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148820" role="paragraph" l10n="U" oldref="223"><ahelp hid="HID_FUNC_TABELLEN">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3154220" role="heading" level="3" l10n="U"
+ oldref="224">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150777" role="code" l10n="U" oldref="225">SHEETS(Reference)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153060" role="paragraph" l10n="U" oldref="226">
+ <emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3149766" role="heading" level="3" l10n="U"
+ oldref="227">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150507" role="paragraph" l10n="U" oldref="228">
+ <item type="input">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated.</paragraph>
+ </section>
+ <section id="Section12">
<bookmark xml-lang="en-US" branch="index" id="bm_id3158407"><bookmark_value>MATCH function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_VERGLEICH" id="bm_id3154210" localize="false"/>
-<paragraph role="heading" id="hd_id3158407" xml-lang="en-US" level="2" l10n="U" oldref="101">MATCH</paragraph>
-<paragraph role="paragraph" id="par_id3154896" xml-lang="en-US" l10n="U" oldref="102"><ahelp hid="HID_FUNC_VERGLEICH">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number.</paragraph>
-<paragraph role="heading" id="hd_id3153834" xml-lang="en-US" level="3" l10n="U" oldref="103">Syntax</paragraph>
-<paragraph role="code" id="par_id3159152" xml-lang="en-US" l10n="U" oldref="104">MATCH(SearchCriterion; LookupArray; Type)</paragraph>
-<paragraph role="paragraph" id="par_id3149336" xml-lang="en-US" l10n="U" oldref="105">
-<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array.</paragraph>
-<paragraph role="paragraph" id="par_id3159167" xml-lang="en-US" l10n="U" oldref="106">
-<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column.</paragraph>
-<paragraph role="paragraph" id="par_id3147239" xml-lang="en-US" l10n="U" oldref="107">
-<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel.</paragraph>
-<paragraph role="paragraph" id="par_id3154265" xml-lang="en-US" l10n="CHG" oldref="231">If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions.</paragraph>
-<paragraph role="paragraph" id="par_id3147528" xml-lang="en-US" l10n="CHG" oldref="232">If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned.</paragraph>
-<embed href="text/shared/00/00000001.xhp#regulaer"/>
-<paragraph role="heading" id="hd_id3155119" xml-lang="en-US" level="3" l10n="U" oldref="108">Example</paragraph>
-<paragraph role="paragraph" id="par_id3155343" xml-lang="en-US" l10n="U" oldref="109">
-<item type="input">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned.</paragraph>
-</section>
-<section id="Section13">
+<paragraph xml-lang="en-US" id="hd_id3158407" role="heading" level="2" l10n="U"
+ oldref="101">MATCH</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154896" role="paragraph" l10n="U" oldref="102"><ahelp hid="HID_FUNC_VERGLEICH">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153834" role="heading" level="3" l10n="U"
+ oldref="103">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159152" role="code" l10n="U" oldref="104">MATCH(SearchCriterion; LookupArray; Type)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149336" role="paragraph" l10n="U" oldref="105">
+ <emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159167" role="paragraph" l10n="U" oldref="106">
+ <emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147239" role="paragraph" l10n="U" oldref="107">
+ <emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154265" role="paragraph" l10n="CHG" oldref="231">If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147528" role="paragraph" l10n="CHG" oldref="232">If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned.</paragraph>
+ <embed href="text/shared/00/00000001.xhp#regulaer"/>
+ <paragraph xml-lang="en-US" id="hd_id3155119" role="heading" level="3" l10n="U"
+ oldref="108">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155343" role="paragraph" l10n="U" oldref="109">
+ <item type="input">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned.</paragraph>
+ </section>
+ <section id="Section13">
<bookmark xml-lang="en-US" branch="index" id="bm_id3158430"><bookmark_value>OFFSET function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_VERSCHIEBUNG" id="bm_id3148926" localize="false"/>
-<paragraph role="heading" id="hd_id3158430" xml-lang="en-US" level="2" l10n="U" oldref="111">OFFSET</paragraph>
-<paragraph role="paragraph" id="par_id3149167" xml-lang="en-US" l10n="U" oldref="112"><ahelp hid="HID_FUNC_VERSCHIEBUNG">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3146952" xml-lang="en-US" level="3" l10n="U" oldref="113">Syntax</paragraph>
-<paragraph role="code" id="par_id3159194" xml-lang="en-US" l10n="U" oldref="114">OFFSET(Reference; Rows; Columns; Height; Width)</paragraph>
-<paragraph role="paragraph" id="par_id3152360" xml-lang="en-US" l10n="CHG" oldref="115">
-<emph>Reference</emph> is the reference from which the function searches for the new reference.</paragraph>
-<paragraph role="paragraph" id="par_id3156032" xml-lang="en-US" l10n="CHG" oldref="116">
-<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down.</paragraph>
-<paragraph role="paragraph" id="par_id3166458" xml-lang="en-US" l10n="CHG" oldref="117">
-<emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right.</paragraph>
-<paragraph role="paragraph" id="par_id3150708" xml-lang="en-US" l10n="CHG" oldref="118">
-<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position.</paragraph>
-<paragraph role="paragraph" id="par_id3147278" xml-lang="en-US" l10n="CHG" oldref="119">
-<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position.</paragraph>
-<paragraph role="paragraph" id="par_id8662373" xml-lang="en-US" l10n="NEW">Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column</paragraph>
-<paragraph role="paragraph" id="par_id9051484" xml-lang="en-US" l10n="NEW">Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns.</paragraph>
-<paragraph role="paragraph" id="par_idN1104B" xml-lang="en-US" l10n="NEW">
-<embedvar href="text/scalc/00/00000004.xhp#optional"/>
-</paragraph>
-<paragraph role="heading" id="hd_id3155586" xml-lang="en-US" level="3" l10n="U" oldref="120">Example</paragraph>
-<paragraph role="paragraph" id="par_id3149744" xml-lang="en-US" l10n="CHG" oldref="121">
-<item type="input">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type="input">100</item> this function returns the value 100.</paragraph>
-<paragraph role="paragraph" id="par_id7439802" xml-lang="en-US" l10n="NEW">
-<item type="input">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4).</paragraph>
-<paragraph role="paragraph" id="par_id3009430" xml-lang="en-US" l10n="NEW">
-<item type="input">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2).</paragraph>
-<paragraph role="paragraph" id="par_id2629169" xml-lang="en-US" l10n="NEW">
-<item type="input">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4).</paragraph>
-<paragraph role="paragraph" id="par_id6668599" xml-lang="en-US" l10n="NEW">
-<item type="input">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4).</paragraph>
-<paragraph role="paragraph" id="par_id3153739" xml-lang="en-US" l10n="U" oldref="122">
-<item type="input">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7).</paragraph>
-</section>
-<section id="Section14">
+<paragraph xml-lang="en-US" id="hd_id3158430" role="heading" level="2" l10n="U"
+ oldref="111">OFFSET</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149167" role="paragraph" l10n="U" oldref="112"><ahelp hid="HID_FUNC_VERSCHIEBUNG">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3146952" role="heading" level="3" l10n="U"
+ oldref="113">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3159194" role="code" l10n="U" oldref="114">OFFSET(Reference; Rows; Columns; Height; Width)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3152360" role="paragraph" l10n="CHG" oldref="115">
+ <emph>Reference</emph> is the reference from which the function searches for the new reference.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156032" role="paragraph" l10n="CHG" oldref="116">
+ <emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3166458" role="paragraph" l10n="CHG" oldref="117">
+ <emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150708" role="paragraph" l10n="CHG" oldref="118">
+ <emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147278" role="paragraph" l10n="CHG" oldref="119">
+ <emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8662373" role="paragraph" l10n="NEW">Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9051484" role="paragraph" l10n="NEW">Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN1104B" role="paragraph" l10n="NEW">
+ <embedvar href="text/scalc/00/00000004.xhp#optional"/>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155586" role="heading" level="3" l10n="U"
+ oldref="120">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149744" role="paragraph" l10n="CHG" oldref="121">
+ <item type="input">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type="input">100</item> this function returns the value 100.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7439802" role="paragraph" l10n="NEW">
+ <item type="input">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3009430" role="paragraph" l10n="NEW">
+ <item type="input">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id2629169" role="paragraph" l10n="NEW">
+ <item type="input">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6668599" role="paragraph" l10n="NEW">
+ <item type="input">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4).</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153739" role="paragraph" l10n="U" oldref="122">
+ <item type="input">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7).</paragraph>
+ </section>
+ <section id="Section14">
<bookmark xml-lang="en-US" branch="index" id="bm_id3159273"><bookmark_value>LOOKUP function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_VERWEIS" id="bm_id3152877" localize="false"/>
-<paragraph role="heading" id="hd_id3159273" xml-lang="en-US" level="2" l10n="U" oldref="123">LOOKUP</paragraph>
-<paragraph role="paragraph" id="par_id3153389" xml-lang="en-US" l10n="CHG" oldref="124"><ahelp hid="HID_FUNC_VERWEIS">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href="text/scalc/01/04060109.xhp" name="VLOOKUP">VLOOKUP</link> and <link href="text/scalc/01/04060109.xhp" name="HLOOKUP">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results.</paragraph>
-<paragraph role="note" id="par_id4484084" xml-lang="en-US" l10n="NEW">If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion.</paragraph>
-<embed href="text/shared/00/00000001.xhp#regulaer"/>
-<paragraph role="heading" id="hd_id3152947" xml-lang="en-US" level="3" l10n="U" oldref="125">Syntax</paragraph>
-<paragraph role="code" id="par_id3154104" xml-lang="en-US" l10n="U" oldref="126">LOOKUP(SearchCriterion; SearchVector; ResultVector)</paragraph>
-<paragraph role="paragraph" id="par_id3150646" xml-lang="en-US" l10n="U" oldref="127">
-<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference.</paragraph>
-<paragraph role="paragraph" id="par_id3154854" xml-lang="en-US" l10n="U" oldref="128">
-<emph>SearchVector</emph> is the single-row or single-column area to be searched.</paragraph>
-<paragraph role="paragraph" id="par_id3149925" xml-lang="en-US" l10n="U" oldref="129">
-<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector.</paragraph>
-<embed href="text/scalc/05/empty_cells.xhp#empty_cells"/>
-<paragraph role="heading" id="hd_id3148624" xml-lang="en-US" level="3" l10n="U" oldref="130">Example</paragraph>
-<paragraph role="paragraph" id="par_id3149809" xml-lang="en-US" l10n="U" oldref="131">
-<item type="input">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector).</paragraph>
-</section>
-<section id="Section15">
+<paragraph xml-lang="en-US" id="hd_id3159273" role="heading" level="2" l10n="U"
+ oldref="123">LOOKUP</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153389" role="paragraph" l10n="CHG" oldref="124"><ahelp hid="HID_FUNC_VERWEIS">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href="text/scalc/01/04060109.xhp" name="VLOOKUP">VLOOKUP</link> and <link href="text/scalc/01/04060109.xhp" name="HLOOKUP">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id4484084" role="note" l10n="NEW">If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion.</paragraph>
+ <embed href="text/shared/00/00000001.xhp#regulaer"/>
+ <paragraph xml-lang="en-US" id="hd_id3152947" role="heading" level="3" l10n="U"
+ oldref="125">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154104" role="code" l10n="U" oldref="126">LOOKUP(SearchCriterion; SearchVector; ResultVector)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150646" role="paragraph" l10n="U" oldref="127">
+ <emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154854" role="paragraph" l10n="U" oldref="128">
+ <emph>SearchVector</emph> is the single-row or single-column area to be searched.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149925" role="paragraph" l10n="U" oldref="129">
+ <emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector.</paragraph>
+ <embed href="text/scalc/05/empty_cells.xhp#empty_cells"/>
+ <paragraph xml-lang="en-US" id="hd_id3148624" role="heading" level="3" l10n="U"
+ oldref="130">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149809" role="paragraph" l10n="U" oldref="131">
+ <item type="input">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector).</paragraph>
+ </section>
+ <section id="Section15">
<bookmark xml-lang="en-US" branch="index" id="bm_id3149425"><bookmark_value>STYLE function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_VORLAGE" id="bm_id3154342" localize="false"/>
-<paragraph role="heading" id="hd_id3149425" xml-lang="en-US" level="2" l10n="U" oldref="133">STYLE</paragraph>
-<paragraph role="paragraph" id="par_id3150826" xml-lang="en-US" l10n="U" oldref="134"><ahelp hid="HID_FUNC_VORLAGE">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()&gt;3;"red";"green")) applies the style "red" to the cell if the value is greater than 3, otherwise the style "green" is applied. Both cell formats have to be defined beforehand.</paragraph>
-<paragraph role="heading" id="hd_id3145373" xml-lang="en-US" level="3" l10n="U" oldref="135">Syntax</paragraph>
-<paragraph role="code" id="par_id3149302" xml-lang="en-US" l10n="U" oldref="136">STYLE("Style"; Time; "Style2")</paragraph>
-<paragraph role="paragraph" id="par_id3150596" xml-lang="en-US" l10n="U" oldref="137">
-<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks.</paragraph>
-<paragraph role="paragraph" id="par_id3156149" xml-lang="en-US" l10n="U" oldref="138">
-<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed.</paragraph>
-<paragraph role="paragraph" id="par_id3149520" xml-lang="en-US" l10n="U" oldref="139">
-<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing "Default" is assumed.</paragraph>
-<paragraph role="paragraph" id="par_idN111CA" xml-lang="en-US" l10n="NEW">
-<embedvar href="text/scalc/00/00000004.xhp#optional"/>
-</paragraph>
-<paragraph role="heading" id="hd_id3159254" xml-lang="en-US" level="3" l10n="U" oldref="140">Example</paragraph>
-<paragraph role="paragraph" id="par_id3151374" xml-lang="en-US" l10n="U" oldref="141">
-<item type="input">=STYLE("Invisible";60;"Default")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand.</paragraph>
-<paragraph role="paragraph" id="par_id8056886" xml-lang="en-US" l10n="NEW">Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example </paragraph>
-<paragraph role="paragraph" id="par_id3668935" xml-lang="en-US" l10n="NEW">
-<item type="input">="Text"&amp;T(STYLE("myStyle"))</item>
-</paragraph>
-<paragraph role="paragraph" id="par_id3042085" xml-lang="en-US" l10n="NEW">See also CURRENT() for another example.</paragraph>
-</section>
-<section id="Section16">
+<paragraph xml-lang="en-US" id="hd_id3149425" role="heading" level="2" l10n="U"
+ oldref="133">STYLE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150826" role="paragraph" l10n="U" oldref="134"><ahelp hid="HID_FUNC_VORLAGE">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()&gt;3;"red";"green")) applies the style "red" to the cell if the value is greater than 3, otherwise the style "green" is applied. Both cell formats have to be defined beforehand.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3145373" role="heading" level="3" l10n="U"
+ oldref="135">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149302" role="code" l10n="U" oldref="136">STYLE("Style"; Time; "Style2")</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150596" role="paragraph" l10n="U" oldref="137">
+ <emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156149" role="paragraph" l10n="U" oldref="138">
+ <emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149520" role="paragraph" l10n="U" oldref="139">
+ <emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing "Default" is assumed.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN111CA" role="paragraph" l10n="NEW">
+ <embedvar href="text/scalc/00/00000004.xhp#optional"/>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3159254" role="heading" level="3" l10n="U"
+ oldref="140">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151374" role="paragraph" l10n="U" oldref="141">
+ <item type="input">=STYLE("Invisible";60;"Default")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8056886" role="paragraph" l10n="NEW">Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example </paragraph>
+ <paragraph xml-lang="en-US" id="par_id3668935" role="paragraph" l10n="NEW">
+ <item type="input">="Text"&amp;T(STYLE("myStyle"))</item>
+ </paragraph>
+ <paragraph xml-lang="en-US" id="par_id3042085" role="paragraph" l10n="NEW">See also CURRENT() for another example.</paragraph>
+ </section>
+ <section id="Section16">
<bookmark xml-lang="en-US" branch="index" id="bm_id3150430"><bookmark_value>CHOOSE function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_WAHL" id="bm_id3153947" localize="false"/>
-<paragraph role="heading" id="hd_id3150430" xml-lang="en-US" level="2" l10n="U" oldref="142">CHOOSE</paragraph>
-<paragraph role="paragraph" id="par_id3143270" xml-lang="en-US" l10n="U" oldref="143"><ahelp hid="HID_FUNC_WAHL">Uses an index to return a value from a list of up to 30 values.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3153533" xml-lang="en-US" level="3" l10n="U" oldref="144">Syntax</paragraph>
-<paragraph role="code" id="par_id3155425" xml-lang="en-US" l10n="U" oldref="145">CHOOSE(Index; Value1; ...; Value30)</paragraph>
-<paragraph role="paragraph" id="par_id3144755" xml-lang="en-US" l10n="U" oldref="146">
-<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list.</paragraph>
-<paragraph role="paragraph" id="par_id3149939" xml-lang="en-US" l10n="U" oldref="147">
-<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values.</paragraph>
-<paragraph role="heading" id="hd_id3151253" xml-lang="en-US" level="3" l10n="U" oldref="148">Example</paragraph>
-<paragraph role="paragraph" id="par_id3150625" xml-lang="en-US" l10n="U" oldref="149">
-<item type="input">=CHOOSE(A1;B1;B2;B3;"Today";"Yesterday";"Tomorrow")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text "Today".</paragraph>
-</section>
-<section id="Section17">
+<paragraph xml-lang="en-US" id="hd_id3150430" role="heading" level="2" l10n="U"
+ oldref="142">CHOOSE</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3143270" role="paragraph" l10n="U" oldref="143"><ahelp hid="HID_FUNC_WAHL">Uses an index to return a value from a list of up to 30 values.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3153533" role="heading" level="3" l10n="U"
+ oldref="144">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155425" role="code" l10n="U" oldref="145">CHOOSE(Index; Value1; ...; Value30)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3144755" role="paragraph" l10n="U" oldref="146">
+ <emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3149939" role="paragraph" l10n="U" oldref="147">
+ <emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3151253" role="heading" level="3" l10n="U"
+ oldref="148">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150625" role="paragraph" l10n="U" oldref="149">
+ <item type="input">=CHOOSE(A1;B1;B2;B3;"Today";"Yesterday";"Tomorrow")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text "Today".</paragraph>
+ </section>
+ <section id="Section17">
<bookmark xml-lang="en-US" branch="index" id="bm_id3151001"><bookmark_value>HLOOKUP function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_WVERWEIS" id="bm_id3149481" localize="false"/>
-<paragraph role="heading" id="hd_id3151001" xml-lang="en-US" level="2" l10n="U" oldref="151">HLOOKUP</paragraph>
-<paragraph role="paragraph" id="par_id3148688" xml-lang="en-US" l10n="U" oldref="152"><ahelp hid="HID_FUNC_WVERWEIS">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column.</paragraph>
-<embed href="text/shared/00/00000001.xhp#regulaer"/>
-<paragraph role="heading" id="hd_id3154661" xml-lang="en-US" level="3" l10n="U" oldref="153">Syntax</paragraph>
-<paragraph role="code" id="par_id3146070" xml-lang="en-US" l10n="U" oldref="154">HLOOKUP(SearchCriteria; Array; Index; Sorted)</paragraph>
-<paragraph role="paragraph" id="par_id3148672" xml-lang="en-US" l10n="U" oldref="155">See also:<link href="text/scalc/01/04060109.xhp" name="VLOOKUP">VLOOKUP</link> (columns and rows are exchanged)</paragraph>
-<embed href="text/scalc/05/empty_cells.xhp#empty_cells"/>
-</section>
-<section id="Section18">
+<paragraph xml-lang="en-US" id="hd_id3151001" role="heading" level="2" l10n="U"
+ oldref="151">HLOOKUP</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148688" role="paragraph" l10n="U" oldref="152"><ahelp hid="HID_FUNC_WVERWEIS">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column.</paragraph>
+ <embed href="text/shared/00/00000001.xhp#regulaer"/>
+ <paragraph xml-lang="en-US" id="hd_id3154661" role="heading" level="3" l10n="U"
+ oldref="153">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3146070" role="code" l10n="U" oldref="154">HLOOKUP(SearchCriteria; Array; Index; Sorted)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148672" role="paragraph" l10n="U" oldref="155">See also:<link href="text/scalc/01/04060109.xhp" name="VLOOKUP">VLOOKUP</link> (columns and rows are exchanged)</paragraph>
+ <embed href="text/scalc/05/empty_cells.xhp#empty_cells"/>
+ </section>
+ <section id="Section18">
<bookmark xml-lang="en-US" branch="index" id="bm_id3147321"><bookmark_value>ROW function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ZEILE" id="bm_id3147333" localize="false"/>
-<paragraph role="heading" id="hd_id3147321" xml-lang="en-US" level="2" l10n="U" oldref="157">ROW</paragraph>
-<paragraph role="paragraph" id="par_id3154564" xml-lang="en-US" l10n="U" oldref="203"><ahelp hid="HID_FUNC_ZEILE">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href="text/scalc/01/04060107.xhp#wasmatrix" name="Array">Array</link> if the formula is entered <link href="text/scalc/01/04060107.xhp#somatrixformel" name="as an array formula">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned.</paragraph>
-<paragraph role="heading" id="hd_id3158439" xml-lang="en-US" level="3" l10n="U" oldref="159">Syntax</paragraph>
-<paragraph role="code" id="par_id3154916" xml-lang="en-US" l10n="U" oldref="160">ROW(Reference)</paragraph>
-<paragraph role="paragraph" id="par_id3156336" xml-lang="en-US" l10n="U" oldref="161">
-<emph>Reference</emph> is a cell, an area, or the name of an area.</paragraph>
-<paragraph role="paragraph" id="par_id3151109" xml-lang="en-US" l10n="U" oldref="204">If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type="productname">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell.</paragraph>
-<paragraph role="heading" id="hd_id3155609" xml-lang="en-US" level="3" l10n="U" oldref="162">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154830" xml-lang="en-US" l10n="U" oldref="205">
-<item type="input">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table.</paragraph>
-<paragraph role="paragraph" id="par_id3147094" xml-lang="en-US" l10n="U" oldref="206">
-<item type="input">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8.</paragraph>
-<paragraph role="paragraph" id="par_id3153701" xml-lang="en-US" l10n="U" oldref="207">
-<item type="input">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned.</paragraph>
-<paragraph role="paragraph" id="par_id3150996" xml-lang="en-US" l10n="U" oldref="208">
-<item type="input">{=ROW(A1:E1)}</item> and <item type="input">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first column in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)</paragraph>
-<paragraph role="paragraph" id="par_id3153671" xml-lang="en-US" l10n="U" oldref="209">
-<item type="input">=ROW()</item> returns 3 if the formula was entered in row 3.</paragraph>
-<paragraph role="paragraph" id="par_id3153790" xml-lang="en-US" l10n="U" oldref="210">
-<item type="input">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if "Rabbit" is the named area (C1:D3).</paragraph>
-</section>
-<section id="Section19">
+<paragraph xml-lang="en-US" id="hd_id3147321" role="heading" level="2" l10n="U"
+ oldref="157">ROW</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154564" role="paragraph" l10n="U" oldref="203"><ahelp hid="HID_FUNC_ZEILE">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href="text/scalc/01/04060107.xhp#wasmatrix" name="Array">Array</link> if the formula is entered <link href="text/scalc/01/04060107.xhp#somatrixformel" name="as an array formula">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3158439" role="heading" level="3" l10n="U"
+ oldref="159">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154916" role="code" l10n="U" oldref="160">ROW(Reference)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3156336" role="paragraph" l10n="U" oldref="161">
+ <emph>Reference</emph> is a cell, an area, or the name of an area.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3151109" role="paragraph" l10n="U" oldref="204">If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type="productname">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155609" role="heading" level="3" l10n="U"
+ oldref="162">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154830" role="paragraph" l10n="U" oldref="205">
+ <item type="input">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3147094" role="paragraph" l10n="U" oldref="206">
+ <item type="input">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153701" role="paragraph" l10n="U" oldref="207">
+ <item type="input">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150996" role="paragraph" l10n="U" oldref="208">
+ <item type="input">{=ROW(A1:E1)}</item> and <item type="input">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first column in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153671" role="paragraph" l10n="U" oldref="209">
+ <item type="input">=ROW()</item> returns 3 if the formula was entered in row 3.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3153790" role="paragraph" l10n="U" oldref="210">
+ <item type="input">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if "Rabbit" is the named area (C1:D3).</paragraph>
+ </section>
+ <section id="Section19">
<bookmark xml-lang="en-US" branch="index" id="bm_id3145772"><bookmark_value>ROWS function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_ZEILEN" id="bm_id3150667" localize="false"/>
-<paragraph role="heading" id="hd_id3145772" xml-lang="en-US" level="2" l10n="U" oldref="166">ROWS</paragraph>
-<paragraph role="paragraph" id="par_id3148971" xml-lang="en-US" l10n="U" oldref="167"><ahelp hid="HID_FUNC_ZEILEN">Returns the number of rows in a reference or array.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id3156051" xml-lang="en-US" level="3" l10n="U" oldref="168">Syntax</paragraph>
-<paragraph role="code" id="par_id3154357" xml-lang="en-US" l10n="U" oldref="169">ROWS(Array)</paragraph>
-<paragraph role="paragraph" id="par_id3155942" xml-lang="en-US" l10n="U" oldref="170">
-<emph>Array</emph> is the reference or named area whose total number of rows is to be determined.</paragraph>
-<paragraph role="heading" id="hd_id3155869" xml-lang="en-US" level="3" l10n="U" oldref="171">Example</paragraph>
-<paragraph role="paragraph" id="par_id3154725" xml-lang="en-US" l10n="U" oldref="212">
-<item type="input">=Rows(B5)</item> returns 1 because a cell only contains one row.</paragraph>
-<paragraph role="paragraph" id="par_id3150102" xml-lang="en-US" l10n="U" oldref="172">
-<item type="input">=ROWS(A10:B12)</item> returns 3.</paragraph>
-<paragraph role="paragraph" id="par_id3155143" xml-lang="en-US" l10n="U" oldref="213">
-<item type="input">=ROWS(Rabbit)</item> returns 3 if "Rabbit" is the named area (C1:D3).</paragraph>
-</section>
-<section id="Section20">
+<paragraph xml-lang="en-US" id="hd_id3145772" role="heading" level="2" l10n="U"
+ oldref="166">ROWS</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3148971" role="paragraph" l10n="U" oldref="167"><ahelp hid="HID_FUNC_ZEILEN">Returns the number of rows in a reference or array.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3156051" role="heading" level="3" l10n="U"
+ oldref="168">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154357" role="code" l10n="U" oldref="169">ROWS(Array)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155942" role="paragraph" l10n="U" oldref="170">
+ <emph>Array</emph> is the reference or named area whose total number of rows is to be determined.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3155869" role="heading" level="3" l10n="U"
+ oldref="171">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3154725" role="paragraph" l10n="U" oldref="212">
+ <item type="input">=Rows(B5)</item> returns 1 because a cell only contains one row.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3150102" role="paragraph" l10n="U" oldref="172">
+ <item type="input">=ROWS(A10:B12)</item> returns 3.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3155143" role="paragraph" l10n="U" oldref="213">
+ <item type="input">=ROWS(Rabbit)</item> returns 3 if "Rabbit" is the named area (C1:D3).</paragraph>
+ </section>
+ <section id="Section20">
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_HYPERLINK" id="bm_id8036439" localize="false"/>
<bookmark xml-lang="en-US" branch="index" id="bm_id9959410"><bookmark_value>HYPERLINK function</bookmark_value>
</bookmark>
-<paragraph role="heading" id="par_idN11798" xml-lang="en-US" level="2" l10n="NEW">HYPERLINK</paragraph>
-<paragraph role="paragraph" id="par_idN117F1" xml-lang="en-US" l10n="NEW"><ahelp hid="HID_FUNC_HYPERLINK">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp></paragraph>
-<paragraph role="paragraph" id="par_idN11800" xml-lang="en-US" l10n="NEW">If you use the optional <emph>cell text</emph> parameter, the formula locates the URL, and then displays the text.</paragraph>
-<paragraph role="tip" id="par_idN11803" xml-lang="en-US" l10n="NEW">To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>.</paragraph>
-<paragraph role="heading" id="par_idN1180A" xml-lang="en-US" level="3" l10n="NEW">Syntax</paragraph>
-<paragraph role="code" id="par_idN1180E" xml-lang="en-US" l10n="NEW">HYPERLINK("URL") or HYPERLINK("URL"; "CellText")</paragraph>
-<paragraph role="paragraph" id="par_idN11811" xml-lang="en-US" l10n="NEW">
-<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text that is displayed in the cell and the result of the function. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and in the result of the function.</paragraph>
-<paragraph role="heading" id="par_idN11823" xml-lang="en-US" level="3" l10n="NEW">Example</paragraph>
-<paragraph role="paragraph" id="par_idN11827" xml-lang="en-US" l10n="NEW">
-<item type="input">=HYPERLINK("http://www.example.org")</item> displays the text "http://www.example.org" in the cell and executes the hyperlink http://www.example.org when clicked.</paragraph>
-<paragraph role="paragraph" id="par_idN1182A" xml-lang="en-US" l10n="NEW">
-<item type="input">=HYPERLINK("http://www.example.org";"Click here")</item> displays the text "Click here" in the cell and executes the hyperlink http://www.example.org when clicked.</paragraph>
-<paragraph role="paragraph" id="par_idN1182D" xml-lang="en-US" l10n="NEW">
-<item type="input">=HYPERLINK($B4)</item> where cell B4 contains <item type="input">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result.</paragraph>
-<paragraph role="paragraph" id="par_idN11830" xml-lang="en-US" l10n="NEW">
-<item type="input">=HYPERLINK("http://www.";"Click ") &amp; "example.org"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked.</paragraph>
-<paragraph role="paragraph" id="par_id8859523" xml-lang="en-US" l10n="NEW">
-<item type="input">=HYPERLINK("#Sheet1.A1";"Go to top")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document.</paragraph>
-<paragraph role="paragraph" id="par_id2958769" xml-lang="en-US" l10n="NEW">
-<item type="input">=HYPERLINK("file:///C:/writer.odt#Specification";"Go to Writer bookmark")</item> displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark "Specification".</paragraph>
-</section>
-<section id="getpivotdata">
+<paragraph xml-lang="en-US" id="par_idN11798" role="heading" level="2" l10n="NEW">HYPERLINK</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN117F1" role="paragraph" l10n="NEW"><ahelp hid="HID_FUNC_HYPERLINK">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="par_idN11800" role="paragraph" l10n="NEW">If you use the optional <emph>cell text</emph> parameter, the formula locates the URL, and then displays the text.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN11803" role="tip" l10n="NEW">To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN1180A" role="heading" level="3" l10n="NEW">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN1180E" role="code" l10n="NEW">HYPERLINK("URL") or HYPERLINK("URL"; "CellText")</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN11811" role="paragraph" l10n="NEW">
+ <emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text that is displayed in the cell and the result of the function. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and in the result of the function.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN11823" role="heading" level="3" l10n="NEW">Example</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN11827" role="paragraph" l10n="NEW">
+ <item type="input">=HYPERLINK("http://www.example.org")</item> displays the text "http://www.example.org" in the cell and executes the hyperlink http://www.example.org when clicked.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN1182A" role="paragraph" l10n="NEW">
+ <item type="input">=HYPERLINK("http://www.example.org";"Click here")</item> displays the text "Click here" in the cell and executes the hyperlink http://www.example.org when clicked.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN1182D" role="paragraph" l10n="NEW">
+ <item type="input">=HYPERLINK($B4)</item> where cell B4 contains <item type="input">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result.</paragraph>
+ <paragraph xml-lang="en-US" id="par_idN11830" role="paragraph" l10n="NEW">
+ <item type="input">=HYPERLINK("http://www.";"Click ") &amp; "example.org"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8859523" role="paragraph" l10n="NEW">
+ <item type="input">=HYPERLINK("#Sheet1.A1";"Go to top")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id2958769" role="paragraph" l10n="NEW">
+ <item type="input">=HYPERLINK("file:///C:/writer.odt#Specification";"Go to Writer bookmark")</item> displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark "Specification".</paragraph>
+ </section>
+ <section id="getpivotdata">
<bookmark xml-lang="en-US" branch="index" id="bm_id7682424"><bookmark_value>GETPIVOTDATA function</bookmark_value>
</bookmark>
<bookmark xml-lang="en-US" branch="hid/HID_FUNC_GETPIVOTDATA" id="bm_id897854" localize="false"/>
-<paragraph role="heading" id="hd_id3747062" xml-lang="en-US" level="2" l10n="NEW">GETPIVOTDATA</paragraph>
-<paragraph role="paragraph" id="par_id3593859" xml-lang="en-US" l10n="NEW"><ahelp hid=".">The GETPIVOTDATA function returns a result value from a DataPilot table. The value is addressed using field and item names, so it remains valid if the layout of the DataPilot table changes.</ahelp></paragraph>
-<paragraph role="heading" id="hd_id9741508" xml-lang="en-US" level="3" l10n="NEW">Syntax</paragraph>
-<paragraph role="paragraph" id="par_id909451" xml-lang="en-US" l10n="NEW">Two different syntax definitions can be used:</paragraph>
-<paragraph role="code" id="par_id1665089" xml-lang="en-US" l10n="NEW">GETPIVOTDATA(TargetField; DataPilot; [ Field 1; Item 1; ... ])</paragraph>
-<paragraph role="code" id="par_id4997100" xml-lang="en-US" l10n="NEW">GETPIVOTDATA(DataPilot; Constraints)</paragraph>
-<paragraph role="paragraph" id="par_id1672109" xml-lang="en-US" l10n="NEW">The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax.</paragraph>
-<paragraph role="heading" id="hd_id9464094" xml-lang="en-US" level="3" l10n="NEW">First Syntax</paragraph>
-<paragraph role="paragraph" id="par_id9302346" xml-lang="en-US" l10n="NEW">
-<emph>TargetField</emph> is a string that selects one of the DataPilot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like "Sum - Sales").</paragraph>
-<paragraph role="paragraph" id="par_id8296151" xml-lang="en-US" l10n="NEW">
-<emph>DataPilot</emph> is a reference to a cell or cell range that is positioned within a DataPilot table or contains a DataPilot table. If the cell range contains several DataPilot tables, the table that was created last is used.</paragraph>
-<paragraph role="paragraph" id="par_id4809411" xml-lang="en-US" l10n="NEW">If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the DataPilot table. <emph>Item n</emph> is the name of an item from that field.</paragraph>
-<paragraph role="paragraph" id="par_id6454969" xml-lang="en-US" l10n="NEW">If the DataPilot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the DataPilot table.</paragraph>
-<paragraph role="paragraph" id="par_id79042" xml-lang="en-US" l10n="NEW">If the source data contains entries that are hidden by settings of the DataPilot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive.</paragraph>
-<paragraph role="paragraph" id="par_id7928708" xml-lang="en-US" l10n="CHG">If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a DataPilot table, populated using the "Page Fields" area of the DataPilot Layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation.</paragraph>
-<paragraph role="paragraph" id="par_id3864253" xml-lang="en-US" l10n="NEW">Subtotal values from the DataPilot table are only used if they use the function "auto" (except when specified in the constraint, see <item type="literal">Second Syntax</item> below).</paragraph>
-<paragraph role="heading" id="hd_id3144016" xml-lang="en-US" level="3" l10n="NEW">Second Syntax</paragraph>
-<paragraph role="paragraph" id="par_id9937131" xml-lang="en-US" l10n="NEW">
-<emph>DataPilot</emph> has the same meaning as in the first syntax.</paragraph>
-<paragraph role="paragraph" id="par_id5616626" xml-lang="en-US" l10n="CHG">
-<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell.</paragraph>
-<paragraph role="paragraph" id="par_id4076357" xml-lang="en-US" l10n="NEW">One of the entries can be the data field name. The data field name can be left out if the DataPilot table contains only one data field, otherwise it must be present. </paragraph>
-<paragraph role="paragraph" id="par_id8231757" xml-lang="en-US" l10n="CHG">Each of the other entries specifies a constraint in the form <item type="literal">Field[Item]</item> (with literal characters [ and ]), or only <item type="literal">Item</item> if the item name is unique within all fields that are used in the DataPilot table.<comment>i82342</comment></paragraph>
-<paragraph role="paragraph" id="par_id3168736" xml-lang="en-US" l10n="CHG">A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive.</paragraph><comment>UFI: Example from spec doc is quite difficult to localize. Try to find other one</comment>
+<paragraph xml-lang="en-US" id="hd_id3747062" role="heading" level="2" l10n="NEW">GETPIVOTDATA</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3593859" role="paragraph" l10n="NEW"><ahelp hid=".">The GETPIVOTDATA function returns a result value from a DataPilot table. The value is addressed using field and item names, so it remains valid if the layout of the DataPilot table changes.</ahelp></paragraph>
+ <paragraph xml-lang="en-US" id="hd_id9741508" role="heading" level="3" l10n="NEW">Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id909451" role="paragraph" l10n="NEW">Two different syntax definitions can be used:</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1665089" role="code" l10n="NEW">GETPIVOTDATA(TargetField; DataPilot; [ Field 1; Item 1; ... ])</paragraph>
+ <paragraph xml-lang="en-US" id="par_id4997100" role="code" l10n="NEW">GETPIVOTDATA(DataPilot; Constraints)</paragraph>
+ <paragraph xml-lang="en-US" id="par_id1672109" role="paragraph" l10n="NEW">The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax.</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id9464094" role="heading" level="3" l10n="NEW">First Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9302346" role="paragraph" l10n="NEW">
+ <emph>TargetField</emph> is a string that selects one of the DataPilot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like "Sum - Sales").</paragraph>
+ <paragraph xml-lang="en-US" id="par_id8296151" role="paragraph" l10n="NEW">
+ <emph>DataPilot</emph> is a reference to a cell or cell range that is positioned within a DataPilot table or contains a DataPilot table. If the cell range contains several DataPilot tables, the table that was created last is used.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id4809411" role="paragraph" l10n="NEW">If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the DataPilot table. <emph>Item n</emph> is the name of an item from that field.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id6454969" role="paragraph" l10n="NEW">If the DataPilot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the DataPilot table.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id79042" role="paragraph" l10n="NEW">If the source data contains entries that are hidden by settings of the DataPilot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id7928708" role="paragraph" l10n="CHG">If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a DataPilot table, populated using the "Page Fields" area of the DataPilot Layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id3864253" role="paragraph" l10n="NEW">Subtotal values from the DataPilot table are only used if they use the function "auto" (except when specified in the constraint, see <item type="literal">Second Syntax</item> below).</paragraph>
+ <paragraph xml-lang="en-US" id="hd_id3144016" role="heading" level="3" l10n="NEW">Second Syntax</paragraph>
+ <paragraph xml-lang="en-US" id="par_id9937131" role="paragraph" l10n="NEW">
+ <emph>DataPilot</emph> has the same meaning as in the first syntax.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id5616626" role="paragraph" l10n="CHG">
+ <emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell.</paragraph>
+ <paragraph xml-lang="en-US" id="par_id4076357" role="paragraph" l10n="NEW">One of the entries can be the data field name. The data field name can be left out if the DataPilot table contains only one data field, otherwise it must be present. </paragraph>
+ <paragraph xml-lang="en-US" id="par_id8231757" role="paragraph" l10n="CHG">Each of the other entries specifies a constraint in the form <item type="literal">Field[Item]</item> (with literal characters [ and ]), or only <item type="literal">Item</item> if the item name is unique within all fields that are used in the DataPilot table.<comment>i82342</comment></paragraph>