Say Goodbye to IF Statements in Excel with SWITCH

  Рет қаралды 376,093

Teacher's Tech

Teacher's Tech

Күн бұрын

This tutorial will show how to use the SWITCH function in Microsoft Excel. We start by exploring the basics of the IF function, a staple in Excel's formula arsenal, to ensure a solid foundation. Then, we introduce the SWITCH function - a lesser-known yet incredibly potent tool in Excel. We'll compare these two functions side-by-side, illustrating how SWITCH can provide cleaner, more readable formulas, especially in scenarios with multiple conditions.
Key highlights of this video include:
A comprehensive overview of IF and SWITCH functions.
Practical examples demonstrating the advantages of SWITCH over nested IF statements.
Step-by-step guidance on how to implement the SWITCH function in real-world scenarios.
Tips for enhancing formula efficiency and readability in your Excel projects.
By the end of this tutorial, you'll be well-equipped to make the switch (pun intended!) from cumbersome IF statements to the elegant simplicity of the SWITCH function. Whether you're managing data, analyzing reports, or love to streamline your Excel workflows, this video is your gateway to next-level Excel proficiency.
See why XLOOKUP is Superior to SWITCH: • Why XLOOKUP Reigns Sup...
Practice File: go.teachers.tech/SWITCH_FUNCTION
Timestamps:
0:00 Introduction
0:20 Replacing a Nested IF statement with SWITCH
3:21 Using an Operation with the SWITCH function
5:30 Using an IF statement with a nested SWITCH function

