All language subtitles for 3. Assembling a Dashboard - Part 2

af Afrikaans
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bn Bengali
bs Bosnian
bg Bulgarian
ca Catalan
ceb Cebuano
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
tl Filipino
fi Finnish
fr French Download
fy Frisian
gl Galician
ka Georgian
de German
el Greek
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
km Khmer
ko Korean
ku Kurdish (Kurmanji)
ky Kyrgyz
lo Lao
la Latin
lv Latvian
lt Lithuanian
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mn Mongolian
my Myanmar (Burmese)
ne Nepali
no Norwegian
ps Pashto
fa Persian
pl Polish
pt Portuguese
pa Punjabi
ro Romanian
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
st Sesotho
sn Shona
sd Sindhi
si Sinhala
sk Slovak
sl Slovenian
so Somali
es Spanish
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
te Telugu
th Thai
tr Turkish
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
or Odia (Oriya)
rw Kinyarwanda
tk Turkmen
tt Tatar
ug Uyghur
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:05,200 --> 00:00:10,510 So we're making pretty good progress on setting up the account relations for our dashboard. 2 00:00:11,230 --> 00:00:17,230 The only other calculations we need to do are the calculations that we need for those high level headings. 3 00:00:17,590 --> 00:00:23,200 I'm talking about these ones at the top here, highest number of orders, highest costs and most profitable 4 00:00:24,070 --> 00:00:26,650 now because of the way that we've set this up. 5 00:00:27,010 --> 00:00:33,430 We can utilize the information in this table and just basically find the maximum value in each of these 6 00:00:33,430 --> 00:00:33,940 columns. 7 00:00:34,720 --> 00:00:39,640 And what I want is the value and also the label, in this case, the product. 8 00:00:40,300 --> 00:00:48,370 So all we need to do here to find the highest number of orders is equals max and select our range. 9 00:00:48,970 --> 00:00:53,030 Close the bracket, enter and there is a highest number of orders. 10 00:00:53,500 --> 00:00:55,770 So we need to do the same for the others. 11 00:00:55,780 --> 00:00:57,370 So this time max. 12 00:00:58,150 --> 00:01:01,550 And this is going to be of that COGS column to enter. 13 00:01:02,080 --> 00:01:11,470 And then finally, max of the profits column like so now, in order to find the corresponding label, 14 00:01:11,470 --> 00:01:17,860 i.e. which product has the highest number of orders, the highest costs and the top profit, we need 15 00:01:17,860 --> 00:01:19,600 to do an index and match again. 16 00:01:20,260 --> 00:01:23,830 So we're going to type in equals index our array. 17 00:01:23,830 --> 00:01:26,350 So our array is always what we want to return. 18 00:01:26,890 --> 00:01:28,240 So I want to return the product. 19 00:01:28,240 --> 00:01:30,220 So this is my array. 20 00:01:31,330 --> 00:01:35,770 The row number will we can automate that using match and I want to find. 21 00:01:37,070 --> 00:01:43,430 This look up value, and we're going to look for that in the number of orders range. 22 00:01:45,770 --> 00:01:52,700 And we're doing an exact match, close of match, close of index Hanta, and now I can see that one 23 00:01:52,700 --> 00:01:55,880 71 relates to the Vermont product. 24 00:01:56,630 --> 00:01:59,750 We're going to do exactly the same for these others index. 25 00:01:59,990 --> 00:02:01,240 What do we want to return? 26 00:02:01,250 --> 00:02:02,930 We want to return the product. 27 00:02:03,890 --> 00:02:04,940 How are we going to find that? 28 00:02:04,970 --> 00:02:10,700 Well, we're going to match this look up value in this. 29 00:02:12,120 --> 00:02:21,360 Look up, Ray, and we're doing an exact match close of both brackets and hit enter and then finally, 30 00:02:21,360 --> 00:02:23,960 we're going to do an index again. 31 00:02:23,970 --> 00:02:25,880 We want to find the product. 32 00:02:27,420 --> 00:02:29,580 We're going to use Match to automate. 33 00:02:30,360 --> 00:02:31,740 This is the look up value. 34 00:02:32,190 --> 00:02:39,750 We're looking for it in the profit column this time, and we're doing an exact match, closed both brackets 35 00:02:39,750 --> 00:02:40,530 and hit enter. 36 00:02:41,160 --> 00:02:48,120 Now for this one, it looks like Vermont is the best selling product for 2020. 37 00:02:48,420 --> 00:02:51,900 Let's quickly change the dropdown up here to 2018. 38 00:02:52,390 --> 00:02:56,310 If you look at our calculations, I can see that now that has changed slightly. 39 00:02:56,310 --> 00:02:57,720 Highest cost is Burlington. 40 00:02:57,750 --> 00:02:59,250 Top profit is Mandarin. 41 00:02:59,700 --> 00:03:02,520 So everything is flowing through really nicely. 42 00:03:02,730 --> 00:03:05,430 Now those are pretty much all of the calculations that we need. 43 00:03:05,910 --> 00:03:11,280 The only other things we need to add before we start assembling all the different moving parts onto 44 00:03:11,280 --> 00:03:14,340 the dashboard are the charts that we want to use. 45 00:03:14,940 --> 00:03:16,920 Now I'm only adding three charts. 46 00:03:16,920 --> 00:03:19,470 You might choose to add a lot more than that. 47 00:03:19,800 --> 00:03:25,740 Now, as I said, the charts that I'm using are not pivot charts because we haven't actually created 48 00:03:25,740 --> 00:03:27,120 any pivot tables. 49 00:03:27,900 --> 00:03:33,540 So if we go across to the chart units sold tab, currently I have nothing on here. 50 00:03:34,350 --> 00:03:37,590 Now where am I going to get the information for my charts? 51 00:03:38,190 --> 00:03:40,710 What if we go back to our Calculations tab? 52 00:03:41,100 --> 00:03:44,610 This contains the information that I want to use in this chart. 53 00:03:44,640 --> 00:03:48,780 I have a breakdown of the countries and the amount of units sold. 54 00:03:49,380 --> 00:03:55,380 Now, this actually shouldn't be in dollars because this is the the number of units sold effectively. 55 00:03:55,830 --> 00:03:59,050 So I'm quickly going to change that just to number. 56 00:03:59,640 --> 00:04:04,500 Let's take down those decimal places and I will add a comma separator. 57 00:04:05,920 --> 00:04:14,120 So what I can do here is I can simply select this data, arrange go to insert and then select a chop. 58 00:04:14,140 --> 00:04:22,210 So this first one is going to be a bar charts and I'm going to select it control x two carts, and we're 59 00:04:22,210 --> 00:04:25,930 just going to paste it over on the units sold tab. 60 00:04:27,070 --> 00:04:29,750 And of course, we can apply whatever formatting we want. 61 00:04:29,770 --> 00:04:32,530 So let's quickly do some formatting here. 62 00:04:32,530 --> 00:04:34,210 Let's change these bars to green. 63 00:04:34,900 --> 00:04:39,580 I'm going to make the gap with a little bit less. 64 00:04:40,030 --> 00:04:41,440 In fact, quite a bit less. 65 00:04:42,250 --> 00:04:48,670 Let's add some data labels, and I'm going to put these on the inside bass this time. 66 00:04:49,660 --> 00:04:54,280 I'm also going to format these let's make them bold and also white. 67 00:04:55,030 --> 00:04:58,490 And because I have them there, I don't really need this axes. 68 00:04:58,510 --> 00:04:59,530 Let's delete out. 69 00:05:00,490 --> 00:05:03,000 And I think I'm going to change this title as well. 70 00:05:03,020 --> 00:05:06,580 Don't really need it to say some if we just want it to say units. 71 00:05:06,670 --> 00:05:07,090 Oops. 72 00:05:07,720 --> 00:05:08,320 Sold. 73 00:05:09,280 --> 00:05:16,400 I'm going to make this title slightly bigger and also bold, and let's make it dark green as well. 74 00:05:16,780 --> 00:05:22,360 And just for fun, let's add a little trend line in so we can see the trend of that data. 75 00:05:22,810 --> 00:05:26,320 Now, of course, you could go into a lot more detail about how you format your charts. 76 00:05:26,320 --> 00:05:28,870 But just for quickness, we're going to leave it just there. 77 00:05:29,860 --> 00:05:36,790 Now this is all well and good, but currently this chart isn't linked in any way, shape or form to 78 00:05:36,790 --> 00:05:38,920 the combo box over here. 79 00:05:39,910 --> 00:05:44,920 And what we ideally want is that when we put this chart on the dashboard and we switch between these 80 00:05:44,920 --> 00:05:47,470 different years, the chart is going to update. 81 00:05:47,770 --> 00:05:52,270 So how do we get this chart to link through to that combo box? 82 00:05:52,960 --> 00:05:55,990 Well, we have to think a little bit outside the box here. 83 00:05:56,410 --> 00:06:01,870 The way I'm going to do this is I'm going to use a very small pivot table, but I'm going to use it 84 00:06:01,870 --> 00:06:04,570 in a slightly different way to what we have been using them. 85 00:06:05,920 --> 00:06:11,560 So let's go back to our pivot tables data source and create ourselves a pivot table. 86 00:06:12,190 --> 00:06:16,900 We're going to create it from a table or range, and I'm going to place it on an existing worksheet 87 00:06:16,900 --> 00:06:24,610 because I want it to go onto the units sold worksheet and click on OK, now I don't want it over there. 88 00:06:24,640 --> 00:06:28,990 Let's just cut and paste this over here. 89 00:06:30,010 --> 00:06:34,600 Now, the only thing I want to display in this pivot table is the year. 90 00:06:35,260 --> 00:06:39,910 So I'm going to grab the year filled and I'm going to drop it into columns so that we have our years 91 00:06:39,910 --> 00:06:40,660 running across. 92 00:06:41,470 --> 00:06:44,950 What I'm also going to do is turn off these grand totals. 93 00:06:44,950 --> 00:06:47,830 We don't need those for what we're doing here now. 94 00:06:47,830 --> 00:06:52,270 Underneath my little pivot table, I'm going to create another index formula. 95 00:06:53,050 --> 00:06:57,220 I'm going to type in index and I'm going to index. 96 00:06:58,220 --> 00:07:05,480 The year's just here and for the road, no, we're going to go across to our calculations page and we're 97 00:07:05,480 --> 00:07:13,550 going to use this sale just here, a 12 F4 to lock that in place, close the bracket and hit enter. 98 00:07:14,690 --> 00:07:18,410 So now notice it's on 2018. 99 00:07:19,130 --> 00:07:30,080 If I select 2019 in here, that also updates and so does my charts because everything is linking through 100 00:07:30,470 --> 00:07:31,270 the chart. 101 00:07:31,280 --> 00:07:34,610 Data is coming from the calculations page. 102 00:07:34,610 --> 00:07:41,330 It's coming from this table and these values depend on whatever is in this cell over here. 103 00:07:41,870 --> 00:07:48,110 So when this changes, these values change and in turn, this chart changes as well. 104 00:07:48,530 --> 00:07:53,900 So I'm sure you can see that when it comes to designing dashboards that are a little bit more complex, 105 00:07:53,900 --> 00:07:56,210 it can get quite complicated. 106 00:07:56,480 --> 00:08:00,800 Now we're pretty much going to use this same process to create other charts. 107 00:08:01,370 --> 00:08:08,210 So what I'm going to do is I'm just going to copy my pivot table across to these other pages. 108 00:08:11,850 --> 00:08:17,760 And now let's create our second chart, and this one is going to be orders by product. 109 00:08:18,570 --> 00:08:22,950 So if we go back to our calculations page, I want to use this table just here. 110 00:08:23,520 --> 00:08:26,900 Now, I don't want to use the entire table to create my charts. 111 00:08:26,910 --> 00:08:28,850 I just want to use these two columns. 112 00:08:28,860 --> 00:08:31,290 I want the product and the number of orders. 113 00:08:32,010 --> 00:08:40,920 So if I select these two columns, go up to insert, and this time we're going to do Control X to cut 114 00:08:40,920 --> 00:08:43,890 it and I'm going to paste it over here. 115 00:08:44,010 --> 00:08:48,150 Control V and we can now go through and apply our formatting. 116 00:08:48,810 --> 00:08:51,360 So let's change this to a different color scheme. 117 00:08:51,900 --> 00:08:58,590 This time we are going to format the data series and we're going to make that donut hole size quite 118 00:08:58,590 --> 00:08:59,550 a bit smaller. 119 00:09:00,630 --> 00:09:03,120 Let's add some data labels. 120 00:09:03,570 --> 00:09:06,960 I'm going to make this donut chart a bit bigger. 121 00:09:07,170 --> 00:09:08,550 Let's move that down there. 122 00:09:09,000 --> 00:09:14,160 And I'm also going to move the position of this legend to the right hand side. 123 00:09:14,790 --> 00:09:18,990 And of course, you can just jiggle this around and position things wherever you see fit. 124 00:09:19,920 --> 00:09:24,130 Now, I think I'm also going to make these labels slightly bigger in bold. 125 00:09:24,360 --> 00:09:26,160 And let's make them white. 126 00:09:27,240 --> 00:09:33,060 Now, my title here is going to be number of orders by 127 00:09:38,160 --> 00:09:38,700 product. 128 00:09:39,120 --> 00:09:40,890 Let's do the final chart. 129 00:09:40,920 --> 00:09:43,770 This one is going to show the cost versus profit. 130 00:09:44,010 --> 00:09:45,960 And it's going to be a line chart. 131 00:09:46,590 --> 00:09:54,540 So this time from this little table, I want to have the product and then I want the costs and the profit 132 00:09:54,540 --> 00:09:58,350 included in my chart up to insert. 133 00:09:58,890 --> 00:10:02,820 Let's choose a line chart, and I'm going to choose this one just here. 134 00:10:03,960 --> 00:10:05,790 Control X to cut it. 135 00:10:05,940 --> 00:10:08,970 I'm going to place it on the correct tab. 136 00:10:11,550 --> 00:10:14,370 Let's drag this out, make this quite a bit wider. 137 00:10:14,610 --> 00:10:18,660 I'm going to move the legend up to the top. 138 00:10:20,360 --> 00:10:22,220 Let's give this chart a title. 139 00:10:24,250 --> 00:10:34,480 So we'll just say cost less is profit by product, and let's change the color scheme just to keep this. 140 00:10:35,760 --> 00:10:39,600 Similar to everything else, let's go for that green colour scheme. 141 00:10:40,110 --> 00:10:41,320 And that is pretty much it. 142 00:10:41,340 --> 00:10:46,800 We're now at the stage where we're ready to put everything together onto the dashboard. 13971

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.