summaryrefslogtreecommitdiffstats
path: root/source/text/shared/01/05020301.xhp
blob: 7bc68721ea41739ec851df73aa33145e670a8f4e (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
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
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
<?xml version="1.0" encoding="UTF-8"?>
<helpdocument version="1.0">
<!--
 * 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/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->

<meta>
  <topic id="textshared0105020301xml" indexer="include">
    <title id="tit" xml-lang="en-US">Number Format Codes</title>
    <filename>/text/shared/01/05020301.xhp</filename>
  </topic>
</meta>

<body>

<bookmark xml-lang="en-US" branch="index" id="bm_id3153514">
  <bookmark_value>format codes; numbers</bookmark_value>
  <bookmark_value>conditions; in number formats</bookmark_value>
  <bookmark_value>number formats; codes</bookmark_value>
  <bookmark_value>currency formats</bookmark_value>
  <bookmark_value>formats;of currencies/date/time</bookmark_value>
  <bookmark_value>numbers; date, time and currency formats</bookmark_value>
  <bookmark_value>Euro; currency formats</bookmark_value>
  <bookmark_value>date formats</bookmark_value>
  <bookmark_value>times, formats</bookmark_value>
  <bookmark_value>percentages, formats</bookmark_value>
  <bookmark_value>scientific notation, formats</bookmark_value>
  <bookmark_value>engineering notation, formats</bookmark_value>
  <bookmark_value>fraction, formats</bookmark_value>
</bookmark>
<comment>mw made "time formats" a two level entry and deleted 2x "formats;"</comment>

<paragraph id="hd_id3153514" role="heading" level="1" xml-lang="en-US"><variable id="zahlenformatcodes"><link href="text/shared/01/05020301.xhp" name="Number Format Codes">Number Format Codes</link> </variable></paragraph>
<paragraph id="par_id3150467" role="paragraph" xml-lang="en-US">Number format codes can consist of up to four sections separated by a semicolon (;).</paragraph>

<list type="ordered">
  <listitem>
    <paragraph id="par_id3150146" role="listitem" xml-lang="en-US">In a number format code with two sections, the first section applies to positive values and zero, and the second section applies to negative values.</paragraph>
  </listitem>
  <listitem>
    <paragraph id="par_id3158442" role="listitem" xml-lang="en-US">In a number format code with three sections, the first section applies to positive values, the second section to negative values, and the third section to the value zero.</paragraph>
  </listitem>
  <listitem>
    <paragraph id="par_id3155069" role="listitem" xml-lang="en-US">You can also assign conditions to the three sections, so that the format is only applied if a condition is met.</paragraph>
  </listitem>
  <listitem>
    <paragraph id="par_id3155070" role="listitem" xml-lang="en-US">Fourth section applies if the content is not a value, but some text. Content is represented by an at sign (@).</paragraph>
  </listitem>
</list>

<paragraph id="hd_id3151262" role="heading" level="2" xml-lang="en-US">Decimal Places and Significant Digits</paragraph>
<paragraph id="par_id3153624" role="paragraph" xml-lang="en-US">Use zero (0), the number sign (#) or the question mark (?) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format. The (?) works as the (#) but adds a space character to keep decimal alignment if there is a hidden non-significant zero.</paragraph>
<paragraph id="par_id3153323" role="paragraph" xml-lang="en-US">Use question marks (?) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers.</paragraph>
<paragraph id="par_id3148440" role="paragraph" xml-lang="en-US">If a number contains more digits to the right of the decimal delimiter than there are placeholders in the format, the number is rounded accordingly. If a number contains more digits to the left of the decimal delimiter than there are placeholders in the format, the entire number is displayed. Use the following list as a guide for using placeholders when you create a number format code:</paragraph>

<table id="tbl_id3149760">
  <tablerow>
    <tablecell>
      <paragraph id="par_id3150902" role="tablehead" xml-lang="en-US">Placeholders</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3157896" role="tablehead" xml-lang="en-US">Explanation</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3152801" role="code" xml-lang="en-US">#</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3145090" role="tablecontent" xml-lang="en-US">Does not display extra zeros.</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3152802" role="code" xml-lang="en-US">?</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3145091" role="tablecontent" xml-lang="en-US">Displays space characters instead of extra zeros.</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3147088" role="code" xml-lang="en-US">0 (Zero)</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3150774" role="tablecontent" xml-lang="en-US">Displays extra zeros if the number has less places than zeros in the format.</paragraph>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_idN1087E" role="heading" level="3" xml-lang="en-US">Examples</paragraph>

<table id="tbl_id3153577">
  <tablerow>
    <tablecell>
      <paragraph id="par_id3149182" role="tablehead" xml-lang="en-US">Number Format</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3154749" role="tablehead" xml-lang="en-US">Format Code</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3148538" role="tablecontent" xml-lang="en-US">3456.78 as 3456.8</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3150355" role="code" xml-lang="en-US">####.#</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154142" role="tablecontent" xml-lang="en-US">9.9 as 9.900</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3159256" role="code" xml-lang="en-US">#.000</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3147077" role="tablecontent" xml-lang="en-US">13 as 13.0 and 1234.567 as 1234.57</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3155388" role="code" xml-lang="en-US">#.0#</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3149578" role="tablecontent" xml-lang="en-US">5.75 as 5 3/4 and 6.3 as 6 3/10</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3145315" role="code" xml-lang="en-US"># ???/???</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3156152" role="tablecontent" xml-lang="en-US">.5 as 0.5</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149762" role="code" xml-lang="en-US">0.##</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3156153" role="tablecontent" xml-lang="en-US">.5 as 0.5   (with two extra spaces at the end)</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149763" role="code" xml-lang="en-US">0.???</paragraph>
    </tablecell>
  </tablerow>
</table>


<paragraph id="hd_id3149276" role="heading" level="3" xml-lang="en-US">Thousands Separator</paragraph>
<paragraph id="par_id3154380" role="paragraph" xml-lang="en-US">Depending on your language setting, you can use a comma, a period or a blank as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000 for each separator.</paragraph>

<table id="tbl_id3150244">
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154905" role="tablehead" xml-lang="en-US">Number Format</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3150822" role="tablehead" xml-lang="en-US">Format Code</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3147264" role="tablecontent" xml-lang="en-US">15000 as 15,000</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3151223" role="code" xml-lang="en-US">#,###</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154935" role="tablecontent" xml-lang="en-US">16000 as 16</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3153961" role="code" xml-lang="en-US">#,</paragraph>
    </tablecell>
  </tablerow>
</table>


<paragraph id="hd_id3154836" role="heading" level="2" xml-lang="en-US">Including Text in Number Format Codes</paragraph>

<paragraph id="hd_id3150398" role="heading" level="3" xml-lang="en-US">Text and Numbers</paragraph>
<paragraph id="par_id3154224" role="paragraph" xml-lang="en-US">To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (") in front of and behind the text, or a backslash (\) before a single character. For example, enter <emph>#.# "meters"</emph> to display "3.5 meters" or <emph>#.# \m</emph> to display "3.5 m".</paragraph>

<paragraph id="hd_id3148979" role="heading" level="3" xml-lang="en-US">Text and Text</paragraph>
<paragraph id="par_id3153338" role="paragraph" xml-lang="en-US">To include text in a number format that is applied to a cell that might contain text, enclose the text by double quotation marks (" "), and then add an at sign (@). For example, enter <emph>"Total for "@</emph> to display "Total for December".</paragraph>

<paragraph id="hd_id3154330" role="heading" level="3" xml-lang="en-US">Spaces</paragraph>
<paragraph id="par_id3156294" role="paragraph" xml-lang="en-US">To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>.</paragraph>
<paragraph id="par_id3156295" role="paragraph" xml-lang="en-US">To fill free space with a given character, use star character (*) followed by this character. For instance:</paragraph>
<paragraph id="par_id3156296" role="code" xml-lang="en-US">*\0</paragraph>
<paragraph id="par_id3156297" role="paragraph" xml-lang="en-US">will display integer value (0) preceded by as many as needed backslash characters (\) to fill column width. For accounting representation, you may left align currency symbol with a format similar to:</paragraph>
<paragraph id="par_id3156298" role="code" xml-lang="en-US">$_-* 0.--;$-* 0.--;$_-* -</paragraph>

<paragraph id="hd_id3155994" role="heading" level="2" xml-lang="en-US">Color</paragraph>
<paragraph id="par_id3156423" role="paragraph" xml-lang="en-US">To set the color of a section of a number format code, insert one of the following color names in square brackets [ ]:</paragraph>

<table id="tbl_id3157321">
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154630" role="code" xml-lang="en-US">CYAN</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3148676" role="code" xml-lang="en-US">GREEN</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154123" role="code" xml-lang="en-US">BLACK</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149167" role="code" xml-lang="en-US">BLUE</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3158407" role="code" xml-lang="en-US">MAGENTA</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149560" role="code" xml-lang="en-US">RED</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3147502" role="code" xml-lang="en-US">WHITE</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3153368" role="code" xml-lang="en-US">YELLOW</paragraph>
    </tablecell>
  </tablerow>
</table>


<paragraph id="hd_id3147435" role="heading" level="2" xml-lang="en-US">Conditions</paragraph>

<paragraph id="hd_id3148575" role="heading" level="3" xml-lang="en-US">Conditional Brackets</paragraph>
<paragraph id="par_id3155312" role="paragraph" xml-lang="en-US">You can define a number format so that it only applies when the condition that you specify is met. Conditions are enclosed by square brackets [ ].</paragraph>
<paragraph id="par_id3159179" role="paragraph" xml-lang="en-US">You can use any combination of numbers and the &lt;, &lt;=, &gt;, &gt;=, = and &lt;&gt; operators.</paragraph>
<paragraph id="par_id3159196" role="paragraph" xml-lang="en-US">For example, if you want to apply different colors to different temperature data, enter:</paragraph>
<paragraph id="par_id3150872" role="example" xml-lang="en-US">[BLUE][&lt;0]#.0 "°C";[RED][&gt;30]#.0 "°C";[BLACK]#.0 "°C"</paragraph>
<paragraph id="par_id3157870" role="paragraph" xml-lang="en-US">All temperatures below zero are blue, temperatures between 0 and 30 °C are black, and temperatures higher than 30 °C are red.</paragraph>

<paragraph id="hd_id3154833" role="heading" level="3" xml-lang="en-US">Positive and Negative Numbers</paragraph>
<paragraph id="par_id3147295" role="paragraph" xml-lang="en-US">To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:</paragraph>
<paragraph id="par_id3153727" role="example" xml-lang="en-US">"plus" 0;"minus" 0;"null" 0</paragraph>

<paragraph id="hd_id3149260" role="heading" level="2" xml-lang="en-US">Percentages, Scientific Notation and Fraction Representation</paragraph>

<paragraph id="hd_id3147218" role="heading" level="3" xml-lang="en-US">Percentages</paragraph>
<paragraph id="par_id3151168" role="paragraph" xml-lang="en-US">To display numbers as percentages, add the percent sign (%) to the number format.</paragraph>

<paragraph id="hd_id3156005" role="heading" level="3" xml-lang="en-US">Scientific Notation</paragraph>
<paragraph id="par_id3146923" role="paragraph" xml-lang="en-US">Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. <comment>Translators: use the decimal delimiter of your language (period or comma) for all number format codes in Calc.</comment>In <item type="productname">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+. If sign is omitted after E or e, it won't appear for positive value of exponent. To get engineering notation, enter 3 digits (0 or #) in the integer part.For instance: ###.##E+00</paragraph>

<paragraph id="hd_id3156006" role="heading" level="3" xml-lang="en-US">Fraction Representation</paragraph>
<paragraph id="par_id3146924" role="paragraph" xml-lang="en-US">To represent a value as a fraction, format consists of two or three parts: integer optional part, numerator and denominator. Integer and numerator are separated by a blank or any quoted text. Numerator and denominator are separated by a slash character. Each part can consist of a combination of #, ? and 0 as placeholders.</paragraph>
<paragraph id="par_id3146925" role="paragraph" xml-lang="en-US">Denominator is calculated to get the nearest value of the fraction with repsect to the number of placeholders. For example, PI value is represented as 3 16/113 with format:</paragraph>
<paragraph id="par_id3146926" role="example" xml-lang="en-US"># ?/???</paragraph>
<paragraph id="par_id3146927" role="paragraph" xml-lang="en-US">Denominator value can also be forced to the value replacing placeholders. For example, to get PI value as a multiple of 1/16th (i.e. 50/16), use format:</paragraph>
<paragraph id="par_id3146929" role="example" xml-lang="en-US">?/16</paragraph>

<paragraph id="hd_id3159080" role="heading" level="2" xml-lang="en-US">Number Format Codes of Currency Formats</paragraph>
<paragraph id="par_id3147318" role="paragraph" xml-lang="en-US">The default currency format for the cells in your spreadsheet is determined by the regional setting of your operating system. If you want, you can apply a custom currency symbol to a cell. For example, enter #,##0.00 € to display 4.50 € (Euros).<comment>Translators: use the decimal delimiter of your language (period or comma) for all number format codes in Calc.</comment></paragraph>
<paragraph id="par_id3150032" role="paragraph" xml-lang="en-US">You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, [$€-407] represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog.</paragraph>
<embed href="text/shared/01/05020300.xhp#waehrungtext"/>

<paragraph id="hd_id3157309" role="heading" level="2" xml-lang="en-US">Date and Time Formats</paragraph>

<paragraph id="hd_id3153740" role="heading" level="3" xml-lang="en-US">Date Formats</paragraph>
<paragraph id="par_id3152791" role="paragraph" xml-lang="en-US">To display days, months and years, use the following number format codes. </paragraph>
<paragraph id="par_id610980" role="warning" xml-lang="en-US">Not all format codes give meaningful results for all languages.</paragraph>

<table id="tbl_id3147426">
  <tablerow>
    <tablecell>
      <paragraph id="par_id3152376" role="tablehead" xml-lang="en-US">Format</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3159130" role="tablehead" xml-lang="en-US">Format Code</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3147380" role="tablecontent" xml-lang="en-US">Month as 3.</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3146928" role="code" xml-lang="en-US">M</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3145594" role="tablecontent" xml-lang="en-US">Month as 03.</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3153052" role="code" xml-lang="en-US">MM</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3145728" role="tablecontent" xml-lang="en-US">Month as Jan-Dec</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3151073" role="code" xml-lang="en-US">MMM</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3149909" role="tablecontent" xml-lang="en-US">Month as January-December</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3155318" role="code" xml-lang="en-US">MMMM</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3151218" role="tablecontent" xml-lang="en-US">First letter of Name of Month</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3150420" role="code" xml-lang="en-US">MMMMM</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154501" role="tablecontent" xml-lang="en-US">Day as 2</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3156181" role="code" xml-lang="en-US">D</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3146969" role="tablecontent" xml-lang="en-US">Day as 02</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3156358" role="code" xml-lang="en-US">DD</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3148495" role="tablecontent" xml-lang="en-US">Day as Sun-Sat</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3161665" role="code" xml-lang="en-US">NN or DDD</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154272" role="tablecontent" xml-lang="en-US">Day as Sunday to Saturday</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3145164" role="code" xml-lang="en-US">NNN or DDDD</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3146791" role="tablecontent" xml-lang="en-US">Day followed by comma, as in "Sunday,"</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3146081" role="code" xml-lang="en-US">NNNN</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3156275" role="tablecontent" xml-lang="en-US">Year as 00-99</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3143236" role="code" xml-lang="en-US">YY</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3148408" role="tablecontent" xml-lang="en-US">Year as 1900-2078</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3151358" role="code" xml-lang="en-US">YYYY</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3153355" role="tablecontent" xml-lang="en-US">Calendar week</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3150744" role="code" xml-lang="en-US">WW</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154302" role="tablecontent" xml-lang="en-US">Quarterly as Q1 to Q4</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3159266" role="code" xml-lang="en-US">Q</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3147583" role="tablecontent" xml-lang="en-US">Quarterly as 1st quarter to 4th quarter</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3146918" role="code" xml-lang="en-US">QQ</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3147534" role="tablecontent" xml-lang="en-US">Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3151249" role="code" xml-lang="en-US">G</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3163806" role="tablecontent" xml-lang="en-US">Era, abbreviation</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3155962" role="code" xml-lang="en-US">GG</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3151187" role="tablecontent" xml-lang="en-US">Era, full name</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149568" role="code" xml-lang="en-US">GGG</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3147344" role="tablecontent" xml-lang="en-US">Number of the year within an era, without a leading zero for single-digit years</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3147255" role="code" xml-lang="en-US">E</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3148487" role="tablecontent" xml-lang="en-US">Number of the year within an era, with a leading zero for single-digit years</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3150298" role="code" xml-lang="en-US">EE or R</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3152861" role="tablecontent" xml-lang="en-US">Era, full name and year</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149926" role="code" xml-lang="en-US">RR or GGGEE</paragraph>
    </tablecell>
  </tablerow>
</table>

<paragraph id="par_id1002200811423518" role="paragraph" xml-lang="en-US">The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you will need to know the formatting codes used in that other locale. </paragraph>
<paragraph id="par_id1002200811423556" role="paragraph" xml-lang="en-US">For example, if your software is set to an English locale, and you want to format a year with four digits, you enter YYYY as a formatting code. When you switch to a German locale, you must use JJJJ instead. The following table lists only the localized differences.</paragraph>

<table id="tbl_id1002200811465915">
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811563044" role="tablehead" xml-lang="en-US">Locale</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563137" role="tablehead" xml-lang="en-US">Year</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563164" role="tablehead" xml-lang="en-US">Month</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563128" role="tablehead" xml-lang="en-US">Day</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563135" role="tablehead" xml-lang="en-US">Hour</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563289" role="tablehead" xml-lang="en-US">Day Of Week</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id100220081156322" role="tablehead" xml-lang="en-US">Era</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811563233" role="tablecontent" xml-lang="en-US">English - en</paragraph>
      <paragraph id="par_id1002200811563243" role="tablecontent" xml-lang="en-US">and all not listed locales</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563352" role="tablecontent" xml-lang="en-US">Y</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563396" role="tablecontent" xml-lang="en-US">M</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563385" role="tablecontent" xml-lang="en-US">D</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563472" role="tablecontent" xml-lang="en-US">H</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563430" role="tablecontent" xml-lang="en-US">N</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563488" role="tablecontent" xml-lang="en-US">G</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811563484" role="tablecontent" xml-lang="en-US">German - de</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563518" role="tablecontent" xml-lang="en-US">J</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563735" role="tablecontent" xml-lang="en-US">T</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811563823" role="tablecontent" xml-lang="en-US">Netherlands - nl</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563852" role="tablecontent" xml-lang="en-US">J</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563827" role="tablecontent" xml-lang="en-US">U</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811563916" role="tablecontent" xml-lang="en-US">French - fr</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563970" role="tablecontent" xml-lang="en-US">A</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811563980" role="tablecontent" xml-lang="en-US">J</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564065" role="tablecontent" xml-lang="en-US">O</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id100220081156407" role="tablecontent" xml-lang="en-US">Italian - it</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id100220081156403" role="tablecontent" xml-lang="en-US">A</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564042" role="tablecontent" xml-lang="en-US">G</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id100220081156412" role="tablecontent" xml-lang="en-US">O</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564119" role="tablecontent" xml-lang="en-US">X</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811564197" role="tablecontent" xml-lang="en-US">Portuguese - pt</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564272" role="tablecontent" xml-lang="en-US">A</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id100220081156423" role="tablecontent" xml-lang="en-US">O</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811564218" role="tablecontent" xml-lang="en-US">Spanish - es</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564390" role="tablecontent" xml-lang="en-US">A</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564319" role="tablecontent" xml-lang="en-US">O</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id100220081156433" role="tablecontent" xml-lang="en-US">Danish - da</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id100220081156444" role="tablecontent" xml-lang="en-US">T</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811564448" role="tablecontent" xml-lang="en-US">Norwegian - no, nb, nn</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564549" role="tablecontent" xml-lang="en-US">T</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811564565" role="tablecontent" xml-lang="en-US">Swedish - sv</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564556" role="tablecontent" xml-lang="en-US">T</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id1002200811564637" role="tablecontent" xml-lang="en-US">Finnish - fi</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564627" role="tablecontent" xml-lang="en-US">V</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564643" role="tablecontent" xml-lang="en-US">K</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564763" role="tablecontent" xml-lang="en-US">P</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1002200811564715" role="tablecontent" xml-lang="en-US">T</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>


<paragraph id="hd_id3149929" role="heading" level="3" xml-lang="en-US">Entering Dates</paragraph>
<paragraph id="par_id3148397" role="paragraph" xml-lang="en-US">To enter a date in a cell, use the Gregorian calendar format. For example, in an English locale, enter 1/2/2002 for Jan 2, 2002.</paragraph>
<paragraph id="par_id3153274" role="paragraph" xml-lang="en-US">All date formats are dependent on the locale that is set in <switchinline select="sys"><caseinline select="MAC"><emph>%PRODUCTNAME - Preferences</emph> 
</caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language settings - Languages</emph>. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in <item type="productname">%PRODUCTNAME</item> uses the Gregorian Calendar.</paragraph>
<paragraph id="par_id3153795" role="paragraph" xml-lang="en-US">To specify a calendar format that is independent of the locale, add a modifier in front of the date format. For example, to display a date using the Jewish calendar format in a non-Hebrew locale, enter: [~jewish]DD/MM/YYYY.</paragraph>

<table id="tbl_id3145133">
  <tablerow>
    <tablecell>
      <paragraph id="par_id3145764" role="tablehead" xml-lang="en-US">Modifier</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3152967" role="tablehead" xml-lang="en-US">Calendar</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3148390" role="code" xml-lang="en-US">[~buddhist]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3153781" role="tablecontent" xml-lang="en-US">Thai Buddhist Calendar</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3157969" role="code" xml-lang="en-US">[~gengou]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3154656" role="tablecontent" xml-lang="en-US">Japanese Gengou Calendar</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3150086" role="code" xml-lang="en-US">[~gregorian]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3146070" role="tablecontent" xml-lang="en-US">Gregorian Calendar</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3146808" role="code" xml-lang="en-US">[~hanja] or [~hanja_yoil]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149207" role="tablecontent" xml-lang="en-US">Korean Calendar</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3150304" role="code" xml-lang="en-US">[~hijri]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149238" role="tablecontent" xml-lang="en-US">Arabic Islamic Calendar, currently supported for the following locales: ar_EG, ar_LB, ar_SA, and ar_TN</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154903" role="code" xml-lang="en-US">[~jewish]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3151288" role="tablecontent" xml-lang="en-US">Jewish Calendar</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3166442" role="code" xml-lang="en-US">[~ROC]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3145587" role="tablecontent" xml-lang="en-US">Republic Of China Calendar</paragraph>
    </tablecell>
  </tablerow>
</table>

<paragraph id="par_id3152419" role="paragraph" xml-lang="en-US"><switchinline select="appl"><caseinline select="CALC">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: 
</caseinline></switchinline></paragraph>
<switch select="appl">
<case select="CALC">

<table id="tbl_id3150490">
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154194" role="tablehead" xml-lang="en-US">Initial Format</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149787" role="tablehead" xml-lang="en-US">Result Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3152993" role="tablecontent" xml-lang="en-US">Date + Date</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3150292" role="tablecontent" xml-lang="en-US">Number (Days)</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3150460" role="tablecontent" xml-lang="en-US">Date + Number</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3154371" role="tablecontent" xml-lang="en-US">Date</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3145082" role="tablecontent" xml-lang="en-US">Date + Time</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3156290" role="tablecontent" xml-lang="en-US">Date&amp;Time</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3152456" role="tablecontent" xml-lang="en-US">Date + Date&amp;Time</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3156169" role="tablecontent" xml-lang="en-US">Number</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154527" role="tablecontent" xml-lang="en-US">Time + Time</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3159625" role="tablecontent" xml-lang="en-US">Time</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3146802" role="tablecontent" xml-lang="en-US">Time + Number</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3146770" role="tablecontent" xml-lang="en-US">Time</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3155500" role="tablecontent" xml-lang="en-US">Time + Date&amp;Time</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3155128" role="tablecontent" xml-lang="en-US">Date&amp;Time</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3152904" role="tablecontent" xml-lang="en-US">Date&amp;Time + Date&amp;Time</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3159143" role="tablecontent" xml-lang="en-US">Time</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3148909" role="tablecontent" xml-lang="en-US">Date&amp;Time + Number</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3154806" role="tablecontent" xml-lang="en-US">Date&amp;Time</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3151269" role="tablecontent" xml-lang="en-US">Number + Number</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3154951" role="tablecontent" xml-lang="en-US">Number</paragraph>
    </tablecell>
  </tablerow>
</table>

</case>
</switch>
<paragraph id="par_id3149174" role="paragraph" xml-lang="en-US"><switchinline select="appl"><caseinline select="CALC">The Date&amp;Time format displays the date and time that an entry was made to a cell with this format. 
</caseinline></switchinline></paragraph>
<switch select="appl">
<case select="CALC">
<embed href="text/shared/optionen/01010600.xhp#jahreszahlen"/>
<paragraph id="par_id3143225" role="note" xml-lang="en-US">By default in <item type="productname">%PRODUCTNAME</item>, a date with the value "0" corresponds to Dec 30, 1899.</paragraph>
</case>
</switch>

<paragraph id="hd_id3155870" role="heading" level="3" xml-lang="en-US">Time Formats</paragraph>
<paragraph id="par_id3150108" role="paragraph" xml-lang="en-US">To display hours, minutes and seconds use the following number format codes.</paragraph>

<table id="tbl_id3154830">
  <tablerow>
    <tablecell>
      <paragraph id="par_id3149158" role="tablehead" xml-lang="en-US">Format</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3154341" role="tablehead" xml-lang="en-US">Format Code</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154557" role="tablecontent" xml-lang="en-US">Hours as 0-23</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3156348" role="code" xml-lang="en-US">H</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3143218" role="tablecontent" xml-lang="en-US">Hours as 00-23</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3155266" role="code" xml-lang="en-US">HH</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3143219" role="tablecontent" xml-lang="en-US">Hours as 00 up to more than 23</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3155267" role="code" xml-lang="en-US">[HH]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3150139" role="tablecontent" xml-lang="en-US">Minutes as 0-59</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3149588" role="code" xml-lang="en-US">M</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3150531" role="tablecontent" xml-lang="en-US">Minutes as 00-59</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3147409" role="code" xml-lang="en-US">MM</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3150532" role="tablecontent" xml-lang="en-US">Minutes as 00 up to more than 59</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3147410" role="code" xml-lang="en-US">[MM]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3154854" role="tablecontent" xml-lang="en-US">Seconds as 0-59</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3156173" role="code" xml-lang="en-US">S</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3149506" role="tablecontent" xml-lang="en-US">Seconds as 00-59</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3157981" role="code" xml-lang="en-US">SS</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id3149507" role="tablecontent" xml-lang="en-US">Seconds as 00 up to more than 59</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id3157982" role="code" xml-lang="en-US">[SS]</paragraph>
    </tablecell>
  </tablerow>
</table>

<paragraph id="par_id3156039" role="note" xml-lang="en-US">To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter <emph>HH:MM:SS.00</emph> to display the time as "01:02:03.45".<comment>Translators: use the decimal delimiter of your language (period or comma) for all number format codes in Calc.</comment></paragraph>
<paragraph id="par_id3148650" role="paragraph" xml-lang="en-US">Minute time formats M and MM must be used in combination with hour or second time formats to avoid confusion with month date format.</paragraph>
<paragraph id="par_id3148649" role="paragraph" xml-lang="en-US">If a time is entered in the form 02:03.45 or 01:02:03.45 or 25:01:02, the following formats are assigned if no other time format has been specified: MM:SS.00 or [HH]:MM:SS.00 or [HH]:MM:SS<comment>Translators: use the decimal delimiter of your language (period or comma) for all number format codes in Calc.</comment></paragraph>

<paragraph id="hd_id3158404" role="heading" level="2" xml-lang="en-US">Displaying Numbers Using Native Characters</paragraph>
<paragraph id="par_id3149998" role="paragraph" xml-lang="en-US">To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes.</paragraph>
<paragraph id="par_id3154600" role="paragraph" xml-lang="en-US">The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:</paragraph>
<paragraph id="par_id3152546" role="example" xml-lang="en-US">[NatNum1][$-411]0</paragraph>
<paragraph id="par_id3147269" role="paragraph" xml-lang="en-US">In the following list, the Microsoft Excel [DBNumX] modifier that corresponds to <item type="productname">%PRODUCTNAME</item> [NatNum] modifier is shown. If you want, you can use a [DBNumX] modifier instead of [NatNum] modifier for your locale. Whenever possible, <item type="productname">%PRODUCTNAME</item> internally maps [DBNumX] modifiers to [NatNumN] modifiers.</paragraph>
<paragraph id="par_idN11234" role="paragraph" xml-lang="en-US">Displaying dates using [NatNum] modifiers can have a different effect than displaying other types of numbers. Such effects are indicated by 'CAL: '. For example, 'CAL: 1/4/4' indicates that the year is displayed using the [NatNum1] modifier, while the day and month are displayed using the [NatNum4] modifier. If 'CAL' is not specified, the date formats for that particular modifier are not supported.</paragraph>

<paragraph id="hd_id150820161449146058" role="heading" level="3" xml-lang="en-US">[NatNum0]</paragraph>
<paragraph id="par_id1508201614491484" role="paragraph" xml-lang="en-US">Try to convert any native number string to ASCII Arabic digits. If already ASCII, it remains ASCII.</paragraph>

<paragraph id="par_id13082016175325372" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum1]</paragraph>

<table id="Table1">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753258543" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016175325613" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753255045" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753252157" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753258910" role="tablecontent" xml-lang="en-US">Chinese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753252802" role="tablecontent" xml-lang="en-US">Chinese lower case characters</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753293296" role="tablecontent" localize="false" xml-lang="en-US">CAL: 1/7/7 [DBNum1]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753293042" role="tablecontent" xml-lang="en-US">Japanese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753297854" role="tablecontent" xml-lang="en-US">short Kanji characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753295852" role="tablecontent" localize="false" xml-lang="en-US">[DBNum1]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753293652" role="tablecontent" localize="false" xml-lang="en-US">CAL: 1/4/4 [DBNum1]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id13082016175330954" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753303188" role="tablecontent" xml-lang="en-US">Korean lower case characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753305557" role="tablecontent" localize="false" xml-lang="en-US">[DBNum1]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753303003" role="tablecontent" localize="false" xml-lang="en-US">CAL: 1/7/7 [DBNum1]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753301290" role="tablecontent" xml-lang="en-US">Thai</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753301107" role="tablecontent" xml-lang="en-US">Thai characters</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753301830" role="tablecontent" xml-lang="en-US">Arabic</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753306722" role="tablecontent" xml-lang="en-US">Indic characters</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753309518" role="tablecontent" xml-lang="en-US">Hindi</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753301434" role="tablecontent" xml-lang="en-US">Hindi characters</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753317270" role="tablecontent" xml-lang="en-US">Hebrew</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753311497" role="tablecontent" xml-lang="en-US">Hebrew letters</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id130820161753318343" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum2]</paragraph>

<table id="Tabela1">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820162101136589" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101139206" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016210113663" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id1308201621011376" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753314558" role="tablecontent" xml-lang="en-US">Chinese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753311211" role="tablecontent" xml-lang="en-US">Chinese upper case characters</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753316545" role="tablecontent" localize="false" xml-lang="en-US">CAL 2/8/8 [DBNum2]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753311010" role="tablecontent" xml-lang="en-US">Japanese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753311215" role="tablecontent" xml-lang="en-US">traditional Kanji characters</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753315955" role="tablecontent" localize="false" xml-lang="en-US">CAL 2/5/5 [DBNum2]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753315141" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753312451" role="tablecontent" xml-lang="en-US">Korean upper case characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753329118" role="tablecontent" localize="false" xml-lang="en-US">[DBNum2]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753323580" role="tablecontent" localize="false" xml-lang="en-US">CAL 2/8/8 [DBNum2]</paragraph>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id130820161753325177" role="heading" level="3" xml-lang="en-US">[NatNum3]</paragraph>

<table id="Tabela2">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820162101138131" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101133645" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101145252" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101147246" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753323484" role="tablecontent" xml-lang="en-US">Chinese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753325719" role="tablecontent" xml-lang="en-US">fullwidth Arabic digits</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753326476" role="tablecontent" localize="false" xml-lang="en-US">CAL: 3/3/3 [DBNum3]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753327940" role="tablecontent" xml-lang="en-US">Japanese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753326195" role="tablecontent" xml-lang="en-US">fullwidth Arabic digits</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753323892" role="tablecontent" localize="false" xml-lang="en-US">CAL: 3/3/3 [DBNum3]</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753321617" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753332046" role="tablecontent" xml-lang="en-US">fullwidth Arabic digits</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753331134" role="tablecontent" localize="false" xml-lang="en-US">[DBNum3]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016175333654" role="tablecontent" localize="false" xml-lang="en-US">CAL: 3/3/3 [DBNum3]</paragraph>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id130820161753334037" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum4]</paragraph>

<table id="Tabela3">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820162101143647" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101148502" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016210114257" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101143643" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753333488" role="tablecontent" xml-lang="en-US">Chinese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753332509" role="tablecontent" xml-lang="en-US">lower case text</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753332071" role="tablecontent" localize="false" xml-lang="en-US">[DBNum1]</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753338548" role="tablecontent" xml-lang="en-US">Japanese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753332235" role="tablecontent" xml-lang="en-US">modern long Kanji text</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753344875" role="tablecontent" localize="false" xml-lang="en-US">[DBNum2]</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753349172" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753349817" role="tablecontent" xml-lang="en-US">formal lower case text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id130820161753343499" role="heading" level="3" xml-lang="en-US">[NatNum5]</paragraph>

<table id="Tabela4">
  <tablerow>
    <tablecell>
      <paragraph id="par_id13082016210114571" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101141303" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101143740" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016210114350" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753349058" role="tablecontent" xml-lang="en-US">Chinese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753342623" role="tablecontent" xml-lang="en-US">Chinese upper case text</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753348999" role="tablecontent" localize="false" xml-lang="en-US">[DBNum2]</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753347330" role="tablecontent" xml-lang="en-US">Japanese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753349141" role="tablecontent" xml-lang="en-US">traditional long Kanji text</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016175334746" role="tablecontent" localize="false" xml-lang="en-US">[DBNum3]</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753358520" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753353109" role="tablecontent" xml-lang="en-US">formal upper case text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id130820161753358714" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum6]</paragraph>

