-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook_online retail.twb
2277 lines (2276 loc) · 156 KB
/
book_online retail.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 20224.23.0209.1653 -->
<workbook original-version='18.1' source-build='2022.4.1 (20224.23.0209.1653)' 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 />
<MapboxVectorStylesAndLayers />
<_.fcp.MarkAnimation.true...MarkAnimation />
<_.fcp.ObjectModelEncapsulateLegacy.true...ObjectModelEncapsulateLegacy />
<_.fcp.ObjectModelTableType.true...ObjectModelTableType />
<_.fcp.SchemaViewerObjectModel.true...SchemaViewerObjectModel />
<SetMembershipControl />
<SheetIdentifierTracking />
<SortTagCleanup />
<WindowsPersistSimpleIdentifiers />
<WorksheetBackgroundTransparency />
</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='Online Retail (Online Retail)' inline='true' name='federated.1fj39ov0t6s12p13ade970a13xba' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='Online Retail' name='excel-direct.02tgztc113m20z14zk8zu1e9ruv2'>
<connection class='excel-direct' cleaning='no' compat='no' dataRefreshTime='' filename='C:/Users/admin/Desktop/TABLEAU/Online Retail.xlsx' interpretationMode='0' password='' server='' validate='no' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation connection='excel-direct.02tgztc113m20z14zk8zu1e9ruv2' name='Online Retail' table='['Online Retail$']' type='table'>
<columns gridOrigin='A1:H10001:no:A1:H10001:0' header='yes' outcome='2'>
<column datatype='integer' name='InvoiceNo' ordinal='0' />
<column datatype='string' name='StockCode' ordinal='1' />
<column datatype='string' name='Description' ordinal='2' />
<column datatype='integer' name='Quantity' ordinal='3' />
<column datatype='datetime' name='InvoiceDate' ordinal='4' />
<column datatype='real' name='UnitPrice' ordinal='5' />
<column datatype='integer' name='CustomerID' ordinal='6' />
<column datatype='string' name='Country' ordinal='7' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.false...relation>
<_.fcp.ObjectModelEncapsulateLegacy.true...relation connection='excel-direct.02tgztc113m20z14zk8zu1e9ruv2' name='Online Retail' table='['Online Retail$']' type='table'>
<columns gridOrigin='A1:H10001:no:A1:H10001:0' header='yes' outcome='2'>
<column datatype='integer' name='InvoiceNo' ordinal='0' />
<column datatype='string' name='StockCode' ordinal='1' />
<column datatype='string' name='Description' ordinal='2' />
<column datatype='integer' name='Quantity' ordinal='3' />
<column datatype='datetime' name='InvoiceDate' ordinal='4' />
<column datatype='real' name='UnitPrice' ordinal='5' />
<column datatype='integer' name='CustomerID' ordinal='6' />
<column datatype='string' name='Country' ordinal='7' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.true...relation>
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[Online Retail]</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:H10001:no:A1:H10001: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>InvoiceNo</remote-name>
<remote-type>20</remote-type>
<local-name>[InvoiceNo]</local-name>
<parent-name>[Online Retail]</parent-name>
<remote-alias>InvoiceNo</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>[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>StockCode</remote-name>
<remote-type>130</remote-type>
<local-name>[StockCode]</local-name>
<parent-name>[Online Retail]</parent-name>
<remote-alias>StockCode</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>[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Description</remote-name>
<remote-type>130</remote-type>
<local-name>[Description]</local-name>
<parent-name>[Online Retail]</parent-name>
<remote-alias>Description</remote-alias>
<ordinal>2</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>[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]</_.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>[Online Retail]</parent-name>
<remote-alias>Quantity</remote-alias>
<ordinal>3</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>[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>InvoiceDate</remote-name>
<remote-type>7</remote-type>
<local-name>[InvoiceDate]</local-name>
<parent-name>[Online Retail]</parent-name>
<remote-alias>InvoiceDate</remote-alias>
<ordinal>4</ordinal>
<local-type>datetime</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"DATE"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>UnitPrice</remote-name>
<remote-type>5</remote-type>
<local-name>[UnitPrice]</local-name>
<parent-name>[Online Retail]</parent-name>
<remote-alias>UnitPrice</remote-alias>
<ordinal>5</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>[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>CustomerID</remote-name>
<remote-type>20</remote-type>
<local-name>[CustomerID]</local-name>
<parent-name>[Online Retail]</parent-name>
<remote-alias>CustomerID</remote-alias>
<ordinal>6</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>[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]</_.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>[Online Retail]</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>[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column caption='Revenue' datatype='real' name='[Calculation_1002613935183228928]' role='measure' type='quantitative'>
<calculation class='tableau' formula='[UnitPrice]*[Quantity]' />
</column>
<column caption='Less than 1 (qty)' datatype='string' name='[Calculation_807270301376385024]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [Quantity] < 1 THEN " Less than 1 " ELSE " More than 1 " END' />
</column>
<column datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column caption='Customer ID' datatype='integer' name='[CustomerID]' role='dimension' type='ordinal' />
<column caption='Invoice Date' datatype='datetime' name='[InvoiceDate]' role='dimension' type='ordinal' />
<column caption='Invoice No' datatype='integer' name='[InvoiceNo]' role='measure' type='quantitative' />
<column caption='Less than 1 (price) ' datatype='string' name='[Less than 1 (qty) (copy)_807270301377216513]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [UnitPrice] < 0 THEN " Less than 0 " ELSE " More than 0 " END' />
</column>
<column datatype='integer' name='[Quantity]' role='measure' type='quantitative' />
<column caption='Stock Code' datatype='string' name='[StockCode]' role='dimension' type='nominal' />
<column caption='Unit Price' datatype='real' name='[UnitPrice]' role='measure' type='quantitative' />
<_.fcp.ObjectModelTableType.true...column caption='Online Retail' datatype='table' name='[__tableau_internal_object_id__].[Online Retail_D3D648C9FE65499298DAC3D77A7C6C68]' role='measure' type='quantitative' />
<column-instance column='[Forecast Indicator]' derivation='None' forecast-column-base='[Forecast Indicator]' forecast-column-type='forecast-indicator' name='[none:Forecast Indicator:nk]' pivot='key' type='nominal' />
<column-instance column='[Calculation_1002613935183228928]' derivation='Sum' name='[sum:Calculation_1002613935183228928:qk]' pivot='key' type='quantitative' />
<column-instance column='[Quantity]' derivation='Sum' name='[sum:Quantity:qk]' pivot='key' type='quantitative' />
<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='[:Measure Names]' palette='blue_10_0' type='palette'>
<map to='#2a5783'>
<bucket>"[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]"</bucket>
</map>
<map to='#b9ddf1'>
<bucket>"[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Quantity:qk]"</bucket>
</map>
</encoding>
</style-rule>
</style>
<semantic-values>
<semantic-value key='[Country].[Name]' value='"United States"' />
</semantic-values>
<default-sorts>
<manual-sort column='[none:Forecast Indicator:nk]' direction='ASC'>
<dictionary>
<bucket>"Actual"</bucket>
<bucket>"Estimate"</bucket>
</dictionary>
</manual-sort>
</default-sorts>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
<objects>
<object caption='Online Retail' id='Online Retail_D3D648C9FE65499298DAC3D77A7C6C68'>
<properties context=''>
<relation connection='excel-direct.02tgztc113m20z14zk8zu1e9ruv2' name='Online Retail' table='['Online Retail$']' type='table'>
<columns gridOrigin='A1:H10001:no:A1:H10001:0' header='yes' outcome='2'>
<column datatype='integer' name='InvoiceNo' ordinal='0' />
<column datatype='string' name='StockCode' ordinal='1' />
<column datatype='string' name='Description' ordinal='2' />
<column datatype='integer' name='Quantity' ordinal='3' />
<column datatype='datetime' name='InvoiceDate' ordinal='4' />
<column datatype='real' name='UnitPrice' ordinal='5' />
<column datatype='integer' name='CustomerID' ordinal='6' />
<column datatype='string' name='Country' ordinal='7' />
</columns>
</relation>
</properties>
</object>
</objects>
</_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
</datasource>
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<shared-views>
<shared-view name='federated.1fj39ov0t6s12p13ade970a13xba'>
<datasources>
<datasource caption='Online Retail (Online Retail)' name='federated.1fj39ov0t6s12p13ade970a13xba' />
</datasources>
<datasource-dependencies datasource='federated.1fj39ov0t6s12p13ade970a13xba'>
<column caption='Less than 1 (qty)' datatype='string' name='[Calculation_807270301376385024]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [Quantity] < 1 THEN " Less than 1 " ELSE " More than 1 " END' />
</column>
<column caption='Invoice Date' datatype='datetime' name='[InvoiceDate]' role='dimension' type='ordinal' />
<column caption='Less than 1 (price) ' datatype='string' name='[Less than 1 (qty) (copy)_807270301377216513]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [UnitPrice] < 0 THEN " Less than 0 " ELSE " More than 0 " END' />
</column>
<column-instance column='[Calculation_807270301376385024]' derivation='None' name='[none:Calculation_807270301376385024:nk]' pivot='key' type='nominal' />
<column-instance column='[Less than 1 (qty) (copy)_807270301377216513]' derivation='None' name='[none:Less than 1 (qty) (copy)_807270301377216513:nk]' pivot='key' type='nominal' />
<column-instance column='[InvoiceDate]' derivation='Year' name='[yr:InvoiceDate:ok]' pivot='key' type='ordinal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1fj39ov0t6s12p13ade970a13xba].[none:Calculation_807270301376385024:nk]'>
<groupfilter function='member' level='[none:Calculation_807270301376385024:nk]' member='" More than 1 "' user:ui-domain='database' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[federated.1fj39ov0t6s12p13ade970a13xba].[none:Less than 1 (qty) (copy)_807270301377216513:nk]'>
<groupfilter function='member' level='[none:Less than 1 (qty) (copy)_807270301377216513:nk]' member='" More than 0 "' user:ui-domain='database' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[federated.1fj39ov0t6s12p13ade970a13xba].[yr:InvoiceDate:ok]'>
<groupfilter function='member' level='[yr:InvoiceDate:ok]' member='2011' user:ui-domain='database' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
</shared-view>
</shared-views>
<worksheets>
<worksheet name='Revenue by Country'>
<table>
<view>
<datasources>
<datasource caption='Online Retail (Online Retail)' name='federated.1fj39ov0t6s12p13ade970a13xba' />
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<datasource-dependencies datasource='federated.1fj39ov0t6s12p13ade970a13xba'>
<column caption='Revenue' datatype='real' name='[Calculation_1002613935183228928]' role='measure' type='quantitative'>
<calculation class='tableau' formula='[UnitPrice]*[Quantity]' />
</column>
<column caption='Less than 1 (qty)' datatype='string' name='[Calculation_807270301376385024]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [Quantity] < 1 THEN " Less than 1 " ELSE " More than 1 " END' />
</column>
<column datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column caption='Invoice Date' datatype='datetime' name='[InvoiceDate]' role='dimension' type='ordinal' />
<column caption='Less than 1 (price) ' datatype='string' name='[Less than 1 (qty) (copy)_807270301377216513]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [UnitPrice] < 0 THEN " Less than 0 " ELSE " More than 0 " END' />
</column>
<column datatype='integer' name='[Quantity]' role='measure' type='quantitative' />
<column caption='Unit Price' datatype='real' name='[UnitPrice]' role='measure' type='quantitative' />
<column-instance column='[Calculation_807270301376385024]' derivation='None' name='[none:Calculation_807270301376385024:nk]' pivot='key' type='nominal' />
<column-instance column='[Country]' derivation='None' name='[none:Country:nk]' pivot='key' type='nominal' />
<column-instance column='[Less than 1 (qty) (copy)_807270301377216513]' derivation='None' name='[none:Less than 1 (qty) (copy)_807270301377216513:nk]' pivot='key' type='nominal' />
<column-instance column='[Calculation_1002613935183228928]' derivation='Sum' name='[sum:Calculation_1002613935183228928:qk]' pivot='key' type='quantitative' />
<column-instance column='[InvoiceDate]' derivation='Year' name='[yr:InvoiceDate:ok]' pivot='key' type='ordinal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk]'>
<groupfilter function='except' user:ui-domain='database' user:ui-enumeration='inclusive' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Country:nk]' />
<groupfilter function='union'>
<groupfilter function='member' level='[none:Country:nk]' member='"United Kingdom"' />
<groupfilter function='member' level='[none:Country:nk]' member='%null%' />
</groupfilter>
</groupfilter>
</filter>
<slices>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[yr:InvoiceDate:ok]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Calculation_807270301376385024:nk]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Less than 1 (qty) (copy)_807270301377216513:nk]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<encoding attr='space' class='0' field='[federated.1fj39ov0t6s12p13ade970a13xba].[Longitude (generated)]' field-type='quantitative' max='23721204.061598983' min='-22418150.390006665' projection='EPSG:3857' range-type='fixed' scope='cols' type='space' />
<encoding attr='space' class='0' field='[federated.1fj39ov0t6s12p13ade970a13xba].[Latitude (generated)]' field-type='quantitative' max='20228322.466347992' min='-9571775.2772063427' projection='EPSG:3857' range-type='fixed' scope='rows' type='space' />
</style-rule>
<style-rule element='pane'>
<format attr='border-style' data-class='subtotal' value='solid' />
</style-rule>
<style-rule element='map'>
<format attr='washout' value='0.0' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]' />
<text column='[federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk]' />
<text column='[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]' />
<lod column='[federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk]' />
<geometry column='[federated.1fj39ov0t6s12p13ade970a13xba].[Geometry (generated)]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1fj39ov0t6s12p13ade970a13xba].[Latitude (generated)]</rows>
<cols>[federated.1fj39ov0t6s12p13ade970a13xba].[Longitude (generated)]</cols>
</table>
<simple-id uuid='{3C045713-14A2-4DC8-A00F-B3CF570C39DF}' />
</worksheet>
<worksheet name='Revenue by Month,2011'>
<table>
<view>
<datasources>
<datasource caption='Online Retail (Online Retail)' name='federated.1fj39ov0t6s12p13ade970a13xba' />
</datasources>
<datasource-dependencies datasource='federated.1fj39ov0t6s12p13ade970a13xba'>
<column caption='Revenue' datatype='real' name='[Calculation_1002613935183228928]' role='measure' type='quantitative'>
<calculation class='tableau' formula='[UnitPrice]*[Quantity]' />
</column>
<column caption='Less than 1 (qty)' datatype='string' name='[Calculation_807270301376385024]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [Quantity] < 1 THEN " Less than 1 " ELSE " More than 1 " END' />
</column>
<column caption='Invoice Date' datatype='datetime' name='[InvoiceDate]' role='dimension' type='ordinal' />
<column caption='Less than 1 (price) ' datatype='string' name='[Less than 1 (qty) (copy)_807270301377216513]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [UnitPrice] < 0 THEN " Less than 0 " ELSE " More than 0 " END' />
</column>
<column datatype='integer' name='[Quantity]' role='measure' type='quantitative' />
<column caption='Unit Price' datatype='real' name='[UnitPrice]' role='measure' type='quantitative' />
<column-instance column='[Calculation_807270301376385024]' derivation='None' name='[none:Calculation_807270301376385024:nk]' pivot='key' type='nominal' />
<column-instance column='[Less than 1 (qty) (copy)_807270301377216513]' derivation='None' name='[none:Less than 1 (qty) (copy)_807270301377216513:nk]' pivot='key' type='nominal' />
<column-instance column='[Calculation_1002613935183228928]' derivation='Sum' name='[sum:Calculation_1002613935183228928:qk]' pivot='key' type='quantitative' />
<column-instance column='[InvoiceDate]' derivation='Month-Trunc' name='[tmn:InvoiceDate:qk]' pivot='key' type='quantitative' />
<column-instance column='[InvoiceDate]' derivation='Year' name='[yr:InvoiceDate:ok]' pivot='key' type='ordinal' />
</datasource-dependencies>
<slices>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[yr:InvoiceDate:ok]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Calculation_807270301376385024:nk]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Less than 1 (qty) (copy)_807270301377216513:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='pane'>
<format attr='border-color' data-class='total' value='#898989' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<text column='[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
<format attr='mark-labels-mode' value='all' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]</rows>
<cols>[federated.1fj39ov0t6s12p13ade970a13xba].[tmn:InvoiceDate:qk]</cols>
</table>
<simple-id uuid='{A6C32E8D-C808-499B-9CC0-CB445FABF7FC}' />
</worksheet>
<worksheet name='Sheet 5'>
<table>
<view>
<datasources />
<aggregation value='true' />
</view>
<style />
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
</pane>
</panes>
<rows />
<cols />
</table>
<simple-id uuid='{F9353FA4-4882-40DF-B47B-47C9FC7B118E}' />
</worksheet>
<worksheet name='Top 10 Countries by Revenue and Quantity'>
<table>
<view>
<datasources>
<datasource caption='Online Retail (Online Retail)' name='federated.1fj39ov0t6s12p13ade970a13xba' />
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<datasource-dependencies datasource='federated.1fj39ov0t6s12p13ade970a13xba'>
<column caption='Revenue' datatype='real' name='[Calculation_1002613935183228928]' role='measure' type='quantitative'>
<calculation class='tableau' formula='[UnitPrice]*[Quantity]' />
</column>
<column caption='Less than 1 (qty)' datatype='string' name='[Calculation_807270301376385024]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [Quantity] < 1 THEN " Less than 1 " ELSE " More than 1 " END' />
</column>
<column datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column caption='Invoice Date' datatype='datetime' name='[InvoiceDate]' role='dimension' type='ordinal' />
<column caption='Less than 1 (price) ' datatype='string' name='[Less than 1 (qty) (copy)_807270301377216513]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [UnitPrice] < 0 THEN " Less than 0 " ELSE " More than 0 " END' />
</column>
<column datatype='integer' name='[Quantity]' role='measure' type='quantitative' />
<column caption='Unit Price' datatype='real' name='[UnitPrice]' role='measure' type='quantitative' />
<column-instance column='[Calculation_807270301376385024]' derivation='None' name='[none:Calculation_807270301376385024:nk]' pivot='key' type='nominal' />
<column-instance column='[Country]' derivation='None' name='[none:Country:nk]' pivot='key' type='nominal' />
<column-instance column='[Less than 1 (qty) (copy)_807270301377216513]' derivation='None' name='[none:Less than 1 (qty) (copy)_807270301377216513:nk]' pivot='key' type='nominal' />
<column-instance column='[Calculation_1002613935183228928]' derivation='Sum' name='[sum:Calculation_1002613935183228928:qk]' pivot='key' type='quantitative' />
<column-instance column='[Quantity]' derivation='Sum' name='[sum:Quantity:qk]' pivot='key' type='quantitative' />
<column-instance column='[InvoiceDate]' derivation='Year' name='[yr:InvoiceDate:ok]' pivot='key' type='ordinal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1fj39ov0t6s12p13ade970a13xba].[:Measure Names]'>
<groupfilter function='union' user:op='manual'>
<groupfilter function='member' level='[:Measure Names]' member='"[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Quantity:qk]"' />
<groupfilter function='member' level='[:Measure Names]' member='"[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]"' />
</groupfilter>
</filter>
<manual-sort column='[federated.1fj39ov0t6s12p13ade970a13xba].[:Measure Names]' direction='ASC'>
<dictionary>
<bucket>"[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]"</bucket>
<bucket>"[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Quantity:qk]"</bucket>
</dictionary>
</manual-sort>
<filter class='categorical' column='[federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk]'>
<groupfilter count='10' end='top' function='end' units='records' user:ui-marker='end' user:ui-top-by-field='true'>
<groupfilter direction='DESC' expression='SUM([Calculation_1002613935183228928])' function='order' user:ui-marker='order'>
<groupfilter function='except' user:ui-domain='database' user:ui-enumeration='inclusive' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Country:nk]' />
<groupfilter function='union'>
<groupfilter function='member' level='[none:Country:nk]' member='"United Kingdom"' />
<groupfilter function='member' level='[none:Country:nk]' member='%null%' />
</groupfilter>
</groupfilter>
</groupfilter>
</groupfilter>
</filter>
<slices>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[yr:InvoiceDate:ok]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Calculation_807270301376385024:nk]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Less than 1 (qty) (copy)_807270301377216513:nk]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[:Measure Names]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='cell'>
<format attr='border-style' value='solid' />
<format attr='border-color' value='#898989' />
</style-rule>
<style-rule element='map'>
<format attr='washout' value='0.0' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<mark-sizing mark-sizing-setting='marks-scaling-off' />
<encodings>
<color column='[federated.1fj39ov0t6s12p13ade970a13xba].[:Measure Names]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
<format attr='size' value='1.2963535785675049' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1fj39ov0t6s12p13ade970a13xba].[Multiple Values]</rows>
<cols>([federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk] / [federated.1fj39ov0t6s12p13ade970a13xba].[:Measure Names])</cols>
</table>
<simple-id uuid='{6EE5F33A-DE20-4B89-8F9C-B72450C50FB4}' />
</worksheet>
<worksheet name='Top 10 Customers by Revenue'>
<table>
<view>
<datasources>
<datasource caption='Online Retail (Online Retail)' name='federated.1fj39ov0t6s12p13ade970a13xba' />
</datasources>
<datasource-dependencies datasource='federated.1fj39ov0t6s12p13ade970a13xba'>
<column caption='Revenue' datatype='real' name='[Calculation_1002613935183228928]' role='measure' type='quantitative'>
<calculation class='tableau' formula='[UnitPrice]*[Quantity]' />
</column>
<column caption='Less than 1 (qty)' datatype='string' name='[Calculation_807270301376385024]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [Quantity] < 1 THEN " Less than 1 " ELSE " More than 1 " END' />
</column>
<column caption='Customer ID' datatype='integer' name='[CustomerID]' role='dimension' type='ordinal' />
<column caption='Invoice Date' datatype='datetime' name='[InvoiceDate]' role='dimension' type='ordinal' />
<column caption='Less than 1 (price) ' datatype='string' name='[Less than 1 (qty) (copy)_807270301377216513]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [UnitPrice] < 0 THEN " Less than 0 " ELSE " More than 0 " END' />
</column>
<column datatype='integer' name='[Quantity]' role='measure' type='quantitative' />
<column caption='Unit Price' datatype='real' name='[UnitPrice]' role='measure' type='quantitative' />
<column-instance column='[Calculation_807270301376385024]' derivation='None' name='[none:Calculation_807270301376385024:nk]' pivot='key' type='nominal' />
<column-instance column='[CustomerID]' derivation='None' name='[none:CustomerID:ok]' pivot='key' type='ordinal' />
<column-instance column='[Less than 1 (qty) (copy)_807270301377216513]' derivation='None' name='[none:Less than 1 (qty) (copy)_807270301377216513:nk]' pivot='key' type='nominal' />
<column-instance column='[Calculation_1002613935183228928]' derivation='Sum' name='[sum:Calculation_1002613935183228928:qk]' pivot='key' type='quantitative' />
<column-instance column='[InvoiceDate]' derivation='Year' name='[yr:InvoiceDate:ok]' pivot='key' type='ordinal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1fj39ov0t6s12p13ade970a13xba].[none:CustomerID:ok]'>
<groupfilter count='10' end='top' function='end' units='records' user:ui-marker='end' user:ui-top-by-field='true'>
<groupfilter direction='DESC' expression='SUM([Calculation_1002613935183228928])' function='order' user:ui-marker='order'>
<groupfilter from='12346' function='range' level='[none:CustomerID:ok]' to='18287' user:ui-domain='database' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</groupfilter>
</groupfilter>
</filter>
<shelf-sorts>
<shelf-sort-v2 dimension-to-sort='[federated.1fj39ov0t6s12p13ade970a13xba].[none:CustomerID:ok]' direction='DESC' is-on-innermost-dimension='true' measure-to-sort-by='[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]' shelf='columns' />
</shelf-sorts>
<slices>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:CustomerID:ok]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[yr:InvoiceDate:ok]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Calculation_807270301376385024:nk]</column>
<column>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Less than 1 (qty) (copy)_807270301377216513:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='header'>
<format attr='height-header' value='17' />
</style-rule>
<style-rule element='mark'>
<encoding attr='color' field='[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]' palette='orange_10_0' type='interpolated' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<mark-sizing mark-sizing-setting='marks-scaling-off' />
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
<format attr='size' value='1.3733149766921997' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]</rows>
<cols>[federated.1fj39ov0t6s12p13ade970a13xba].[none:CustomerID:ok]</cols>
</table>
<simple-id uuid='{274C2BDD-7E51-4B72-9685-00BD043581C6}' />
</worksheet>
</worksheets>
<dashboards>
<dashboard _.fcp.AccessibleZoneTabOrder.true...enable-sort-zone-taborder='true' name='Dashboard 1'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontsize='20'>Online Retail</run>
</formatted-text>
</title>
</layout-options>
<style>
<style-rule element='table'>
<format attr='background-color' value='#e6e6e6' />
</style-rule>
<style-rule element='dash-title'>
<format attr='background-color' value='#c0c0c0' />
</style-rule>
</style>
<size maxheight='700' maxwidth='1100' minheight='700' minwidth='1100' preset-index='3' sizing-mode='fixed' />
<zones>
<zone h='100000' id='4' type-v2='layout-basic' w='100000' x='0' y='0'>
<zone h='97714' id='21' param='horz' type-v2='layout-flow' w='98546' x='727' y='1143'>
<zone h='97714' id='13' param='vert' type-v2='layout-flow' w='98546' x='727' y='1143'>
<zone h='6429' id='14' type-v2='title' w='98546' x='727' y='1143'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='91285' id='8' param='horz' type-v2='layout-flow' w='98546' x='727' y='7572'>
<zone h='91285' id='6' type-v2='layout-basic' w='98546' x='727' y='7572'>
<zone h='45630' id='3' name='Revenue by Month,2011' w='49256' x='727' y='7572'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='45627' id='5' name='Top 10 Countries by Revenue and Quantity' w='49290' x='49983' y='7572'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='45658' id='10' name='Top 10 Customers by Revenue' w='49290' x='49983' y='53199'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='45655' id='19' name='Revenue by Country' w='49256' x='727' y='53202'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
</zone>
</zone>
</zone>
</zone>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
</zone-style>
</zone>
<zone h='8410' id='54' is-centered='0' is-scaled='1' param='C:/Users/admin/Downloads/ecommerce.png' type-v2='bitmap' w='12189' x='92616' y='461' />
</zones>
<devicelayouts>
<devicelayout auto-generated='true' name='Phone'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontsize='20'>Online Retail</run>
</formatted-text>
</title>
</layout-options>
<size maxheight='1300' minheight='1300' sizing-mode='vscroll' />
<zones>
<zone h='100000' id='62' type-v2='layout-basic' w='100000' x='0' y='0'>
<zone h='97714' id='61' param='vert' type-v2='layout-flow' w='98546' x='727' y='1143'>
<zone h='6429' id='14' type-v2='title' w='98546' x='727' y='1143'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='59' h='8410' id='54' is-centered='0' is-fixed='true' is-scaled='1' param='C:/Users/admin/Downloads/ecommerce.png' type-v2='bitmap' w='12189' x='92616' y='461'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='280' h='45630' id='3' is-fixed='true' name='Revenue by Month,2011' w='49256' x='727' y='7572'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='280' h='45627' id='5' is-fixed='true' name='Top 10 Countries by Revenue and Quantity' w='49290' x='49983' y='7572'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='280' h='45658' id='10' is-fixed='true' name='Top 10 Customers by Revenue' w='49290' x='49983' y='53199'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='280' h='45655' id='19' is-fixed='true' name='Revenue by Country' w='49256' x='727' y='53202'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
</zone>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
</zone-style>
</zone>
</zones>
</devicelayout>
</devicelayouts>
<simple-id uuid='{1DC5EBB9-2CEB-43FC-9F2D-7C8C734D9890}' />
</dashboard>
</dashboards>
<windows source-height='30'>
<window class='worksheet' name='Revenue by Month,2011'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Calculation_807270301376385024:nk]</field>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Less than 1 (qty) (copy)_807270301377216513:nk]</field>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[yr:InvoiceDate:ok]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{88F4CE8D-6731-44F3-84B8-464388DE8DBD}' />
</window>
<window class='worksheet' name='Top 10 Countries by Revenue and Quantity'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
<card type='measures' />
<card pane-specification-id='0' param='[federated.1fj39ov0t6s12p13ade970a13xba].[:Measure Names]' type='color' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
</cards>
<viewpoint>
<zoom type='entire-view' />
<highlight>
<color-one-way>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[:Measure Names]</field>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk]</field>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{A0842EA7-68AA-4EC1-A351-DE37CA650F76}' />
</window>
<window class='worksheet' name='Top 10 Customers by Revenue'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[none:CustomerID:ok]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{56955C00-EDA4-46E6-99B8-F0D409224F35}' />
</window>
<window class='worksheet' name='Revenue by Country'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card pane-specification-id='0' param='[federated.1fj39ov0t6s12p13ade970a13xba].[sum:Calculation_1002613935183228928:qk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[none:Country:nk]</field>
</color-one-way>
</highlight>
<default-map-tool-selection tool='1' />
</viewpoint>
<simple-id uuid='{19741FCB-4647-416D-AB0D-3B9619A6D50D}' />
</window>
<window class='worksheet' name='Sheet 5'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
</cards>
<simple-id uuid='{F42ED95B-DBA9-4CD6-A3FA-15D5B0F2E39A}' />
</window>
<window class='dashboard' maximized='true' name='Dashboard 1'>
<viewpoints>
<viewpoint name='Revenue by Country'>
<zoom type='entire-view' />
<default-map-tool-selection tool='1' />
</viewpoint>
<viewpoint name='Revenue by Month,2011'>
<zoom type='entire-view' />
</viewpoint>
<viewpoint name='Top 10 Countries by Revenue and Quantity'>
<zoom type='entire-view' />
<highlight>
<color-one-way>
<field>[federated.1fj39ov0t6s12p13ade970a13xba].[:Measure Names]</field>
</color-one-way>
</highlight>
</viewpoint>
<viewpoint name='Top 10 Customers by Revenue'>
<zoom type='entire-view' />
</viewpoint>
</viewpoints>
<active id='-1' />
<simple-id uuid='{195929CC-A303-440A-8FCE-AA0E837CE62D}' />
</window>
</windows>
<thumbnails>
<thumbnail height='192' name='Dashboard 1' width='192'>
iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAAACXBIWXMAAA7DAAAOwwHHb6hk
AAAgAElEQVR4nOy9aXBcWXag972X+74hE4kdIEAAJLgV9yqStXf1pupWawnto/EiKzwaje2Q
7BjJ9tgOx/zwjD0xYWtibClGUo/U3TVSd2spVVd1dReLVVyLC1gEsYPYgQRyRSZyffk2/wCR
RRBcABLcqvKLYID58r377nt5z73nnnvOuUIkEtGpUuULivikK1ClypOkKgBVvtAYb/2QSCSQ
JOlJ1aVKlcfOGgEolUoUCoUnVZcqVR47D6wCLSWilGSNXCZFOvt4hSa6MEdZhXQiTrGsPNZ7
V/l8sU4ANKXM+2//kB/+zd/y1vfeYjq6dMcLL370HouZMkuxCLHU8oZvWE7N8K//7b/j7//u
7/iL73yPZO4OKlcpw48/unDXMqZvDCMpcOXMB0SW8hu+d5Uqt2O8/cDUwCUkZzPfevkgxcwC
b739U37jF77CuUtXMWgKec3EKy8dq5xvMBowGAzEZ8cYi2TIpaL4Gjo4uLuT2fEh+oYnaO3c
za7OlptX6AQbO/jGN7/M6JWP+HRgnJf3b+OTc2fJlHSeP3acid6zXLowjJxL8fJrX2Lg0lli
6ezNcloxGCwYDI/rFVX5PLNuBIhEIjQ3NyIIYHfXoJWzyFKR4bEp9h89jhybZCH9mcqTis6x
mMqSSSywmCnz6uuvcvX8WcrFJCcvDPHlL3+Z0cunSJW0yjWFbJrJiXGuDU3S2lzPp+dOYgpt
59hz2/nxB6fZf+AgocY2fubrX8NpFmhobWdXTzenT/4EWdUYHxlC0m6veZUqm2edAHi8HtKZ
FZVGKZfQMCIIYLW7sFvNmExGdO68dubx+jCajBgFKGaSxOKLvPvuuwhWF7IkV86TyxLXL5/F
1riLbWEPiXickb5LnLpwDZ/XtabMbGKOn5w6SyabR1EVNL26bldl61gnAF17DzF97SxXPr3G
e++8w57DxxCFzRfsqGki5LLQ0NxCXSiAyfiZzuIJ1PIzP/fLaNEhLg9O0rmjG9Fgoa2tFY/L
AVYnQi5OX/8QhZKEaLSgyWUUtdrtV9lahFtdIebm5igUCqiyxOzcPC5fkIDXhaaUiaWWCYdq
SMWj2L01FNJx7N4QajGDIloxI1HSzPjcVhYWYoTrwihSgbnIIk5PgKDfA4Aml4ilC4SDfjS5
xOxikqbGejLJGOlsibqGBqxmI/nlJWKpHM0tjaSiETA7UctFQqFakrFFvKE6cqkYVrcfm3nd
VKZKlQ1xRwGoUuWLwpqu0+v14nA4nlRdqlR57KwRAKfT+aTqUaXKE2GNAJjNZgxVA3uVh6Rc
LqOqKgaDAbPZ/KSrc0/WCIDD4cBqtT6pulT5nJDJZCgUClgsFjwez5Ouzj2pukNX+UJTFYAq
X2jWCEBpOcYHJ09x9uxZMoXyFt+qQO/lobt+OzHyKWNTiwDMjl9ncGz+rufqukY6kwHgcm/v