Пікірлер: 394
@Gorman-84
@Gorman-84 Ай бұрын
I am the master of nested IF statements. You have ruined my life. Just kidding. This is great. I cannot wait to replace all of my nested IFs. Thank you.
@AlThePal78
@AlThePal78 26 күн бұрын
you can use =IFS() as well so they don't have to be nested and it looks more like this switch statement
@highestbuilding
@highestbuilding 3 ай бұрын
I didn't know about this function. But after watching your video, I still prefer using tables with the xlookup-function to keep things as variable as possible.
@jmacdono
@jmacdono 3 ай бұрын
How can you use XLOOKUP to insert values based on criteria in other cells? SWITCH has a different function it seems to me.
@davescrams
@davescrams 3 ай бұрын
@@jmacdono You create a table with values that correspond to the translation. Consider the second example. You could create a separate table with a column for region and another column for the associated commission percentage. In the original table, you use xlookup to lookup the region and return the commission percentage. This approach is much easier to manage if the number of categories is large or likely to change.
@c17nav
@c17nav 3 ай бұрын
@@jmacdono Microsoft's web site help is a great resource for all of Excel's functions. Heaven help you should buy one of the many books available.
@jakubklima9002
@jakubklima9002 3 ай бұрын
Exactly what I tought while watching the video.
@ramilaquino5350
@ramilaquino5350 3 ай бұрын
based on experience, i could say the same, using a table and xlookup is better as it is dynamic. works same way as a join in SQL, and it handles missing results much better.
@jyotikumarrout7323
@jyotikumarrout7323 3 ай бұрын
Wow, this tutorial on using the SWITCH() function is incredibly helpful! I've always struggled with nested IF statements, but this alternative seems much more efficient and organized. Thanks for breaking it down step by step and providing clear examples. Can't wait to start implementing this in my own projects!
@RichardJJennings
@RichardJJennings Ай бұрын
At 1:30 I realised this is the DECODE function in SQL. Super handy and I no longer need to do those awful nested IFs. Thank you
@firozmakrani
@firozmakrani 3 ай бұрын
Using excel for decades but today I learned about switch. Thanks ❤
@nathanh9935
@nathanh9935 3 ай бұрын
I always did a vlookup function with a table to change a number to a rating. Also, I find that it is still pretty clean to use 2 digits concat in another table to change a double input into a single output. The formulas are clean that way too. Still, I'm glad to know the switch function exists.
@donniemcgee7523
@donniemcgee7523 3 ай бұрын
This is an extremely helpful tutorial. Thank you so much for sharing it. You did a great job of laying out and explaining the material. Thank you, again!
@garciarogerio6327
@garciarogerio6327 27 күн бұрын
I use SWITCH it in Power Bi. I normally use IFS to avoid nested if statement. Great one!
@eng.halmatmuslih4714
@eng.halmatmuslih4714 3 ай бұрын
True “IF” is not handy in this situation, but you can use”IFS” function, same results and neat as much as switch. Thanks for the explanation, another function is added to the line, helpful.
@alexk7467
@alexk7467 2 ай бұрын
That's true, but the only problem with "IFS" is you must have a value which is true. So if any value doesn't match any in the "IFS" statement the statement will fail.
@sql638
@sql638 2 ай бұрын
@@alexk7467You can insert as last condition a ever-true one, so a condition without any restriction, simply ……;TRUE”;”Value you desire”). So if all the previous conditions fail, this one will apply
@agwosdz1981
@agwosdz1981 Ай бұрын
For that, you can encapsulate the function with IFNA or IFERROR :)@@alexk7467
@TheJaswald
@TheJaswald Ай бұрын
@@alexk7467 You can set the final test value to "TRUE()" then the result: =IFS(test1, result1, test2, result2, ..., TRUE(), result_n)
@yelnatsch517
@yelnatsch517 19 күн бұрын
@@alexk7467the very last statement in the IFS could just be 1 then set the default value. Example: ifs(case1, “A”, case2, “B”, case3, “C”, 1,””). If all cases fail, the default will be “”.
@RemofRenaissance
@RemofRenaissance 3 ай бұрын
Thanks for this, I like the structure of the formula (more so than “IF” as simpler for those nested functions as you’ve also highlighted). As others have said I prefer reference tables and lookups for most instances but I will definitely use the “SWITCH” formula as have many use cases like dynamic formulas to work out year to date values. Great to learn something new 👍🏾
@Pattythomas5
@Pattythomas5 2 ай бұрын
I have not heard of the switch function...THAT was excellent! Thank you!
@Anarcho-Communist895
@Anarcho-Communist895 3 ай бұрын
You explain things very well and it's easy for me to learn from your videos despite my adhd. Thank you!
@TeachersTech
@TeachersTech 3 ай бұрын
You’re welcome!
@shadeburst
@shadeburst Ай бұрын
Happy days! This is the honorable descendant of the CASE statement in good old FoxPro. Well done MS!
@colinubeh1180
@colinubeh1180 2 ай бұрын
Hey! this is simpler than nested if function. THANK YOU!
@tomcoleman8702
@tomcoleman8702 3 ай бұрын
Thank you KZbin algo! I actually can use this Monday at work... completely useful and relevant. Very nice examples!
@TeachersTech
@TeachersTech 3 ай бұрын
Great to hear! Thanks!
@amystiksma1116
@amystiksma1116 3 ай бұрын
This was amazingly useful! I have so many nested ifs in a budget spreadsheet, and it makes it so hard anytime I need to change things. Usong switch instead is going to make it so much easier! Thanks so much!
@TeachersTech
@TeachersTech 3 ай бұрын
You're so welcome!
@daonguyen521
@daonguyen521 3 ай бұрын
Very helpful teacher. This is the 1st time I know about this function
@philipperiondel3093
@philipperiondel3093 3 ай бұрын
Actually, it is the equivalent of Select case in VBA. Thanks a lot, I did not know this function existed in Excel. It would have saved me a lot of time if I had known it sooner.
@liquidapathy82
@liquidapathy82 3 ай бұрын
Absolutely excellent info. I want to try it on some spreadsheets that have some complex nested if statements
@sparacin
@sparacin Ай бұрын
Excellent. I already have a couple of work cases that can benefit from this SWITCH function!
@PlantBasedPietro
@PlantBasedPietro 3 ай бұрын
Never heard of the Switch function. Thank you Jaime!!! :)
@TeachersTech
@TeachersTech 3 ай бұрын
You're welcome!
@Akulion1
@Akulion1 9 күн бұрын
Wow what a time saver! Truly good by nested IFs lol thanks for sharing!!
@wahas2752
@wahas2752 3 ай бұрын
Thank You. This will make my sheets so less complicated now.
@nobodynobody1235
@nobodynobody1235 2 ай бұрын
With the nested if like this, using a reference lookup table is ideal. When I use if statement, I mostly use it as argument so the formula will do a different calc
@terjidjurhuus1917
@terjidjurhuus1917 3 ай бұрын
I use Switch in PowerShell all the time, but funnily it never occurred to me that it exists in Excel. Really useful, thanks!
@infamous8541
@infamous8541 3 ай бұрын
switch is also available in many other programming languages
@Pronellyllon
@Pronellyllon 3 ай бұрын
Thank you for this video. While I am known as the Excel genius at my work, I wasn't aware of the Switch function. I am sure I'll be able to have a lot of fun with this function in the future
@rlsbdog
@rlsbdog 3 ай бұрын
It's easier, quicker and more dynamic to use vlookup (or xookup) or index/match to a reference table. For "No Rated", you can wrap your function in an IFERROR.
@Pronellyllon
@Pronellyllon 3 ай бұрын
@@rlsbdog I don't think they have the exact same purpose. The lookups and index/match functions are referring to a singular cell. In one of my Excel-tables, I have a sumifs function in which I would want it to select another column based on the value of another cell. In this case, I think the switch function fits better.
@danguee1
@danguee1 4 күн бұрын
@@Pronellyllon switch function is inflexible and undynamic
@angelgeorge7629
@angelgeorge7629 3 ай бұрын
This is AWESOME!!!! Was able to simplify so so soooooo many IF statements in a spreadsheet I am working on.
@TeachersTech
@TeachersTech 3 ай бұрын
Glad it was helpful!
@leovanhorrik9526
@leovanhorrik9526 3 ай бұрын
Thank you very much. I didn't know about this formula but will definitely use it in the future.
@TeachersTech
@TeachersTech 3 ай бұрын
Glad it was helpful!
@robertdufour2456
@robertdufour2456 3 ай бұрын
Thank you for all of your help through the years!
@TeachersTech
@TeachersTech 3 ай бұрын
You're very welcome!
@silviopoggi8193
@silviopoggi8193 3 ай бұрын
So very helpful! Excellent presentation regarding a function I never heard of...
@TeachersTech
@TeachersTech 3 ай бұрын
Glad it was helpful!
@troelstrc
@troelstrc 3 ай бұрын
Thank you for this - I understand that this video is about the function switch. But for efficiency and future adjustments, I would put all the values into 1 or 2 tables and use the strengths of xlookup to return the desired results, instead of hardcoding it into a formula.
@TeachersTech
@TeachersTech 3 ай бұрын
I would agree that.
@Ian-gf8id
@Ian-gf8id 3 ай бұрын
@troelstrc Exactly. In this example a simple table of corresponding data (Performance Score / Performance Rating) can be used for multiple purposes including the source for Data Validation List (i.e. the Performance Rating cell range as a drop-down menu) and in one's preferred Lookup formula. Hard-coded data in formulae can be very restrictive, and make back-tracing errors and amendments very difficult. I avoid hard-coded data in formulae wherever possible.
@marklutz5837
@marklutz5837 3 ай бұрын
Recently retired, worked with Excel for years and didn't know about switch. Looks very handy, can think of many times I would have chosen that instead of the clumsy "if" statements. Thanks.
@TeachersTech
@TeachersTech 3 ай бұрын
I’m glad you found it useful!
@tomjones1502
@tomjones1502 3 ай бұрын
SWITCH is a new function not find in older version of excell
@anggaraw
@anggaraw 2 ай бұрын
​@@tomjones1502 This function only in 365 right?
@tomjones1502
@tomjones1502 2 ай бұрын
No, SWITCH function was added in year 2016, in excel 365
@tomjones1502
@tomjones1502 2 ай бұрын
Switch function is in Excel 2019 and 365 (not sure but 2021)
@athar786100
@athar786100 3 ай бұрын
Great examples! I had never heard of switch.
@jasonjackson4555
@jasonjackson4555 3 ай бұрын
I love switch(). I told my analyst to try it a year ago and he cleaned up some complex sheets with it.
@TeachersTech
@TeachersTech 3 ай бұрын
That's awesome!
@Daltonpat
@Daltonpat 3 ай бұрын
Like most reactions i would probably use xlookup and a table. I do see an advantage when you are using numbers and letters when searching. I will test the speed of switch vs xlookup on a large number of records. Thanks for the video!
@apoorvasgala
@apoorvasgala 2 ай бұрын
Hi ! Nice video. Very informative about Switch function. Honestly speaking I didn't knew about this until now. Thanks for sharing knowledge. I read many comments below about usability of this function and suggestions about instead use xlookup, index match and other various function. They may be right in their opinion as xlookup, index are very powerfull. BUT, this tutorial is about Switch function and not about finding alternatives to if function or switch function. See, when these powerfull functions were not available we used to use if function very largely. But now with advancements in MS Excel we get so many new functions with mind blowing capability. It may so happen that one day there would be better function available then xlookup! Who knows. So I would stick to commenting on Switch function and its usability, quality of the video, quality of content of video like language and graphics used, explanation done, example shown and discussed rather then speaking of alternative to switch function. Overall very interesting and informative video.
@warriorlink8612
@warriorlink8612 10 күн бұрын
Thanks for the demo. I can see some scenarios where this could help.
@DB-nl9xw
@DB-nl9xw 3 ай бұрын
thank you for sharing the knowledge
@prabhakarrao4922
@prabhakarrao4922 Ай бұрын
Brilliant - Thanks for sharing. Really appreciate your work. Kind Regards
@scottgardner7318
@scottgardner7318 3 ай бұрын
I have not seen this function. Brilliant! TY
@wv1138
@wv1138 Ай бұрын
Never used switch. Liked and subscribed. Good input.
@justdontJD
@justdontJD 15 күн бұрын
I create so many complicated spreads with very long IF statements, the switch function is going to cut my work in half. Thank you for sharing.
@goingvenus5603
@goingvenus5603 3 ай бұрын
Very interesting and well-presented. Thanks!
@aceofdatabase
@aceofdatabase 3 ай бұрын
Knew of switch functions generally... Had no idea it was in Excel. How handy.
@larrywill464
@larrywill464 Ай бұрын
Great function! Thanks a lot, I didn't know about this
@kurtcpi5670
@kurtcpi5670 3 ай бұрын
I've used "switch" coding in C for 40 years, but I didn't know Excel had that function. I don't know the maximum number of close brackets I've ever had in a nested IF formula, but at some point I usually opted to just switch to a custom VB function. This definitely simplifies things when comparing simple values. I'll have to dig a little deeper to see if it can be used to return a value using calculations/formulas as criteria.
@pandharinathjoshi6565
@pandharinathjoshi6565 3 ай бұрын
Very neat explanation sir💐🙏
@johnbufton1487
@johnbufton1487 8 күн бұрын
Excellent, I shall using it. Thanks!
@robj5780
@robj5780 2 ай бұрын
Didn't know about the switch, thank you, but would also not use it in these instances as it just causes more maintenance work later on. Some reference table / lookup will make it much easier to maintain if situations change.
@goodgollywally
@goodgollywally 11 күн бұрын
Thank you so much. I loved it.
@michaelpostell4053
@michaelpostell4053 3 ай бұрын
Never heard of this. Thanks for letting us know. (And for your other tips on other posts).
@TeachersTech
@TeachersTech 3 ай бұрын
So glad you found useful! Your welcome.
@geoffphil
@geoffphil 3 ай бұрын
Brilluant. Would have saved me using hard to match brackets and nested if statements as well as vlookup.
@stuartbrown3859
@stuartbrown3859 Ай бұрын
Awesome Tutorial, so much easier.
@quench100
@quench100 3 ай бұрын
It's good for Example 2 and 3 where the values are Text, but for Example 1 I would use CHOOSE, nested within an IFERROR statement to get the Not Rated result.
@fssacko
@fssacko 4 сағат бұрын
Great thank you lot Mrs Teacher's Tech
@adetone3252
@adetone3252 Ай бұрын
Much clearer than using multiple in-line ifs. I hope the next MS step is to get away from inline functions to make it more readable and easier to debug.
@lawon01
@lawon01 26 күн бұрын
This helped alot thank you!!!
@albertokusmic9239
@albertokusmic9239 3 ай бұрын
great, did not know about it, thanks for sharing!
@svause
@svause 8 күн бұрын
Awesome! I'd gently suggest the next step would be to use lambda() to call the switch statements so that there's only one version of the switch floating around in the examples, rather than multiple copies. Yes?
@mrewan6221
@mrewan6221 3 күн бұрын
Yes, this would encourage me to use SWITCH. I really don't like having thousands of copies of the same formula with hard-coded values. The alternative is to write a VBA function (which I often do). Or go back to a standard VLOOKUP or INDEX(MATCH()).
@JoeLoffredo
@JoeLoffredo Ай бұрын
I use CHOOSE for similar situations, but this is useful too.
@rudycramer225
@rudycramer225 3 ай бұрын
Nice function. I can use this. Will save a lot of hassles.
@caiopjv
@caiopjv 3 ай бұрын
Excelent and very useful! Thanks
@salokin1
@salokin1 2 ай бұрын
A small two column, five row table referred to by the VLOOKUP function would be better in my opinion. Descriptors could be changed and immediately take effect throughout the sheet without changing the formula on every single line. But thanks for adding to my knowledge by describing the SWITCH function, which is new to me.
@74Gee
@74Gee 3 ай бұрын
What an excellent video! For me I only use switch when a vlookup table won't do the job (like when a default is required). The reason for this is a vlookup table lets you put all of the values on the sheet, instead of in a function and other formulas can use the same values. I tend to make a named reference for anything that's in a vlookup too, so I know not do delete it by mistake and having it easily available in any sheet :)
@brdrnda3805
@brdrnda3805 Ай бұрын
With XLOOKUP you have a default - to me, the SWITCH function looks pretty useless. What I'd like to have would be a CASE function - CASE(expression1, value1, expression2, value2, ..., default_value)
@laurencesyeng6182
@laurencesyeng6182 Ай бұрын
@@brdrnda3805 I believe the SWITCH() is the same as CASE().
@brdrnda3805
@brdrnda3805 Ай бұрын
@@laurencesyeng6182 Just compare Excel's SWITCH function with the CASE statement proposed by me. It's different.
@radsan3006
@radsan3006 Ай бұрын
Terrific, very impressive! Seeing as you know what you're talking about, and you make things very simple, I was just wondering if you could do a different video which I haven't found anywhere. This deals with inventory and sales, where each item has multiple colors. It would be great to show how to subtract a certain color from the inventory when a sale is made in the sales tab without listing each item multiple times per item. Just a suggestion. 😇
@alexrosen8762
@alexrosen8762 3 ай бұрын
Extremely well explained and perfect real life examples
@ExcelTutorials1
@ExcelTutorials1 3 ай бұрын
I love the SWITCH function!!! =)
@leandratel2466
@leandratel2466 3 ай бұрын
SWITCH is nice, but I'm more a fan of IFS. Nice video ❤🙏🏽
@ARIES9327
@ARIES9327 Ай бұрын
ahhh saved so much time ! amazing!
@HeroZaki_
@HeroZaki_ 3 ай бұрын
I just heard about it now. Thanks🌹
@carlosmiguel9733
@carlosmiguel9733 Ай бұрын
Em português essa função é chamada de PARÂMETRO. Excelente!
@WiFiJeremy
@WiFiJeremy Ай бұрын
Pretty cool. I didn't know about this one.
@Matsobane-tc6ii
@Matsobane-tc6ii 28 күн бұрын
Excellent formula to save time
@davethorpe5947
@davethorpe5947 3 ай бұрын
Very useful! Thanks!
@sandydsa
@sandydsa 3 ай бұрын
I hav never used Switch before. But I use IFS a lot. I see that this solves what's missing with IFS, which is the ELSE part.
@charlesotstot63
@charlesotstot63 3 ай бұрын
With IFS, you can use "TRUE" as your final condition with a value to cover when all conditions are false...
@rchsuccesspartnersllc155
@rchsuccesspartnersllc155 Ай бұрын
Nice- I didn't know... Thanks
@karenmackstewart
@karenmackstewart Ай бұрын
I have been using Excel since 1995 and am always excited to learn new things. For those saying rather use a lookup table - perhaps the example was a bad one. There are many times when we DO use If statements and I can see the value of using SWITCH instead - it is much neater and clearer for editing later. My only constructive feedback is that the title of this video is misleading. The 3rd example shows how IF statements still have value. 🙂
@miransh
@miransh 14 күн бұрын
Liked the innovative video, thanks for the info. In the last example you still made use of IF statement, so how do you say goodbye to IF? Can we do last example without using IF? Thanks for elaborating.
@thatguyvince8767
@thatguyvince8767 3 ай бұрын
It may be useful for one-off small tables, but for anything larger or repeatable, I'd use the IFERROR and VLOOKUP functions and a separate tab with the reference data (using named ranges for the data areas). Doing that, I'd be able to add to the list of selection items very easily and the data in the entire table change without writing a really long cell formula nor having to update the cell formula once I needed to update my choice criteria.
@yousefabdelsamie5983
@yousefabdelsamie5983 2 ай бұрын
Perfect, thank you
@artnace
@artnace 3 ай бұрын
Never heard of it but will try it.
@danguee1
@danguee1 4 күн бұрын
Just use xlookup instead with a table. More dynamic and flexible I think. But anything that gets rid of nested IFs is an improvement
@clsanchez77
@clsanchez77 3 ай бұрын
First time seeing the switch function and I see its potential. However work for me using the switch functions in these applications and Ill probably fire you for hardcoding tabular data in a formula instead of building a named table and using reference functions.
@stuartc6303
@stuartc6303 3 ай бұрын
Never heard of it before tbh. Looks useful.
@rameshhariharan2623
@rameshhariharan2623 2 ай бұрын
Sir this is great
@realnohat
@realnohat 3 ай бұрын
Looks great! I'm guessing you can nest v(x)lookup or sumifs in there as well?
@stevenflax
@stevenflax 3 ай бұрын
Great tip, never heard of Switch. Seems like the list values need to be plugged in manually...any way to reference to the values held in a table?
@md.moslehuddinuddin4077
@md.moslehuddinuddin4077 3 ай бұрын
It's excellent! thank you. From Dhaka, Bangladesh, Md. Mosleh Uddin
@sreejithvikram1818
@sreejithvikram1818 3 ай бұрын
Thank you so much...this looks to be a really useful function...I am going to change all my IF function formulas today. Out of curiosity, can you let me know if there is any situation where IF would be better than SWITCH?
@TeachersTech
@TeachersTech 3 ай бұрын
You're welcome! IIF is better suited for scenarios requiring complex logical tests that involve AND, OR, NOT, or a combination of these. SWITCH does not directly support these without nesting additional functions, making IF a clearer choice for such conditions. Another would be you can perform different calculations or apply different formulas in the true and false parts of an IF statement, which might be more cumbersome with SWITCH. But it's certainly work a think each time you plan an IF statement.
@raylachman8101
@raylachman8101 2 ай бұрын
thank you sir ‼️👍
@splendid1963
@splendid1963 3 ай бұрын
👍excellent. Very useful. Thanks
@x4ms
@x4ms 2 ай бұрын
Thank you!
@justjonoutdoors
@justjonoutdoors 2 ай бұрын
I use switch in C programming - didn’t know it was available in Excel! Gonna do some refactoring!!!
@geerliglecluse5297
@geerliglecluse5297 3 ай бұрын
You can also do this with a lookup function.
@bxniels0
@bxniels0 3 ай бұрын
I heard of it recently. In the example I thought I could use it for, I was testing multiple sizes. I had to use IFS as my understanding is in the SWITCH function, the expression is being tested being equal (=), or exact, to each possible value. Where as in the IFS function, a logical expression is being used, such as B2 > (greater than) 1024^3 (TRUE?), B2 > 1024^2 (TRUE?). etc... I do like how SWITCH has a default when no condition is met.
@kelvinteoh9058
@kelvinteoh9058 3 ай бұрын
I didn't know about this function. It is definitely far superior than if but seems marginally simpler than IFS which I love..
@storminshadow
@storminshadow 2 ай бұрын
never head of SWITCH, but in all the examples I would have used a table for the return values and then used xlookup to get the values. Doing so I can change the return values without having to edit a formula.
@MrHackmed
@MrHackmed 3 ай бұрын
This is excellent
@StanEby1
@StanEby1 Ай бұрын
Love it.
@MaydayAggro
@MaydayAggro 2 ай бұрын
you can also use ranges as your values and results, if you use TEXTJOIN("",TRUE,IFERROR(SWITCH(),"")) because the "" in IFERROR returns blanks for the errors, and TRUE in TEXTJOIN() ignores those blanks. For example: =TEXTJOIN("",TRUE,IFERROR(SWITCH(A6,L2:L6,M2:M6),""))
10 Excel Formulas That Will Set You Apart (Cheat Sheet)
18:04
MyOnlineTrainingHub
Рет қаралды 117 М.
This ~NEW~ Excel Function is Shockingly Powerful!
9:37
Chandoo
Рет қаралды 226 М.
Dapatkan APA PUN YANG ANDA INGINKAN dengan GADGET ini #shorts
00:11
Gigazoom Indonesian
Рет қаралды 13 МЛН
【獨生子的日常】让小奶猫也体验一把鬼打墙#小奶喵 #铲屎官的乐趣
00:12
“獨生子的日常”YouTube官方頻道
Рет қаралды 103 МЛН
Excel Battle: CHOOSE vs SWITCH
11:00
Excel University
Рет қаралды 14 М.
10x Your Excel With This New AI Formula
11:48
Kenji Explains
Рет қаралды 142 М.
Highlight Active Cell & Row in Excel with Click
15:44
Louis Deconinck
Рет қаралды 11 М.
The Mistake Almost EVERY Excel User Makes (Free File)
10:16
MyOnlineTrainingHub
Рет қаралды 124 М.
2 Awesome Tips on How to Use the SWITCH Function in Excel
10:10
BI Gorilla
Рет қаралды 3,4 М.
Pros Use This Technique to Avoid PivotTables
6:38
MyOnlineTrainingHub
Рет қаралды 100 М.
Stop using VLOOKUP in Excel. Switch to INDEX MATCH
11:05
Excel Level Up
Рет қаралды 2,2 МЛН