<table id="Tabela5">
  <tablerow>
    <tablecell>
      <paragraph id="par_id13082016210115753" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016210115453" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101151963" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101159516" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753355388" role="tablecontent" xml-lang="en-US">Chinese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753359335" role="tablecontent" xml-lang="en-US">fullwidth text</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753351083" role="tablecontent" localize="false" xml-lang="en-US">[DBNum3]</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753356656" role="tablecontent" xml-lang="en-US">Japanese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753358398" role="tablecontent" xml-lang="en-US">fullwidth text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753353657" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753365665" role="tablecontent" xml-lang="en-US">fullwidth text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id130820161753361819" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum7]</paragraph>

<table id="Tabela6">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820162101152108" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101154544" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101159650" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101159955" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753365289" role="tablecontent" xml-lang="en-US">Japanese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753368507" role="tablecontent" xml-lang="en-US">modern short Kanji text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id13082016175336526" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016175336224" role="tablecontent" xml-lang="en-US">informal lower case text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id150820161449152401" role="tablecontent" xml-lang="en-US">Chinese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id150820161449154907" role="tablecontent" xml-lang="en-US">short lower case text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id13082016175336899" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum8]</paragraph>

<table id="Tabela7">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820162101157872" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101157247" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101164630" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101163573" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753363281" role="tablecontent" xml-lang="en-US">Japanese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753366963" role="tablecontent" xml-lang="en-US">traditional short Kanji text</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753361880" role="tablecontent" localize="false" xml-lang="en-US">[DBNum4]</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753376004" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753375830" role="tablecontent" xml-lang="en-US">informal upper case text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id150820161449158539" role="tablecontent" xml-lang="en-US">Chinese</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id150820161449151367" role="tablecontent" xml-lang="en-US">short upper case text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id130820161753378934" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum9]</paragraph>

