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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
//!
//! These functions look up information. Note that IF() 6.15.4 can be
//! considered a trivial lookup function, but it is listed as a logical
//! function instead.
use crate::*;
use crate*;
/// Returns a cell address (reference) as text.
///
/// [documentfoundation->ADDRESS](https://wiki.documentfoundation.org/Documentation/Calc_Functions/ADDRESS)
///
/// __Syntax__:
/// ```ods
/// ADDRESS( Row: Integer; Column: Integer )
/// ```
///
/// __Constraints__:
/// Row ≥ 1, Column ≥ 1, 1 ≤ Abs ≤ 4; A1Style = TRUE. Evaluators may
/// evaluate expressions that do not meet the constraint A1Style = TRUE.
///
/// __Semantics__:
/// Returns a cell address (reference) as text. The text does not include the
/// surrounding [...] of a reference. If a Sheet name is given, the sheet name
/// in the text returned is followed by a “.” and the column/row reference
/// if A1Style is TRUE, or a “!” and the column/row reference if A1Style is
/// FALSE; otherwise no “.” respectively “!” is included. Columns are
/// identified using uppercase letters. The value of Abs determines if the
/// column and/or row is absolute or relative. The value of A1Style determines
/// if A1 reference style or R1C1 reference style is used.
///
/// Note that the INDIRECT function accepts this format.
///
/// __See also__: [crate::of::indirect()], [crate::of::address_()], [crate::of::address__()], [crate::of::address___()],
/// Returns a cell address (reference) as text.
///
/// [documentfoundation->ADDRESS](https://wiki.documentfoundation.org/Documentation/Calc_Functions/ADDRESS)
///
/// __Syntax__:
/// ```ods
/// ADDRESS( Row: Integer; Column: Integer; Abs: Integer )
/// ```
///
/// __Constraints__:
/// Row ≥ 1, Column ≥ 1, 1 ≤ Abs ≤ 4; A1Style = TRUE. Evaluators may
/// evaluate expressions that do not meet the constraint A1Style = TRUE.
///
/// __Semantics__:
/// Returns a cell address (reference) as text. The text does not include the
/// surrounding [...] of a reference. If a Sheet name is given, the sheet name
/// in the text returned is followed by a “.” and the column/row reference
/// if A1Style is TRUE, or a “!” and the column/row reference if A1Style is
/// FALSE; otherwise no “.” respectively “!” is included. Columns are
/// identified using uppercase letters. The value of Abs determines if the
/// column and/or row is absolute or relative. The value of A1Style determines
/// if A1 reference style or R1C1 reference style is used.
///
/// Note that the INDIRECT function accepts this format.
///
/// __See also__: [crate::of::indirect()], [crate::of::address()], [crate::of::address__()], [crate::of::address___()],
/// Returns a cell address (reference) as text.
///
/// [documentfoundation->ADDRESS](https://wiki.documentfoundation.org/Documentation/Calc_Functions/ADDRESS)
///
/// __Syntax__:
/// ```ods
/// ADDRESS( Row: Integer; Column: Integer; Abs: Integer; A1Style: Logical )
/// ```
///
/// __Constraints__:
/// Row ≥ 1, Column ≥ 1, 1 ≤ Abs ≤ 4; A1Style = TRUE. Evaluators may
/// evaluate expressions that do not meet the constraint A1Style = TRUE.
///
/// __Semantics__:
/// Returns a cell address (reference) as text. The text does not include the
/// surrounding [...] of a reference. If a Sheet name is given, the sheet name
/// in the text returned is followed by a “.” and the column/row reference
/// if A1Style is TRUE, or a “!” and the column/row reference if A1Style is
/// FALSE; otherwise no “.” respectively “!” is included. Columns are
/// identified using uppercase letters. The value of Abs determines if the
/// column and/or row is absolute or relative. The value of A1Style determines
/// if A1 reference style or R1C1 reference style is used.
///
/// Note that the INDIRECT function accepts this format.
///
/// __See also__: [crate::of::indirect()], [crate::of::address()], [crate::of::address_()], [crate::of::address___()],
/// Returns a cell address (reference) as text.
///
/// [documentfoundation->ADDRESS](https://wiki.documentfoundation.org/Documentation/Calc_Functions/ADDRESS)
///
/// __Syntax__:
/// ```ods
/// ADDRESS( Row: Integer; Column: Integer; Abs: Integer; A1Style: Logical; Sheet: Text )
/// ```
///
/// __Constraints__:
/// Row ≥ 1, Column ≥ 1, 1 ≤ Abs ≤ 4; A1Style = TRUE. Evaluators may
/// evaluate expressions that do not meet the constraint A1Style = TRUE.
///
/// __Semantics__:
/// Returns a cell address (reference) as text. The text does not include the
/// surrounding [...] of a reference. If a Sheet name is given, the sheet name
/// in the text returned is followed by a “.” and the column/row reference
/// if A1Style is TRUE, or a “!” and the column/row reference if A1Style is
/// FALSE; otherwise no “.” respectively “!” is included. Columns are
/// identified using uppercase letters. The value of Abs determines if the
/// column and/or row is absolute or relative. The value of A1Style determines
/// if A1 reference style or R1C1 reference style is used.
///
/// Note that the INDIRECT function accepts this format.
///
/// __See also__: [crate::of::indirect()], [crate::of::address()], [crate::of::address_()], [crate::of::address__()],
/// Uses an index to return a value from a list of values.
///
/// [documentfoundation->CHOOSE](https://wiki.documentfoundation.org/Documentation/Calc_Functions/CHOOSE)
///
/// __Syntax__:
/// ```ods
/// CHOOSE( Index: Integer{; Value: Any}+ )
/// ```
///
/// __Constraints__:
/// Returns an Error if Index < 1 or if there is no corresponding value in the
/// list of Values.
///
/// __Semantics__:
/// Uses Index to determine which value, from a list of values, to return. If
/// Index is 1, CHOOSE returns the first Value; if Index is 2, CHOOSE returns
/// the second value, and so on. Note that the Values may be formula
/// expressions. Expression paths of parameters other than the one chosen are
/// not calculated or evaluated for side effects.
///
/// __See also__: [crate::of::if_()],
/// Look for a matching value in the first row of the given table, and return
/// the value of the indicated row.
///
/// [documentfoundation->HLOOKUP](https://wiki.documentfoundation.org/Documentation/Calc_Functions/HLOOKUP)
///
/// __Syntax__:
/// ```ods
/// HLOOKUP( Lookup: Any; DataSource: Reference|Array; Row: Integer )
/// ```
///
/// __Constraints__:
/// Row ≥ 1; Searched portion of DataSource shall not include Logical values.
/// Evaluators may evaluate expressions that do not meet the constraint that
/// the searched portion of a DataSource not include Logical values.
///
/// __Semantics__:
///
/// If RangeLookup is omitted or TRUE or not 0, the first row of DataSource is
/// assumed to be sorted in ascending order, with smaller numbers before larger
/// ones, smaller text values before larger ones (e.g., "A" before "B", and "B"
/// before "BA"), and FALSE before TRUE. If the types are mixed, Numbers are
/// sorted before Text, and Text before Logicals; evaluators without a separate
/// Logical type may include a Logical as a Number. The lookup will try to
/// match an entry of value Lookup. If none is found the largest entry less
/// than Lookup is taken as a match. From a sequence of identical values ≤
/// Lookup the last entry is taken. If there is no data less than or equal to
/// Lookup, the #N/A Error is returned. If Lookup is of type Text and the value
/// found is of type Number, the #N/A Error is returned. If DataSource is not
/// sorted, the result is undetermined and implementation-dependent. In most
/// cases it will be arbitrary and just plain wrong due to binary search
/// algorithms.
///
/// If RangeLookup is FALSE or 0, DataSource does not need to be sorted and an
/// exact match is searched. Each value in the first row of DataSource is
/// examined in order (starting at the left) until its value matches Lookup.
///
/// Both methods, if there is a match, return the corresponding value in row
/// Row, relative to the DataSource, where the topmost row in DataSource is 1.
///
/// The values returned may vary depending upon the
/// HOST-USE-REGULAR-EXPRESSIONS or HOST-USE-WILDCARDS or
/// HOST-SEARCH-CRITERIA-MUST-APPLY-TO-WHOLE-CELL properties. 3.4
///
/// __See also__: [crate::of::index()], [crate::of::match_()], [crate::of::offset()], [crate::of::vlookup()], [crate::of::hlookup_()],
/// Look for a matching value in the first row of the given table, and return
/// the value of the indicated row.
///
/// [documentfoundation->HLOOKUP](https://wiki.documentfoundation.org/Documentation/Calc_Functions/HLOOKUP)
///
/// __Syntax__:
/// ```ods
/// HLOOKUP( Lookup: Any; DataSource: Reference|Array; Row: Integer; RangeLookup: Logical )
/// ```
///
/// __Constraints__:
/// Row ≥ 1; Searched portion of DataSource shall not include Logical values.
/// Evaluators may evaluate expressions that do not meet the constraint that
/// the searched portion of a DataSource not include Logical values.
///
/// __Semantics__:
///
/// If RangeLookup is omitted or TRUE or not 0, the first row of DataSource is
/// assumed to be sorted in ascending order, with smaller numbers before larger
/// ones, smaller text values before larger ones (e.g., "A" before "B", and "B"
/// before "BA"), and FALSE before TRUE. If the types are mixed, Numbers are
/// sorted before Text, and Text before Logicals; evaluators without a separate
/// Logical type may include a Logical as a Number. The lookup will try to
/// match an entry of value Lookup. If none is found the largest entry less
/// than Lookup is taken as a match. From a sequence of identical values ≤
/// Lookup the last entry is taken. If there is no data less than or equal to
/// Lookup, the #N/A Error is returned. If Lookup is of type Text and the value
/// found is of type Number, the #N/A Error is returned. If DataSource is not
/// sorted, the result is undetermined and implementation-dependent. In most
/// cases it will be arbitrary and just plain wrong due to binary search
/// algorithms.
///
/// If RangeLookup is FALSE or 0, DataSource does not need to be sorted and an
/// exact match is searched. Each value in the first row of DataSource is
/// examined in order (starting at the left) until its value matches Lookup.
///
/// Both methods, if there is a match, return the corresponding value in row
/// Row, relative to the DataSource, where the topmost row in DataSource is 1.
///
/// The values returned may vary depending upon the
/// HOST-USE-REGULAR-EXPRESSIONS or HOST-USE-WILDCARDS or
/// HOST-SEARCH-CRITERIA-MUST-APPLY-TO-WHOLE-CELL properties. 3.4
///
/// __See also__: [crate::of::index()], [crate::of::match_()], [crate::of::offset()], [crate::of::vlookup()], [crate::of::hlookup()],
/// Returns a value using a row and column index value (and optionally an area
/// index).
///
/// [documentfoundation->INDEX](https://wiki.documentfoundation.org/Documentation/Calc_Functions/INDEX)
///
/// __Syntax__:
/// ```ods
/// INDEX( DataSource: ReferenceList|Array )
/// ```
///
/// __Constraints__:
/// Row ≥ 0, Column ≥ 0,
/// 1 ≤ AreaNumber ≤ number of references in DataSource if that is a
/// ReferenceList, else AreaNumber = 1
///
/// __Semantics__:
///
/// Given a DataSource, returns the value at the given Row and Column (starting
/// numbering at 1, relative to the top-left of the DataSource) of the given
/// area AreaNumber. If AreaNumber is not given, it defaults to 1 (the first
/// and possibly only area). This function is essentially a two-dimensional
/// version of CHOOSE, which does not accept range parameters.
///
/// If Row is omitted or an empty parameter (two consecutive ;; semicolons) or
/// 0, an entire column of the given area AreaNumber in DataSource is returned.
/// If Column is omitted or an empty parameter (two consecutive ;; semicolons)
/// or 0, an entire row of the given area AreaNumber in DataSource is returned.
/// If both, Row and Column, are omitted or empty or 0, the entire given area
/// AreaNumber is returned.
///
/// If DataSource is a one-dimensional column vector, Column is optional or can
/// be omitted as an empty parameter (two consecutive ;; semicolons). If
/// DataSource is a one-dimensional row vector, Row is optional, which
/// effectively makes Row act as the column offset into the vector, or can be
/// omitted as an empty parameter (two consecutive ;; semicolons).
///
/// If Row or Column have a value greater than the dimension of the
/// corresponding given area AreaNumber, an Error is returned.
///
/// __See also__: [crate::of::areas()], [crate::of::choose()], [crate::of::index_()], [crate::of::index__()], [crate::of::index___()],
/// Returns a value using a row and column index value (and optionally an area
/// index).
///
/// [documentfoundation->INDEX](https://wiki.documentfoundation.org/Documentation/Calc_Functions/INDEX)
///
/// __Syntax__:
/// ```ods
/// INDEX( DataSource: ReferenceList|Array; Row: Integer )
/// ```
///
/// __Constraints__:
/// Row ≥ 0, Column ≥ 0,
/// 1 ≤ AreaNumber ≤ number of references in DataSource if that is a
/// ReferenceList, else AreaNumber = 1
///
/// __Semantics__:
///
/// Given a DataSource, returns the value at the given Row and Column (starting
/// numbering at 1, relative to the top-left of the DataSource) of the given
/// area AreaNumber. If AreaNumber is not given, it defaults to 1 (the first
/// and possibly only area). This function is essentially a two-dimensional
/// version of CHOOSE, which does not accept range parameters.
///
/// If Row is omitted or an empty parameter (two consecutive ;; semicolons) or
/// 0, an entire column of the given area AreaNumber in DataSource is returned.
/// If Column is omitted or an empty parameter (two consecutive ;; semicolons)
/// or 0, an entire row of the given area AreaNumber in DataSource is returned.
/// If both, Row and Column, are omitted or empty or 0, the entire given area
/// AreaNumber is returned.
///
/// If DataSource is a one-dimensional column vector, Column is optional or can
/// be omitted as an empty parameter (two consecutive ;; semicolons). If
/// DataSource is a one-dimensional row vector, Row is optional, which
/// effectively makes Row act as the column offset into the vector, or can be
/// omitted as an empty parameter (two consecutive ;; semicolons).
///
/// If Row or Column have a value greater than the dimension of the
/// corresponding given area AreaNumber, an Error is returned.
///
/// __See also__: [crate::of::areas()], [crate::of::choose()], [crate::of::index()], [crate::of::index__()], [crate::of::index___()],
/// Returns a value using a row and column index value (and optionally an area
/// index).
///
/// [documentfoundation->INDEX](https://wiki.documentfoundation.org/Documentation/Calc_Functions/INDEX)
///
/// __Syntax__:
/// ```ods
/// INDEX( DataSource: ReferenceList|Array; Row: Integer; Column: Integer )
/// ```
///
/// __Constraints__:
/// Row ≥ 0, Column ≥ 0,
/// 1 ≤ AreaNumber ≤ number of references in DataSource if that is a
/// ReferenceList, else AreaNumber = 1
///
/// __Semantics__:
///
/// Given a DataSource, returns the value at the given Row and Column (starting
/// numbering at 1, relative to the top-left of the DataSource) of the given
/// area AreaNumber. If AreaNumber is not given, it defaults to 1 (the first
/// and possibly only area). This function is essentially a two-dimensional
/// version of CHOOSE, which does not accept range parameters.
///
/// If Row is omitted or an empty parameter (two consecutive ;; semicolons) or
/// 0, an entire column of the given area AreaNumber in DataSource is returned.
/// If Column is omitted or an empty parameter (two consecutive ;; semicolons)
/// or 0, an entire row of the given area AreaNumber in DataSource is returned.
/// If both, Row and Column, are omitted or empty or 0, the entire given area
/// AreaNumber is returned.
///
/// If DataSource is a one-dimensional column vector, Column is optional or can
/// be omitted as an empty parameter (two consecutive ;; semicolons). If
/// DataSource is a one-dimensional row vector, Row is optional, which
/// effectively makes Row act as the column offset into the vector, or can be
/// omitted as an empty parameter (two consecutive ;; semicolons).
///
/// If Row or Column have a value greater than the dimension of the
/// corresponding given area AreaNumber, an Error is returned.
///
/// __See also__: [crate::of::areas()], [crate::of::choose()], [crate::of::index()], [crate::of::index_()], [crate::of::index___()],
/// Returns a value using a row and column index value (and optionally an area
/// index).
///
/// [documentfoundation->INDEX](https://wiki.documentfoundation.org/Documentation/Calc_Functions/INDEX)
///
/// __Syntax__:
/// ```ods
/// INDEX( DataSource: ReferenceList|Array; Row: Integer; Column: Integer; AreaNumber: Integer )
/// ```
///
/// __Constraints__:
/// Row ≥ 0, Column ≥ 0,
/// 1 ≤ AreaNumber ≤ number of references in DataSource if that is a
/// ReferenceList, else AreaNumber = 1
///
/// __Semantics__:
///
/// Given a DataSource, returns the value at the given Row and Column (starting
/// numbering at 1, relative to the top-left of the DataSource) of the given
/// area AreaNumber. If AreaNumber is not given, it defaults to 1 (the first
/// and possibly only area). This function is essentially a two-dimensional
/// version of CHOOSE, which does not accept range parameters.
///
/// If Row is omitted or an empty parameter (two consecutive ;; semicolons) or
/// 0, an entire column of the given area AreaNumber in DataSource is returned.
/// If Column is omitted or an empty parameter (two consecutive ;; semicolons)
/// or 0, an entire row of the given area AreaNumber in DataSource is returned.
/// If both, Row and Column, are omitted or empty or 0, the entire given area
/// AreaNumber is returned.
///
/// If DataSource is a one-dimensional column vector, Column is optional or can
/// be omitted as an empty parameter (two consecutive ;; semicolons). If
/// DataSource is a one-dimensional row vector, Row is optional, which
/// effectively makes Row act as the column offset into the vector, or can be
/// omitted as an empty parameter (two consecutive ;; semicolons).
///
/// If Row or Column have a value greater than the dimension of the
/// corresponding given area AreaNumber, an Error is returned.
///
/// __See also__: [crate::of::areas()], [crate::of::choose()], [crate::of::index()], [crate::of::index_()], [crate::of::index__()],
/// Return a reference given a string representation of a reference.
///
/// [documentfoundation->INDIRECT](https://wiki.documentfoundation.org/Documentation/Calc_Functions/INDIRECT)
///
/// __Syntax__:
/// ```ods
/// INDIRECT( Ref: Text )
/// ```
///
/// __Constraints__:
/// Ref is valid reference
///
/// __Semantics__:
/// Given text for a reference (such as “A3”), returns a reference. If A1
/// is False, it is interpreted as an R1C1 reference style. For
/// interoperability, if the Ref text includes a sheet name, evaluators should
/// be able to parse both, the “.” dot and the “!” exclamation mark, as
/// the sheet name separator. If evaluators support the A1 = FALSE case of the
/// ADDRESS 6.14.2 function and include the “!” exclamation mark as the
/// sheet name separator, evaluators shall correctly parse that in the A1 =
/// FALSE case of this INDIRECT function. Evaluators shall correctly parse the
/// “.” dot as the sheet name separator in the A1 = TRUE case.
///
/// __See also__: [crate::of::address()], [crate::of::indirect_()],
/// Return a reference given a string representation of a reference.
///
/// [documentfoundation->INDIRECT](https://wiki.documentfoundation.org/Documentation/Calc_Functions/INDIRECT)
///
/// __Syntax__:
/// ```ods
/// INDIRECT( Ref: Text; A1: Logical )
/// ```
///
/// __Constraints__:
/// Ref is valid reference
///
/// __Semantics__:
/// Given text for a reference (such as “A3”), returns a reference. If A1
/// is False, it is interpreted as an R1C1 reference style. For
/// interoperability, if the Ref text includes a sheet name, evaluators should
/// be able to parse both, the “.” dot and the “!” exclamation mark, as
/// the sheet name separator. If evaluators support the A1 = FALSE case of the
/// ADDRESS 6.14.2 function and include the “!” exclamation mark as the
/// sheet name separator, evaluators shall correctly parse that in the A1 =
/// FALSE case of this INDIRECT function. Evaluators shall correctly parse the
/// “.” dot as the sheet name separator in the A1 = TRUE case.
///
/// __See also__: [crate::of::address()], [crate::of::indirect()],
/// Look for criterion in an already-sorted array, and return a corresponding
/// result.
///
/// [documentfoundation->LOOKUP](https://wiki.documentfoundation.org/Documentation/Calc_Functions/LOOKUP)
///
/// __Syntax__:
/// ```ods
/// LOOKUP( Find: Any; Searched: Reference|Array )
/// ```
///
/// __Constraints__:
/// The searched portion of Searched shall be sorted in ascending order; if
/// provided, Results shall have the same length as Searched. The searched
/// portion of Searched shall not include Logical values. Evaluators may
/// evaluate expressions that do not meet the constraint that the searched
/// portion of a Searched not include Logical values.
///
/// __Semantics__:
/// This function searches for Find in a row or column of the previously-sorted
/// array Searched and returns a corresponding value. The match is the largest
/// value in the row/column of Searched that is less than or equal to Find (so
/// an exact match is always preferred over inexact ones). From a sequence of
/// identical values ≤ Find the last entry is taken. If Find is smaller than
/// the smallest value in the first row or column (depending on the array
/// dimensions), LOOKUP returns the #N/A Error. If Find is of type Text and the
/// value found is of type Number, the #N/A Error is returned.
///
/// The searched portion of Searched shall be sorted in ascending order, and so
/// that values of type Number precede values of type Text if both types are
/// included (e.g., -2, 0, 2, “A”, “B”).
///
/// There are two major uses for this function; the 3-parameter version
/// (vector) and the 2-parameter version (non-vector array).
///
/// __Note__:
/// Interoperability is improved by use of HLOOKUP or VLOOKUP in expressions
/// over LOOKUP.
///
/// When given two parameters, Searched is first examined:
///
/// •If Searched is square or is taller than it is wide (more rows than
/// columns), LOOKUP searches in the first column (similar to VLOOKUP), and
/// returns the corresponding value in the last column.
///
/// •If Searched covers an area that is wider than it is tall (more columns
/// than rows), LOOKUP searches in the first row (similar to HLOOKUP), and
/// returns the corresponding value in the last row.
///
/// When given 3 parameters, Results shall be a vector (either a row or a
/// column) or an Error is raised. The function determines the index of the
/// match in the first column respectively row of Searched, and returns the
/// value in Results with the same index.
///
/// Searched is first examined:
///
/// •If Searched is square or is taller than it is wide (more rows than
/// columns), LOOKUP searches in the first column (similar to VLOOKUP).
///
/// •If Searched covers an area that is wider than it is tall (more columns
/// than rows), LOOKUP searches in the first row (similar to HLOOKUP).
///
/// The lengths of the search vector and the result vector do not need to be
/// identical. When the match position falls outside the length of the result
/// vector, an Error is returned if the result vector is given as an array
/// object. If it is a cell range, it gets automatically extended to the length
/// of the searched vector, but in the direction of the result vector. If just
/// a single cell reference was passed, a column vector is generated. If the
/// cell range cannot be extended due to the sheet's size limit, then the #N/A
/// Error is returned.
///
/// The values returned may vary depending upon the
/// HOST-USE-REGULAR-EXPRESSIONS or HOST-USE-WILDCARDS or
/// HOST-SEARCH-CRITERIA-MUST-APPLY-TO-WHOLE-CELL properties. 3.4
///
/// __See also__: [crate::of::hlookup()], [crate::of::index()], [crate::of::match_()], [crate::of::offset()], [crate::of::vlookup()], [crate::of::lookup_()],
/// Look for criterion in an already-sorted array, and return a corresponding
/// result.
///
/// [documentfoundation->LOOKUP](https://wiki.documentfoundation.org/Documentation/Calc_Functions/LOOKUP)
///
/// __Syntax__:
/// ```ods
/// LOOKUP( Find: Any; Searched: Reference|Array; Results: Reference|Array )
/// ```
///
/// __Constraints__:
/// The searched portion of Searched shall be sorted in ascending order; if
/// provided, Results shall have the same length as Searched. The searched
/// portion of Searched shall not include Logical values. Evaluators may
/// evaluate expressions that do not meet the constraint that the searched
/// portion of a Searched not include Logical values.
///
/// __Semantics__:
/// This function searches for Find in a row or column of the previously-sorted
/// array Searched and returns a corresponding value. The match is the largest
/// value in the row/column of Searched that is less than or equal to Find (so
/// an exact match is always preferred over inexact ones). From a sequence of
/// identical values ≤ Find the last entry is taken. If Find is smaller than
/// the smallest value in the first row or column (depending on the array
/// dimensions), LOOKUP returns the #N/A Error. If Find is of type Text and the
/// value found is of type Number, the #N/A Error is returned.
///
/// The searched portion of Searched shall be sorted in ascending order, and so
/// that values of type Number precede values of type Text if both types are
/// included (e.g., -2, 0, 2, “A”, “B”).
///
/// There are two major uses for this function; the 3-parameter version
/// (vector) and the 2-parameter version (non-vector array).
///
/// __Note__:
/// Interoperability is improved by use of HLOOKUP or VLOOKUP in expressions
/// over LOOKUP.
///
/// When given two parameters, Searched is first examined:
///
/// •If Searched is square or is taller than it is wide (more rows than
/// columns), LOOKUP searches in the first column (similar to VLOOKUP), and
/// returns the corresponding value in the last column.
///
/// •If Searched covers an area that is wider than it is tall (more columns
/// than rows), LOOKUP searches in the first row (similar to HLOOKUP), and
/// returns the corresponding value in the last row.
///
/// When given 3 parameters, Results shall be a vector (either a row or a
/// column) or an Error is raised. The function determines the index of the
/// match in the first column respectively row of Searched, and returns the
/// value in Results with the same index.
///
/// Searched is first examined:
///
/// •If Searched is square or is taller than it is wide (more rows than
/// columns), LOOKUP searches in the first column (similar to VLOOKUP).
///
/// •If Searched covers an area that is wider than it is tall (more columns
/// than rows), LOOKUP searches in the first row (similar to HLOOKUP).
///
/// The lengths of the search vector and the result vector do not need to be
/// identical. When the match position falls outside the length of the result
/// vector, an Error is returned if the result vector is given as an array
/// object. If it is a cell range, it gets automatically extended to the length
/// of the searched vector, but in the direction of the result vector. If just
/// a single cell reference was passed, a column vector is generated. If the
/// cell range cannot be extended due to the sheet's size limit, then the #N/A
/// Error is returned.
///
/// The values returned may vary depending upon the
/// HOST-USE-REGULAR-EXPRESSIONS or HOST-USE-WILDCARDS or
/// HOST-SEARCH-CRITERIA-MUST-APPLY-TO-WHOLE-CELL properties. 3.4
///
/// __See also__: [crate::of::hlookup()], [crate::of::index()], [crate::of::match_()], [crate::of::offset()], [crate::of::vlookup()], [crate::of::lookup()],
/// Finds a Search item in a sequence, and returns its position (starting from
/// 1).
///
/// [documentfoundation->MATCH](https://wiki.documentfoundation.org/Documentation/Calc_Functions/MATCH)
///
/// __Syntax__:
/// ```ods
/// MATCH( Search: Scalar; SearchRegion: Reference|Array )
/// ```
///
/// __Constraints__:
/// -1 ≤ MatchType ≤ 1; The searched portion of SearchRegion shall not
/// include Logical values. Evaluators may evaluate expressions that do not
/// meet the constraint that the searched portion of a SearchRegion not include
/// Logical values.
///
/// SearchRegion shall be a vector (a single row or column)
///
/// __Semantics__:
///
/// •MatchType = -1 finds the smallest value that is greater than or equal to
/// Search in a SearchRegion where values are sorted in descending order. From
/// a sequence of identical values ≥ Search the last value is taken. If no
/// value ≥ Search exists, the #N/A Error is returned. If Search is of type
/// Number and the value found is of type Text, the #N/A Error is returned.
///
/// •MatchType = 0 finds the first value that is equal to Search. Values in
/// SearchRegion do not need to be sorted. If no value equal to Search exists,
/// the #N/A Error is returned.
///
/// •MatchType = 1 or omitted finds the largest value that is less than or
/// equal to Search in a SearchRegion where values are sorted in ascending
/// order. From a sequence of identical values ≤ Search the last value is
/// taken. If no value ≤ Search exists, the #N/A Error is returned. If Search
/// is of type Text and the value found is of type Number, the #N/A Error is
/// returned.
///
/// If a match is found, MATCH returns the relative position (starting from 1).
/// For Text the comparison is case-insensitive. MatchType determines the type
/// of search; if MatchType is 0, the SearchRegion shall be considered
/// unsorted, and the first match is returned. If MatchType is 1, the
/// SearchRegion may be assumed to be sorted in ascending order, with smaller
/// Numbers before larger ones, smaller Text values before larger ones (e.g.,
/// "A" before "B", and "B" before "BA"), and FALSE before TRUE. If the types
/// are mixed, Numbers are sorted before Text, and Text before Logicals;
/// evaluators without a separate Logical type may include a Logical as a
/// Number. If MatchType is -1, then SearchRegion may be assumed to be sorted
/// in descending order (the opposite of the above). If MatchType is 1 or -1,
/// evaluators may use binary search or other techniques so that they do not
/// need to examine every value in linear order. MatchType defaults to 1.
///
/// The values returned may vary depending upon the
/// HOST-USE-REGULAR-EXPRESSIONS or HOST-USE-WILDCARDS or
/// HOST-SEARCH-CRITERIA-MUST-APPLY-TO-WHOLE-CELL properties. 3.4
///
/// __See also__: [crate::of::hlookup()], [crate::of::offset()], [crate::of::vlookup()], [crate::of::match__()],
/// Finds a Search item in a sequence, and returns its position (starting from
/// 1).
///
/// [documentfoundation->MATCH](https://wiki.documentfoundation.org/Documentation/Calc_Functions/MATCH)
///
/// __Syntax__:
/// ```ods
/// MATCH( Search: Scalar; SearchRegion: Reference|Array; MatchType: Integer )
/// ```
///
/// __Constraints__:
/// -1 ≤ MatchType ≤ 1; The searched portion of SearchRegion shall not
/// include Logical values. Evaluators may evaluate expressions that do not
/// meet the constraint that the searched portion of a SearchRegion not include
/// Logical values.
///
/// SearchRegion shall be a vector (a single row or column)
///
/// __Semantics__:
///
/// •MatchType = -1 finds the smallest value that is greater than or equal to
/// Search in a SearchRegion where values are sorted in descending order. From
/// a sequence of identical values ≥ Search the last value is taken. If no
/// value ≥ Search exists, the #N/A Error is returned. If Search is of type
/// Number and the value found is of type Text, the #N/A Error is returned.
///
/// •MatchType = 0 finds the first value that is equal to Search. Values in
/// SearchRegion do not need to be sorted. If no value equal to Search exists,
/// the #N/A Error is returned.
///
/// •MatchType = 1 or omitted finds the largest value that is less than or
/// equal to Search in a SearchRegion where values are sorted in ascending
/// order. From a sequence of identical values ≤ Search the last value is
/// taken. If no value ≤ Search exists, the #N/A Error is returned. If Search
/// is of type Text and the value found is of type Number, the #N/A Error is
/// returned.
///
/// If a match is found, MATCH returns the relative position (starting from 1).
/// For Text the comparison is case-insensitive. MatchType determines the type
/// of search; if MatchType is 0, the SearchRegion shall be considered
/// unsorted, and the first match is returned. If MatchType is 1, the
/// SearchRegion may be assumed to be sorted in ascending order, with smaller
/// Numbers before larger ones, smaller Text values before larger ones (e.g.,
/// "A" before "B", and "B" before "BA"), and FALSE before TRUE. If the types
/// are mixed, Numbers are sorted before Text, and Text before Logicals;
/// evaluators without a separate Logical type may include a Logical as a
/// Number. If MatchType is -1, then SearchRegion may be assumed to be sorted
/// in descending order (the opposite of the above). If MatchType is 1 or -1,
/// evaluators may use binary search or other techniques so that they do not
/// need to examine every value in linear order. MatchType defaults to 1.
///
/// The values returned may vary depending upon the
/// HOST-USE-REGULAR-EXPRESSIONS or HOST-USE-WILDCARDS or
/// HOST-SEARCH-CRITERIA-MUST-APPLY-TO-WHOLE-CELL properties. 3.4
///
/// __See also__: [crate::of::hlookup()], [crate::of::offset()], [crate::of::vlookup()], [crate::of::match_()],
/// Executes a formula expression while substituting a row reference and a
/// column reference.
///
/// [documentfoundation->MULTIPLE.OPERATIONS](https://wiki.documentfoundation.org/Documentation/Calc_Functions/MULTIPLE.OPERATIONS)
///
/// __Syntax__:
/// ```ods
/// MULTIPLE.OPERATIONS( FormulaCell: Reference; RowCell: Reference; RowReplacement: Reference )
/// ```
///
/// __Semantics__:
///
/// •FormulaCell: reference to the cell that contains the formula expression
/// to calculate.
///
/// •RowCell: reference that is to be replaced by RowReplacement.
///
/// •RowReplacement: reference that replaces RowCell.
///
/// •ColumnCell: reference that is to be replaced by ColumnReplacement.
///
/// •ColumnReplacement: reference that replaces ColumnCell.
///
/// MULTIPLE.OPERATIONS executes the formula expression pointed to by
/// FormulaCell and all formula expressions it depends on while replacing all
/// references to RowCell with references to RowReplacement respectively all
/// references to ColumnCell with references to ColumnReplacement.
///
/// If calls to MULTIPLE.OPERATIONS are encountered in dependencies,
/// replacements of target cells shall occur in queued order, with each
/// replacement using the result of the previous replacement.
///
/// __Note__:
/// The function may be used to create tables of expressions that depend on two
/// input parameters.
///
/// __See also__: [crate::of::multiple_operations_()], [crate::of::multiple_operations__()],
/// Executes a formula expression while substituting a row reference and a
/// column reference.
///
/// [documentfoundation->MULTIPLE.OPERATIONS](https://wiki.documentfoundation.org/Documentation/Calc_Functions/MULTIPLE.OPERATIONS)
///
/// __Syntax__:
/// ```ods
/// MULTIPLE.OPERATIONS( FormulaCell: Reference; RowCell: Reference; RowReplacement: Reference; ColumnCell: Reference )
/// ```
///
/// __Semantics__:
///
/// •FormulaCell: reference to the cell that contains the formula expression
/// to calculate.
///
/// •RowCell: reference that is to be replaced by RowReplacement.
///
/// •RowReplacement: reference that replaces RowCell.
///
/// •ColumnCell: reference that is to be replaced by ColumnReplacement.
///
/// •ColumnReplacement: reference that replaces ColumnCell.
///
/// MULTIPLE.OPERATIONS executes the formula expression pointed to by
/// FormulaCell and all formula expressions it depends on while replacing all
/// references to RowCell with references to RowReplacement respectively all
/// references to ColumnCell with references to ColumnReplacement.
///
/// If calls to MULTIPLE.OPERATIONS are encountered in dependencies,
/// replacements of target cells shall occur in queued order, with each
/// replacement using the result of the previous replacement.
///
/// __Note__:
/// The function may be used to create tables of expressions that depend on two
/// input parameters.
///
/// __See also__: [crate::of::multiple_operations()], [crate::of::multiple_operations__()],
/// Executes a formula expression while substituting a row reference and a
/// column reference.
///
/// [documentfoundation->MULTIPLE.OPERATIONS](https://wiki.documentfoundation.org/Documentation/Calc_Functions/MULTIPLE.OPERATIONS)
///
/// __Syntax__:
/// ```ods
/// MULTIPLE.OPERATIONS( FormulaCell: Reference; RowCell: Reference; RowReplacement: Reference; ColumnCell: Reference; ColumnReplacement: Reference )
/// ```
///
/// __Semantics__:
///
/// •FormulaCell: reference to the cell that contains the formula expression
/// to calculate.
///
/// •RowCell: reference that is to be replaced by RowReplacement.
///
/// •RowReplacement: reference that replaces RowCell.
///
/// •ColumnCell: reference that is to be replaced by ColumnReplacement.
///
/// •ColumnReplacement: reference that replaces ColumnCell.
///
/// MULTIPLE.OPERATIONS executes the formula expression pointed to by
/// FormulaCell and all formula expressions it depends on while replacing all
/// references to RowCell with references to RowReplacement respectively all
/// references to ColumnCell with references to ColumnReplacement.
///
/// If calls to MULTIPLE.OPERATIONS are encountered in dependencies,
/// replacements of target cells shall occur in queued order, with each
/// replacement using the result of the previous replacement.
///
/// __Note__:
/// The function may be used to create tables of expressions that depend on two
/// input parameters.
///
/// __See also__: [crate::of::multiple_operations()], [crate::of::multiple_operations_()],
/// Modifies a reference's position and dimension.
///
/// [documentfoundation->OFFSET](https://wiki.documentfoundation.org/Documentation/Calc_Functions/OFFSET)
///
/// __Syntax__:
/// ```ods
/// OFFSET( R: Reference; RowOffset: Integer; ColumnOffset: Integer )
/// ```
///
/// __Constraints__:
/// NewWidth > 0; NewHeight > 0
/// The modified reference shall be in a valid range, starting from column/row
/// one to the maximum column/row.
///
/// __Semantics__:
/// Shifts reference by RowOffset rows and by ColumnOffset columns. Optionally,
/// the dimension can be set to NewWidth and/or NewHeight, if omitted the
/// width/height of the original reference is taken. Note that NewHeight may be
/// empty (two consecutive semicolons ;;) followed by a given NewWidth
/// argument. Returns the modified reference.
///
/// __See also__: [crate::of::column()], [crate::of::columns()], [crate::of::row()], [crate::of::rows()], [crate::of::offset_()], [crate::of::offset__()],
/// Modifies a reference's position and dimension.
///
/// [documentfoundation->OFFSET](https://wiki.documentfoundation.org/Documentation/Calc_Functions/OFFSET)
///
/// __Syntax__:
/// ```ods
/// OFFSET( R: Reference; RowOffset: Integer; ColumnOffset: Integer; NewHeight: Integer )
/// ```
///
/// __Constraints__:
/// NewWidth > 0; NewHeight > 0
/// The modified reference shall be in a valid range, starting from column/row
/// one to the maximum column/row.
///
/// __Semantics__:
/// Shifts reference by RowOffset rows and by ColumnOffset columns. Optionally,
/// the dimension can be set to NewWidth and/or NewHeight, if omitted the
/// width/height of the original reference is taken. Note that NewHeight may be
/// empty (two consecutive semicolons ;;) followed by a given NewWidth
/// argument. Returns the modified reference.
///
/// __See also__: [crate::of::column()], [crate::of::columns()], [crate::of::row()], [crate::of::rows()], [crate::of::offset()], [crate::of::offset__()],
/// Modifies a reference's position and dimension.
///
/// [documentfoundation->OFFSET](https://wiki.documentfoundation.org/Documentation/Calc_Functions/OFFSET)
///
/// __Syntax__:
/// ```ods
/// OFFSET( R: Reference; RowOffset: Integer; ColumnOffset: Integer; NewHeight: Integer; NewWidth: Integer )
/// ```
///
/// __Constraints__:
/// NewWidth > 0; NewHeight > 0
/// The modified reference shall be in a valid range, starting from column/row
/// one to the maximum column/row.
///
/// __Semantics__:
/// Shifts reference by RowOffset rows and by ColumnOffset columns. Optionally,
/// the dimension can be set to NewWidth and/or NewHeight, if omitted the
/// width/height of the original reference is taken. Note that NewHeight may be
/// empty (two consecutive semicolons ;;) followed by a given NewWidth
/// argument. Returns the modified reference.
///
/// __See also__: [crate::of::column()], [crate::of::columns()], [crate::of::row()], [crate::of::rows()], [crate::of::offset()], [crate::of::offset_()],
/// Look for a matching value in the first column of the given table, and
/// return the value of the indicated column.
///
/// [documentfoundation->VLOOKUP](https://wiki.documentfoundation.org/Documentation/Calc_Functions/VLOOKUP)
///
/// __Syntax__:
/// ```ods
/// VLOOKUP( Lookup: Any; DataSource: Reference|Array; Column: Integer )
/// ```
///
/// __Constraints__:
/// Column ≥ 1; The searched portion of DataSource shall not include Logical
/// values. Evaluators may evaluate expressions that do not meet the constraint
/// that the searched portion of a DataSource not include Logical values.
///
/// __Semantics__:
///
/// If RangeLookup is omitted or TRUE or not 0, the first column of DataSource
/// is assumed to be sorted in ascending order, with smaller Numbers before
/// larger ones, smaller Text values before larger ones (e.g., "A" before "B",
/// and "B" before "BA"), and FALSE before TRUE. If the types are mixed,
/// Numbers are sorted before Text, and Text before Logicals; evaluators
/// without a separate Logical type may include a Logical as a Number. The
/// lookup will try to match an entry of value Lookup. From a sequence of
/// identical values ≤ Lookup the last entry is taken. If none is found the
/// largest entry less than Lookup is taken as a match. If there is no data
/// less than or equal to Lookup, the #N/A Error is returned. If Lookup is of
/// type Text and the value found is of type Number, the #N/A Error is
/// returned. If DataSource is not sorted, the result is undetermined and
/// implementation-dependent. In most cases it will be arbitrary and just plain
/// wrong due to binary search algorithms.
///
/// If RangeLookup is FALSE or 0, DataSource does not need to be sorted and an
/// exact match is searched. Each value in the first column of DataSource is
/// examined in order (starting at the top) until its value matches Lookup. If
/// no value matches, the #N/A Error is returned.
///
/// Both methods, if there is a match, return the corresponding value in column
/// Column, relative to the DataSource, where the leftmost column in DataSource
/// is 1.
///
/// The values returned may vary depending upon the
/// HOST-USE-REGULAR-EXPRESSIONS or HOST-USE-WILDCARDS or
/// HOST-SEARCH-CRITERIA-MUST-APPLY-TO-WHOLE-CELL properties. 3.4
///
/// __See also__: [crate::of::hlookup()], [crate::of::index()], [crate::of::match_()], [crate::of::offset()], [crate::of::vlookup_()],
/// Look for a matching value in the first column of the given table, and
/// return the value of the indicated column.
///
/// [documentfoundation->VLOOKUP](https://wiki.documentfoundation.org/Documentation/Calc_Functions/VLOOKUP)
///
/// __Syntax__:
/// ```ods
/// VLOOKUP( Lookup: Any; DataSource: Reference|Array; Column: Integer; RangeLookup: Logical )
/// ```
///
/// __Constraints__:
/// Column ≥ 1; The searched portion of DataSource shall not include Logical
/// values. Evaluators may evaluate expressions that do not meet the constraint
/// that the searched portion of a DataSource not include Logical values.
///
/// __Semantics__:
///
/// If RangeLookup is omitted or TRUE or not 0, the first column of DataSource
/// is assumed to be sorted in ascending order, with smaller Numbers before
/// larger ones, smaller Text values before larger ones (e.g., "A" before "B",
/// and "B" before "BA"), and FALSE before TRUE. If the types are mixed,
/// Numbers are sorted before Text, and Text before Logicals; evaluators
/// without a separate Logical type may include a Logical as a Number. The
/// lookup will try to match an entry of value Lookup. From a sequence of
/// identical values ≤ Lookup the last entry is taken. If none is found the
/// largest entry less than Lookup is taken as a match. If there is no data
/// less than or equal to Lookup, the #N/A Error is returned. If Lookup is of
/// type Text and the value found is of type Number, the #N/A Error is
/// returned. If DataSource is not sorted, the result is undetermined and
/// implementation-dependent. In most cases it will be arbitrary and just plain
/// wrong due to binary search algorithms.
///
/// If RangeLookup is FALSE or 0, DataSource does not need to be sorted and an
/// exact match is searched. Each value in the first column of DataSource is
/// examined in order (starting at the top) until its value matches Lookup. If
/// no value matches, the #N/A Error is returned.
///
/// Both methods, if there is a match, return the corresponding value in column
/// Column, relative to the DataSource, where the leftmost column in DataSource
/// is 1.
///
/// The values returned may vary depending upon the
/// HOST-USE-REGULAR-EXPRESSIONS or HOST-USE-WILDCARDS or
/// HOST-SEARCH-CRITERIA-MUST-APPLY-TO-WHOLE-CELL properties. 3.4
///
/// __See also__: [crate::of::hlookup()], [crate::of::index()], [crate::of::match_()], [crate::of::offset()], [crate::of::vlookup()],