All language subtitles for 18 - Index Match 1criterion V1 - lang_en

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic Download
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
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
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,000 --> 00:00:03,960 So, now we have builtin the year one values in our income statement, 2 00:00:03,960 --> 00:00:05,549 but as we move to year two, 3 00:00:05,549 --> 00:00:09,570 we quickly realize that it's not going to be so easy moving down the list. 4 00:00:09,570 --> 00:00:15,780 AVGO and year one were the very first row in our original data. 5 00:00:15,779 --> 00:00:17,609 But as we go further down, 6 00:00:17,609 --> 00:00:21,914 it becomes more challenging to hard-code in the row number. 7 00:00:21,914 --> 00:00:28,424 Because what if it was CSRA or year three for HPE ticker symbol? 8 00:00:28,425 --> 00:00:33,170 We want to match both of these criteria 9 00:00:33,170 --> 00:00:38,560 for the cell value to be pulled and placed into our dashboard. 10 00:00:38,560 --> 00:00:41,440 This is where the match function comes in handy. 11 00:00:41,439 --> 00:00:43,609 So, let's walk through one example. 12 00:00:43,609 --> 00:00:47,405 We're matching just one criteria, the ticker symbol. 13 00:00:47,405 --> 00:00:49,715 Again, it's the empty dashboard we're trying to fill, 14 00:00:49,715 --> 00:00:51,875 and this is the data we want to pull from. 15 00:00:51,875 --> 00:00:56,125 I've gone ahead and hidden the extra financial metrics that we were showing earlier. 16 00:00:56,125 --> 00:01:01,909 So, right now, we're trying to match just the AVGO ticker symbol, just one criteria. 17 00:01:01,909 --> 00:01:03,019 So to do that, 18 00:01:03,020 --> 00:01:06,245 I've replicated that in this worksheet here. 19 00:01:06,245 --> 00:01:09,020 So you can see we have the ticker symbol, 20 00:01:09,019 --> 00:01:12,060 I'm going to go ahead and hide this, and the total revenue. 21 00:01:12,060 --> 00:01:14,109 We're trying to, in our dashboard, 22 00:01:14,109 --> 00:01:18,530 select the value that meets at least this ticker symbol. 23 00:01:18,530 --> 00:01:21,805 So, we want the INDEX to, 24 00:01:21,805 --> 00:01:24,230 we don't want to hard-code the number one here. 25 00:01:24,230 --> 00:01:28,954 We just wanted to match it when the ticker symbol matches AVGO. 26 00:01:28,954 --> 00:01:33,500 So, we need to plugin the position for it. 27 00:01:33,500 --> 00:01:39,200 So, MATCH can return the number representing the position in the ticker symbol array. 28 00:01:39,200 --> 00:01:41,240 So this is the ticker symbol array. 29 00:01:41,239 --> 00:01:45,004 I'll go ahead and actually call it ticker_symbol. 30 00:01:45,004 --> 00:01:47,780 We'll look for a MATCH H2 here, 31 00:01:47,780 --> 00:01:48,995 that's the ticker symbol, 32 00:01:48,995 --> 00:01:52,050 ticker symbol_array is the one here, 33 00:01:52,049 --> 00:01:55,969 and we're saying if this match type value is one, 34 00:01:55,969 --> 00:02:01,655 MATCH will look for the largest value that is less than or equal to the lookup value. 35 00:02:01,655 --> 00:02:03,605 If MATCH type is zero, 36 00:02:03,605 --> 00:02:08,495 MATCH looks for the first value that is exactly equal to the lookup value. 37 00:02:08,495 --> 00:02:11,539 There is another MATCH type negative one that looks for 38 00:02:11,539 --> 00:02:16,144 the smallest value that is greater than or equal to the lookup value. 39 00:02:16,145 --> 00:02:19,495 I'm providing some example for this in the text box below. 40 00:02:19,495 --> 00:02:22,780 So, we're going go ahead in zero because we want MATCH 41 00:02:22,780 --> 00:02:26,509 to look for the position in this array, 42 00:02:26,508 --> 00:02:30,214 ticker_symbol array, that matches AVGO, 43 00:02:30,215 --> 00:02:32,659 which matches this condition that we're trying to meet. 44 00:02:32,659 --> 00:02:35,569 So, we referred to this lookup value. 45 00:02:35,569 --> 00:02:38,704 This is the lookup value highlighted in blue, 46 00:02:38,705 --> 00:02:43,730 ticker_symbol is actually referring to this ticker symbol right here, 47 00:02:43,729 --> 00:02:46,114 and zero is the condition we're trying to meet. 48 00:02:46,115 --> 00:02:47,620 Then we hit Enter there, 49 00:02:47,620 --> 00:02:49,830 it gives us the value one. 50 00:02:49,830 --> 00:02:52,290 Place this here so you can see the formula, 51 00:02:52,289 --> 00:02:55,155 but I had to do the Ctrl + Shift + Enter again, 52 00:02:55,155 --> 00:02:56,849 and this is the value of return. 53 00:02:56,849 --> 00:03:01,989 So, we want the value one to show up here inside the INDEX function, 54 00:03:01,990 --> 00:03:07,710 and that's why we just plugin whatever we take as a MATCH into the INDEX function, 55 00:03:07,710 --> 00:03:09,314 because it's looking for. 56 00:03:09,314 --> 00:03:13,210 Let me show you that. So, it's looking for the row number, 57 00:03:13,210 --> 00:03:16,855 and that row number's provided by the MATCH function. 58 00:03:16,854 --> 00:03:20,959 As you can see, the column number right here is the 59 00:03:20,960 --> 00:03:25,265 zero because we're saying stay within the total revenue array, 60 00:03:25,264 --> 00:03:32,459 match the very first value in terms of row number but stay within the zero column number. 61 00:03:32,460 --> 00:03:35,585 When we do this, it gives us this value. 62 00:03:35,585 --> 00:03:38,420 I've again placed it here so that you can see what 63 00:03:38,419 --> 00:03:41,719 the formula looks like and what it gives, 64 00:03:41,719 --> 00:03:46,694 and it's the same value that is given by having the MATCH function is there. 65 00:03:46,694 --> 00:03:50,099 So, we can put this MATCH function inside the INDEX function, 66 00:03:50,099 --> 00:03:52,159 and it tells INDEX which cell to pull 67 00:03:52,159 --> 00:03:57,270 the total revenue value from and it returns the value to us. 5724

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