All language subtitles for 17 - Index Function 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:02,205 Now let's see a simple example. 2 00:00:02,205 --> 00:00:04,800 I have already created the named array for 3 00:00:04,799 --> 00:00:07,695 the cells to correspond with the column headers. 4 00:00:07,695 --> 00:00:12,120 So, here we have year in the name box, 5 00:00:12,119 --> 00:00:15,838 we have total revenue, cost of revenue, 6 00:00:15,839 --> 00:00:18,105 SGAs, R and D, 7 00:00:18,105 --> 00:00:20,010 and other operating items. 8 00:00:20,010 --> 00:00:21,525 As part of index, 9 00:00:21,524 --> 00:00:22,904 this is what I want to do. 10 00:00:22,905 --> 00:00:28,695 I want to be able to pull for this particular ticker symbol, 11 00:00:28,695 --> 00:00:31,620 the appropriate total revenue, 12 00:00:31,620 --> 00:00:34,048 cost of revenue, SGA, 13 00:00:34,048 --> 00:00:37,274 R and D, and other operating items for year one. 14 00:00:37,274 --> 00:00:39,134 So, it shows up like this. 15 00:00:39,134 --> 00:00:42,750 So, keep in mind this is horizontal. 16 00:00:42,750 --> 00:00:44,340 It's the very first row. 17 00:00:44,340 --> 00:00:48,755 Each row indicating a different item in the financial statement, 18 00:00:48,755 --> 00:00:52,145 but we want to convert it to a vertical array. 19 00:00:52,145 --> 00:00:54,730 So, how do we go about doing that? 20 00:00:54,729 --> 00:00:58,349 So, I've placed all the formulas here so you can follow me along, 21 00:00:58,350 --> 00:01:00,439 and this is how we use the index. 22 00:01:00,439 --> 00:01:05,750 We've already defined the array from which we want to pull the values. 23 00:01:05,750 --> 00:01:07,750 This is how we want to be if we wanted, 24 00:01:07,750 --> 00:01:10,644 from this array, you want the very first value. 25 00:01:10,644 --> 00:01:14,899 From this array, we want the very first value to be 26 00:01:14,900 --> 00:01:19,190 pulled into each of these cells. So, this is how you do it. 27 00:01:19,189 --> 00:01:21,804 So, you'll say equal index. 28 00:01:21,805 --> 00:01:25,685 One way to do it is to select the array, 29 00:01:25,685 --> 00:01:30,265 but keep in mind that I've actually already named it. 30 00:01:30,265 --> 00:01:33,549 So, I'm going to actually just call it up. 31 00:01:33,549 --> 00:01:36,454 So, the way to call it up is you say, total. 32 00:01:36,454 --> 00:01:38,099 So, you start typing in the word, 33 00:01:38,099 --> 00:01:40,184 and it shows up with this icon. 34 00:01:40,185 --> 00:01:41,460 You can select that, 35 00:01:41,459 --> 00:01:44,609 and it puts that in the array parameter. 36 00:01:44,609 --> 00:01:46,025 Then for row number, 37 00:01:46,025 --> 00:01:47,935 we just want the very first row. 38 00:01:47,935 --> 00:01:50,379 We don't have a column specification, 39 00:01:50,379 --> 00:01:52,409 so because it's one array, 40 00:01:52,409 --> 00:01:54,659 we're going to say one for the row number, 41 00:01:54,659 --> 00:01:56,474 and we close the bracket. 42 00:01:56,474 --> 00:01:59,219 Keep in mind there's one final step. 43 00:01:59,219 --> 00:02:02,310 You have to Control, Shift, 44 00:02:02,310 --> 00:02:04,200 and Enter on the PC, 45 00:02:04,200 --> 00:02:05,710 and it puts the value in. 46 00:02:05,709 --> 00:02:10,280 I repeat the same for the rest of the cells. 47 00:02:10,280 --> 00:02:14,330 I start typing cost of revenue, one, 48 00:02:14,330 --> 00:02:16,430 and I press Control, Shift, 49 00:02:16,430 --> 00:02:19,610 Enter, and I believe it's the same on the mark. 50 00:02:19,610 --> 00:02:23,510 Index, gross, this is actually going to be 51 00:02:23,509 --> 00:02:28,789 our formula because this is revenue minus COGS, 52 00:02:28,789 --> 00:02:33,004 and it's blue because I prepopulated the blue format, 53 00:02:33,004 --> 00:02:35,674 because it's a calculation we're doing here. 54 00:02:35,675 --> 00:02:39,710 Then here, I do index SGA. 55 00:02:39,710 --> 00:02:42,335 I can select it from my name box, 56 00:02:42,335 --> 00:02:44,879 one, Control Shift Enter, 57 00:02:44,879 --> 00:02:47,264 and I keep going on to the other row, 58 00:02:47,264 --> 00:02:49,844 which is the other operating expenses, 59 00:02:49,844 --> 00:02:52,409 and finally to chip direct. 60 00:02:52,409 --> 00:02:54,449 For the total operating expenses, 61 00:02:54,449 --> 00:02:57,639 I just add up these three, 62 00:02:57,639 --> 00:03:03,634 and operating income is gross profit minus the total operating expenses, 63 00:03:03,634 --> 00:03:06,905 which gives us the operating income, or EBIT. 64 00:03:06,905 --> 00:03:10,199 So, this is how you do an index function. 4628

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