-
Notifications
You must be signed in to change notification settings - Fork 3
/
tableau.twb
5185 lines (5184 loc) · 244 KB
/
tableau.twb
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
<?xml version='1.0' encoding='utf-8' ?>
<!-- build 20232.23.0805.0415 -->
<workbook original-version='18.1' source-build='2023.2.1 (20232.23.0805.0415)' source-platform='win' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<_.fcp.AccessibleZoneTabOrder.true...AccessibleZoneTabOrder />
<_.fcp.AnimationOnByDefault.true...AnimationOnByDefault />
<AutoCreateAndUpdateDSDPhoneLayouts />
<IntuitiveSorting />
<IntuitiveSorting_SP2 />
<_.fcp.MarkAnimation.true...MarkAnimation />
<_.fcp.ObjectModelEncapsulateLegacy.true...ObjectModelEncapsulateLegacy />
<_.fcp.ObjectModelTableType.true...ObjectModelTableType />
<_.fcp.SchemaViewerObjectModel.true...SchemaViewerObjectModel />
<SetMembershipControl />
<SheetIdentifierTracking />
<WindowsPersistSimpleIdentifiers />
<ZoneBackgroundTransparency />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<_.fcp.AnimationOnByDefault.false...style>
<_.fcp.AnimationOnByDefault.false..._.fcp.MarkAnimation.true...style-rule element='animation'>
<_.fcp.AnimationOnByDefault.false...format attr='animation-on' value='ao-on' />
</_.fcp.AnimationOnByDefault.false..._.fcp.MarkAnimation.true...style-rule>
</_.fcp.AnimationOnByDefault.false...style>
<datasources>
<datasource caption='Orders (LittleLemon_data)' inline='true' name='federated.1bxxbm91hcm5bz10kivu11raeltc' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='LittleLemon_data' name='excel-direct.0hz2pjo03gh9ji0zomlfr1rtxirr'>
<connection class='excel-direct' cleaning='no' compat='no' dataRefreshTime='' filename='C:/Users/Leandro Cardozo/Documents/GitHub/meta-db-engineer-capstone/LittleLemon_data.xlsx' interpretationMode='0' password='' server='' validate='no' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation connection='excel-direct.0hz2pjo03gh9ji0zomlfr1rtxirr' name='Orders' table='[Orders$]' type='table'>
<columns gridOrigin='A1:U10001:no:A1:U10001:0' header='yes' outcome='2'>
<column datatype='integer' name='Row Number' ordinal='0' />
<column datatype='string' name='Order ID' ordinal='1' />
<column datatype='date' name='Order Date' ordinal='2' />
<column datatype='date' name='Delivery Date' ordinal='3' />
<column datatype='string' name='Customer ID' ordinal='4' />
<column datatype='string' name='Customer Name' ordinal='5' />
<column datatype='string' name='City' ordinal='6' />
<column datatype='string' name='Country' ordinal='7' />
<column datatype='string' name='Postal Code' ordinal='8' />
<column datatype='string' name='Country Code' ordinal='9' />
<column datatype='real' name='Cost' ordinal='10' />
<column datatype='real' name='Sales' ordinal='11' />
<column datatype='integer' name='Quantity' ordinal='12' />
<column datatype='real' name='Discount' ordinal='13' />
<column datatype='real' name='Delivery Cost' ordinal='14' />
<column datatype='string' name='Course Name' ordinal='15' />
<column datatype='string' name='Cuisine Name' ordinal='16' />
<column datatype='string' name='Starter Name' ordinal='17' />
<column datatype='string' name='Desert Name' ordinal='18' />
<column datatype='string' name='Drink' ordinal='19' />
<column datatype='string' name='Sides' ordinal='20' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.false...relation>
<_.fcp.ObjectModelEncapsulateLegacy.true...relation connection='excel-direct.0hz2pjo03gh9ji0zomlfr1rtxirr' name='Orders' table='[Orders$]' type='table'>
<columns gridOrigin='A1:U10001:no:A1:U10001:0' header='yes' outcome='2'>
<column datatype='integer' name='Row Number' ordinal='0' />
<column datatype='string' name='Order ID' ordinal='1' />
<column datatype='date' name='Order Date' ordinal='2' />
<column datatype='date' name='Delivery Date' ordinal='3' />
<column datatype='string' name='Customer ID' ordinal='4' />
<column datatype='string' name='Customer Name' ordinal='5' />
<column datatype='string' name='City' ordinal='6' />
<column datatype='string' name='Country' ordinal='7' />
<column datatype='string' name='Postal Code' ordinal='8' />
<column datatype='string' name='Country Code' ordinal='9' />
<column datatype='real' name='Cost' ordinal='10' />
<column datatype='real' name='Sales' ordinal='11' />
<column datatype='integer' name='Quantity' ordinal='12' />
<column datatype='real' name='Discount' ordinal='13' />
<column datatype='real' name='Delivery Cost' ordinal='14' />
<column datatype='string' name='Course Name' ordinal='15' />
<column datatype='string' name='Cuisine Name' ordinal='16' />
<column datatype='string' name='Starter Name' ordinal='17' />
<column datatype='string' name='Desert Name' ordinal='18' />
<column datatype='string' name='Drink' ordinal='19' />
<column datatype='string' name='Sides' ordinal='20' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.true...relation>
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[Orders]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='context'>0</attribute>
<attribute datatype='string' name='gridOrigin'>"A1:U10001:no:A1:U10001:0"</attribute>
<attribute datatype='boolean' name='header'>true</attribute>
<attribute datatype='integer' name='outcome'>2</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Row Number</remote-name>
<remote-type>20</remote-type>
<local-name>[Row Number]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Row Number</remote-alias>
<ordinal>0</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Order ID</remote-name>
<remote-type>130</remote-type>
<local-name>[Order ID]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Order ID</remote-alias>
<ordinal>1</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Order Date</remote-name>
<remote-type>7</remote-type>
<local-name>[Order Date]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Order Date</remote-alias>
<ordinal>2</ordinal>
<local-type>date</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"DATE"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Delivery Date</remote-name>
<remote-type>7</remote-type>
<local-name>[Delivery Date]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Delivery Date</remote-alias>
<ordinal>3</ordinal>
<local-type>date</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"DATE"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Customer ID</remote-name>
<remote-type>130</remote-type>
<local-name>[Customer ID]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Customer ID</remote-alias>
<ordinal>4</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Customer Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Customer Name]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Customer Name</remote-alias>
<ordinal>5</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>City</remote-name>
<remote-type>130</remote-type>
<local-name>[City]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>City</remote-alias>
<ordinal>6</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Country</remote-name>
<remote-type>130</remote-type>
<local-name>[Country]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Country</remote-alias>
<ordinal>7</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Postal Code</remote-name>
<remote-type>130</remote-type>
<local-name>[Postal Code]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Postal Code</remote-alias>
<ordinal>8</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Country Code</remote-name>
<remote-type>130</remote-type>
<local-name>[Country Code]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Country Code</remote-alias>
<ordinal>9</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Cost</remote-name>
<remote-type>5</remote-type>
<local-name>[Cost]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Cost</remote-alias>
<ordinal>10</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Sales</remote-name>
<remote-type>5</remote-type>
<local-name>[Sales]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Sales</remote-alias>
<ordinal>11</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Quantity</remote-name>
<remote-type>20</remote-type>
<local-name>[Quantity]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Quantity</remote-alias>
<ordinal>12</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Discount</remote-name>
<remote-type>5</remote-type>
<local-name>[Discount]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Discount</remote-alias>
<ordinal>13</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Delivery Cost</remote-name>
<remote-type>5</remote-type>
<local-name>[Delivery Cost]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Delivery Cost</remote-alias>
<ordinal>14</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Course Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Course Name]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Course Name</remote-alias>
<ordinal>15</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Cuisine Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Cuisine Name]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Cuisine Name</remote-alias>
<ordinal>16</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Starter Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Starter Name]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Starter Name</remote-alias>
<ordinal>17</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Desert Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Desert Name]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Desert Name</remote-alias>
<ordinal>18</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Drink</remote-name>
<remote-type>130</remote-type>
<local-name>[Drink]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Drink</remote-alias>
<ordinal>19</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Sides</remote-name>
<remote-type>130</remote-type>
<local-name>[Sides]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Sides</remote-alias>
<ordinal>20</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Orders_E8F29C4E92474AE2B89D239D464FBC91]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column caption='Profit' datatype='real' name='[Calculation_696369155281416193]' role='measure' type='quantitative'>
<calculation class='tableau' formula='[Sales]-[Cost]' />
</column>
<column datatype='string' name='[City]' role='dimension' semantic-role='[City].[Name]' type='nominal' />
<column datatype='string' name='[Country Code]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column caption='FirstName' datatype='string' name='[Customer Name - División 1]' role='dimension' type='nominal' user:SplitFieldIndex='1' user:SplitFieldOrigin='[federated.1bxxbm91hcm5bz10kivu11raeltc].[Customer Name]'>
<calculation class='tableau' formula='TRIM( SPLIT( [Customer Name], " ", 1 ) )' />
</column>
<column caption='LastName' datatype='string' name='[Customer Name - División 2]' role='dimension' type='nominal' user:SplitFieldIndex='2' user:SplitFieldOrigin='[federated.1bxxbm91hcm5bz10kivu11raeltc].[Customer Name]'>
<calculation class='tableau' formula='TRIM( SPLIT( [Customer Name], " ", 2 ) )' />
</column>
<column datatype='string' name='[Customer Name]' role='dimension' type='nominal' />
<column datatype='date' name='[Order Date]' role='dimension' type='ordinal' />
<column datatype='string' name='[Postal Code]' role='dimension' semantic-role='[ZipCode].[Name]' type='nominal' />
<column datatype='integer' name='[Row Number]' role='dimension' type='ordinal' />
<_.fcp.ObjectModelTableType.true...column caption='Orders' datatype='table' name='[__tableau_internal_object_id__].[Orders_E8F29C4E92474AE2B89D239D464FBC91]' role='measure' type='quantitative' />
<column-instance column='[Customer Name]' derivation='None' name='[none:Customer Name:nk]' pivot='key' type='nominal' />
<column-instance column='[Order Date]' derivation='Year' name='[yr:Order Date:ok]' pivot='key' type='ordinal' />
<group caption='Acción (Country,Customer Name)' hidden='true' name='[Action (Country,Customer Name)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Country]' />
<groupfilter function='level-members' level='[Customer Name]' />
</groupfilter>
</group>
<layout _.fcp.SchemaViewerObjectModel.false...dim-percentage='0.5' _.fcp.SchemaViewerObjectModel.false...measure-percentage='0.4' dim-ordering='alphabetic' measure-ordering='alphabetic' show-structure='true' />
<style>
<style-rule element='mark'>
<encoding attr='color' field='[yr:Order Date:ok]' type='palette'>
<map to='#4e79a7'>
<bucket>2019</bucket>
</map>
<map to='#59a14f'>
<bucket>2023</bucket>
</map>
<map to='#76b7b2'>
<bucket>2022</bucket>
</map>
<map to='#e15759'>
<bucket>2021</bucket>
</map>
<map to='#f28e2b'>
<bucket>2020</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:Customer Name:nk]' type='palette'>
<map to='#499894'>
<bucket>"Adlai Arnull"</bucket>
</map>
<map to='#499894'>
<bucket>"Alexia Candelin"</bucket>
</map>
<map to='#499894'>
<bucket>"Amandi McConaghy"</bucket>
</map>
<map to='#499894'>
<bucket>"Ansell Lethlay"</bucket>
</map>
<map to='#499894'>
<bucket>"Aube Francescuzzi"</bucket>
</map>
<map to='#499894'>
<bucket>"Beret Behneke"</bucket>
</map>
<map to='#499894'>
<bucket>"Bradford Rafe"</bucket>
</map>
<map to='#499894'>
<bucket>"Carena Nucator"</bucket>
</map>
<map to='#499894'>
<bucket>"Celle Oller"</bucket>
</map>
<map to='#499894'>
<bucket>"Chrotoem Harniman"</bucket>
</map>
<map to='#499894'>
<bucket>"Cornelius Harkess"</bucket>
</map>
<map to='#499894'>
<bucket>"Davita Baynham"</bucket>
</map>
<map to='#499894'>
<bucket>"Devland Pagett"</bucket>
</map>
<map to='#499894'>
<bucket>"Doreen Sothcott"</bucket>
</map>
<map to='#499894'>
<bucket>"Elisabetta Dubery"</bucket>
</map>
<map to='#499894'>
<bucket>"Enrika Marty"</bucket>
</map>
<map to='#499894'>
<bucket>"Evvie Crossby"</bucket>
</map>
<map to='#499894'>
<bucket>"Fielding Struys"</bucket>
</map>
<map to='#499894'>
<bucket>"Gale Reeves"</bucket>
</map>
<map to='#499894'>
<bucket>"Gigi Trunchion"</bucket>
</map>
<map to='#499894'>
<bucket>"Grenville Hyne"</bucket>
</map>
<map to='#499894'>
<bucket>"Hanni Dunbleton"</bucket>
</map>
<map to='#499894'>
<bucket>"Hermione Crix"</bucket>
</map>
<map to='#499894'>
<bucket>"Inez Flade"</bucket>
</map>
<map to='#499894'>
<bucket>"Jaynell Alty"</bucket>
</map>
<map to='#499894'>
<bucket>"Jilly Bursnoll"</bucket>
</map>
<map to='#499894'>
<bucket>"Julius Scutchin"</bucket>
</map>
<map to='#499894'>
<bucket>"Katrina Aylett"</bucket>
</map>
<map to='#499894'>
<bucket>"Kipp Coulling"</bucket>
</map>
<map to='#499894'>
<bucket>"Laurianne Diehn"</bucket>
</map>
<map to='#499894'>
<bucket>"Lilian Dislee"</bucket>
</map>
<map to='#499894'>
<bucket>"Lulu Hastin"</bucket>
</map>
<map to='#499894'>
<bucket>"Manolo Russ"</bucket>
</map>
<map to='#499894'>
<bucket>"Marsiella Duprey"</bucket>
</map>
<map to='#499894'>
<bucket>"Melisandra Mungham"</bucket>
</map>
<map to='#499894'>
<bucket>"Mitzi De Mico"</bucket>
</map>
<map to='#499894'>
<bucket>"Nels Hargreaves"</bucket>
</map>
<map to='#499894'>
<bucket>"Onfroi Kornyakov"</bucket>
</map>
<map to='#499894'>
<bucket>"Persis Chipchase"</bucket>
</map>
<map to='#499894'>
<bucket>"Ram Sinclaire"</bucket>
</map>
<map to='#499894'>
<bucket>"Rene Clements"</bucket>
</map>
<map to='#499894'>
<bucket>"Rorie Colicot"</bucket>
</map>
<map to='#499894'>
<bucket>"Sarah Plaschke"</bucket>
</map>
<map to='#499894'>
<bucket>"Shell Oldis"</bucket>
</map>
<map to='#499894'>
<bucket>"Stan Clethro"</bucket>
</map>
<map to='#499894'>
<bucket>"Taffy Shipcott"</bucket>
</map>
<map to='#499894'>
<bucket>"Tiertza Doogan"</bucket>
</map>
<map to='#499894'>
<bucket>"Vania Gilding"</bucket>
</map>
<map to='#499894'>
<bucket>"Webster Lomax"</bucket>
</map>
<map to='#499894'>
<bucket>"Yorgo Muzzillo"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Aaron Cromley"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Alberik Fancy"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Allyce Mantione"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Anna-diane Kopps"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Armstrong Collerd"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Basil Slarke"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Blancha Trippack"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Burke Jupp"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Caterina Sweetnam"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Chris Gummer"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Colver McChesney"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Dalila Baldree"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Den Coppock."</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Dodi Lenglet"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Dyanne Labbet"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Emelda Furbank"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Estele Schultze"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Fayre Crocket"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Fredelia Snedden"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"George Woodeson"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Gordan Kneeshaw"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Hale Danilchik"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Heinrick Setchfield"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Hurlee Dhennin"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Jacynth Clubb"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Jessalin Dimitriades"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Joycelin Loghan"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Karissa Sancraft"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Kerri Barnes"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Kym Lepard"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Les Harmson"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Lorne Boldry"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Maighdiln Lamswood"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Mariel Bourdel"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Maybelle Bellows"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Michaela Babcock"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Natala Stobbe"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Noni Quickenden"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Patrizia Kunrad"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Polly Murton"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Red Nordass"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Roanna Safont"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Sabina Corneille"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Shandy Sefton"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Skippy McIlwain"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Stormi Duddin"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Terrye Littlechild"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Tyson Gahagan"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Viviyan Lantiff"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Wyn Attwoull"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Adamo Rumens"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Aldrich Phythien"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Aluin McUre"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Annamarie Taylot"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Ash Boise"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Bennett Pendered"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Boot Burree"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Callie Dunning"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Cecilia Swinbourne"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Christian Yeld"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Cori Percifer"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Danyelle Butts"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Derry Davis"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Dominick Crafts"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Eimile Matz"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Emmalynne Hairs"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Evan Goldsbury"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Ferdinand Fowley"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Gabey Macewan"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Gerta Sanday"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Granger Aiers"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Ham Penhall"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Henryetta Kempster"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Ibrahim Jurries"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Janeva Silman"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Jill O'Sirin"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Julianna Jostan"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Katherine Midson"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Kim McCloughlin"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Laney Fadden"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Lexie Spinetti"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Lucho McGerraghty"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Malina Pengelly"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Mariquilla Labbe"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Melesa Halahan"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Mill Lambell"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Natty Murt"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Ogdon Petr"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Payton Rissen"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Quinn Stamps"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Reilly Domonkos"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Rodrigo D'Alessio"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Salvidor Francesch"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Sheela Stein"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Sophey Garling"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Sully Cunney"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Thorin Jolliman"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Vale Norwood"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Wanda Ramas"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Xymenes Hands"</bucket>
</map>
<map to='#79706e'>
<bucket>"Ag Gasking"</bucket>
</map>
<map to='#79706e'>
<bucket>"Alisander Cornelisse"</bucket>
</map>
<map to='#79706e'>
<bucket>"Anastasia Baudy"</bucket>
</map>
<map to='#79706e'>
<bucket>"Araldo Bramhall"</bucket>
</map>
<map to='#79706e'>
<bucket>"Aurie Unthank"</bucket>
</map>
<map to='#79706e'>
<bucket>"Berte Cornall"</bucket>
</map>
<map to='#79706e'>
<bucket>"Brit Northfield"</bucket>
</map>
<map to='#79706e'>
<bucket>"Carney Speer"</bucket>
</map>
<map to='#79706e'>
<bucket>"Charisse Risso"</bucket>
</map>
<map to='#79706e'>
<bucket>"Cissy Blondelle"</bucket>
</map>
<map to='#79706e'>
<bucket>"Currie Fidell"</bucket>
</map>
<map to='#79706e'>
<bucket>"Deck Paulat"</bucket>
</map>
<map to='#79706e'>
<bucket>"Dian Collough"</bucket>
</map>
<map to='#79706e'>
<bucket>"Douglas O' Cloney"</bucket>
</map>
<map to='#79706e'>
<bucket>"Elliott Avard"</bucket>
</map>
<map to='#79706e'>
<bucket>"Erinn Vannar"</bucket>
</map>
<map to='#79706e'>
<bucket>"Ezri Gouck"</bucket>
</map>
<map to='#79706e'>
<bucket>"Florella Reape"</bucket>
</map>
<map to='#79706e'>
<bucket>"Garek Gearty"</bucket>
</map>
<map to='#79706e'>
<bucket>"Giselle Abrahart"</bucket>
</map>
<map to='#79706e'>
<bucket>"Gualterio Paget"</bucket>
</map>
<map to='#79706e'>
<bucket>"Harry Beak"</bucket>
</map>
<map to='#79706e'>
<bucket>"Hervey Ganning"</bucket>