<table id="Tabela8">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820162101165923" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101164979" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101168382" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101167850" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753378980" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753375541" role="tablecontent" xml-lang="en-US">Hangul characters</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id130820161753379245" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum10]</paragraph>

<table id="Tabela9">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820162101167963" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101164045" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101161811" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101167921" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820161753374087" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753375766" role="tablecontent" xml-lang="en-US">formal Hangul text</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753372854" role="tablecontent" localize="false" xml-lang="en-US">[DBNum4]</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820161753372338" role="tablecontent" localize="false" xml-lang="en-US">CAL 9/11/11 [DBNum4]</paragraph>
    </tablecell>
  </tablerow>
</table>


<paragraph id="par_id13082016175338983" role="heading" level="3" localize="false" xml-lang="en-US">[NatNum11]</paragraph>

<table id="Tabela10">
  <tablerow>
    <tablecell>
      <paragraph id="par_id130820162101165905" role="tablehead" xml-lang="en-US">Transliterations</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101173564" role="tablehead" xml-lang="en-US">Native Number Characters</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101175374" role="tablehead" localize="false" xml-lang="en-US">DBNumX</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id130820162101172644" role="tablehead" xml-lang="en-US">Date Format</paragraph>
    </tablecell>
  </tablerow>
  <tablerow>
    <tablecell>
      <paragraph id="par_id13082016175338577" role="tablecontent" xml-lang="en-US">Korean</paragraph>
    </tablecell>
    <tablecell>
      <paragraph id="par_id13082016175338684" role="tablecontent" xml-lang="en-US">informal Hangul text</paragraph>
    </tablecell>
    <tablecell>
    </tablecell>
    <tablecell>
    </tablecell>
  </tablerow>
</table>

</body>

</helpdocument>