Teach Microsoft Office
Online Video Tutorials for Microsoft Office
Video Player Demo
User Testimonials
Easy to Follow and Great Content
Awesome tutorials. This is great work; thanks a lot for all of these tutorials, and at a great price. The tutorials are easy to follow and understand and are very valuable for me. Teachmsoffice.com has helped me a lot in terms of increasing my Excel skills and learning how to master Excel. Keep up the good work!
- Sarah M.

Thank you so much!
Thank you so much! My professor was giving me a hard time with this...so I told him I will just figure it out on my own and this site really helped me figure everything out!!
- Ms. R

Thank you and godbless
My text book really sucks and I'm very thankful that you have all of these tutorials. I finished my last two questions because of your site! Thank you and godbless.
- Rob V.

Amazing Videos
Just wanted to say that your videos are amazing. I'm watching them and they really help me understand. The way you explain and go through everything is amazing. Thank you soo much!
- Design X

Saved a Ton of Time!
You have just saved me so much time, I cannot thank you enough!
- L. J.

Thank You!
Thank you for sharing these important tips. Your voice is clear and the steps are clear. It is easy to follow. Thank you!
- Kent

Saved Me Time
Thanks for the tutorials, I never had to do this before today and I needed it done very quickly. These videos saved me time I didn't have!
- Mitchel S.

Thank You!
Thank you! Helped me so much!
- M. Clean

Excellent Tutor
I was just listening to the tutorial online and I must say that the tutor is doing an excellent job.
- D. B.

Sign Up to View Tutorials
Purchase Subscription

Search Results for Microsoft Office Training Tutorials

Bookmark and Share
This IF statement tutorial for VBA and macros shows you how to make a basic IF THEN statement in VBA. This tutorial covers every step of creating an IF statement in VBA. The type of IF statement covered here is called a Block IF statement. This type of IF statement allows users to put as much code as they want or need within an IF statement. Also, this tutorial covers the comparison operators that you can use within the condition in an IF statement. This is a great tutorial for anyone who needs to learn how to use an IF statement in VBA.
Tutorial Length (mm:ss): 11:27
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros shows you how to create an IF THEN ELSEIF ELSE statement in VBA. This is the most complex and also complete version of an IF statement in VBA. This type of IF statement will allow you to check multiple different conditions with IF and ELSEIF and also to run code if all of the conditions within the IF statement evaluate to false. This tutorial shows you one of the most useful pieces of code in VBA and will allow you to add logic to your code in a versatile manner. The IF THEN ELSEIF ELSE statement in VBA is covered thoroughly in this tutorial.
Tutorial Length (mm:ss): 10:30
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros will show you how to test for multiple conditions at once within an IF statement in VBA using AND. This method will allow you to prevent an IF statement from running unless multiple conditions evaluate to true. Using AND is a great way to improve the usability and power or logic of your IF statements in VBA.
Tutorial Length (mm:ss): 7:48
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros shows you how to create a one line IF statement in VBA. This allows you to streamline your code by allowing you to make small and useful IF statements, where needed, without having to disrupt code structure with a multi-line or block IF statement. This method will allow you to create a basic IF statement as well as an IF THEN ELSE statement on one line in VBA. This is a really helpful technique to learn for coding IF statements in VBA.
Tutorial Length (mm:ss): 8:04
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros shows you how to use OR in order to test for multiple conditions at once within an IF statement in VBA. This method allows you to put many conditional tests in the condition for an IF statement. Using OR, you will be able to create more powerful and useful IF statements. This is a great VBA feature to learn in order to improve your code.
Tutorial Length (mm:ss): 7:43
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros shows you how to make and use an IF THEN ELSE statement in VBA. This will allow you to create an IF statement that will do something if a condition evaluates to true and do something else if the condition evaluates to false. This is one of the building blocks for IF statements in VBA and macros.
Tutorial Length (mm:ss): 10:15
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros shows you how to create an IF THEN ELSEIF statement in VBA. This will allow you to create an IF statement that will be able to check for multiple conditions and then run different code based on whichever condition evaluates to true. This is similar to, but not completely the same as, putting multiple contiguous IF statements within your macro code. This is a slightly more advanced version of an IF statement in VBA but is covered step by step in this tutorial.
Tutorial Length (mm:ss): 16:03
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros shows you how to use AND with OR within the conditional test in an IF statement in order to test for multiple conditions at once. Basically, this will allow you to test multiple values at once in order to determine if an IF statement should be run. This tutorial will show you how to add more logic to your logical statements and code in VBA.
Tutorial Length (mm:ss): 6:56
Microsoft Office Program: Microsoft Office Excel
This VBA and macro IF statement tutorial shows you how to use complex conditions within IF statements in VBA. You will learn how to use functions, AND, OR, and values from cells within the conditional test of an IF statement. This tutorial shows you the diversity of values that you can test for using an IF statement and will help you to add better logic to your VBA code.
Tutorial Length (mm:ss): 9:00
Microsoft Office Program: Microsoft Office Excel
Learn when you should use a VLOOKUP function instead of an IF statement in Excel. This tutorial teaches you how to save time and headaches by using a VLOOKUP function instead of an IF statement and also covers why people so often use IF statements in place of VLOOKUP functions.
Tutorial Length (mm:ss): 7:06
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros provides an overview of the syntax for IF statements in VBA. This tutorial covers basic block IF statements as well as IF statements with Else and ElseIf. This tutorial covers only the syntax for an IF statement in VBA.
Tutorial Length (mm:ss): 5:22
Microsoft Office Program: Microsoft Office Excel
IF statement syntax and usage overview and introduction in Excel. The IF statement is one of the most important functions in Excel; it is used to make decisions and is part of the logical functions in Excel. This function essentially makes decisions based on input. For instance, if A > B do this.
Tutorial Length (mm:ss): 7:53
Microsoft Office Program: Microsoft Office Excel
This IF statement tutorial for VBA and macros shows you how to nest multiple IF statements within each other. There are many simple and complex examples of nesting IF statements in this tutorial. This includes nesting small block IF statements to nesting IF ELSEIF and IF ELSEIF ELSE statements in VBA. This tutorial covers everything you need to know about nesting IF statements in VBA and macros.
Tutorial Length (mm:ss): 10:52
Microsoft Office Program: Microsoft Office Excel
This tutorial shows you how to use the IIF or Immediate IF function in VBA and macros. This is a VBA function that behaves like an IF statement. The benefit of using this function is that it is easy and quick to implement and it will make some decision processes easier to create. However, there are some things to watch out for when using this function, and all of that is also covered in this tutorial.
Tutorial Length (mm:ss): 12:12
Microsoft Office Program: Microsoft Office Excel
This tutorial teaches you how to use the While Loop, including a detailed explanation of the While Loop syntax. This type of loop is sometimes referred to as the While Wend Loop and is the most basic type of loop in VBA. This is a step by step introduction to the usage of this loop and, in addition, the comparison operators that are used in loops. After watching this tutorial, you will be able to make your own While Loops in VBA.
Tutorial Length (mm:ss): 8:51
Microsoft Office Program: Microsoft Office Excel
This tutorial shows you how to exit out of a Do Loop in VBA. You will learn how to manually cancel or stop a loop or macro from running once it has started and also how to include code within the loop that will prevent the loop from running infinitely by exiting or stopping the loop.
Tutorial Length (mm:ss): 5:06
Microsoft Office Program: Microsoft Office Excel
This tutorial shows you how to use a Do Until Loop in VBA and Macros. There are two basic types of Do Until Loops – one where the condition is checked at the beginning of the loop and another where the condition is checked at the end of the loop – and this tutorial covers both of these types of loops. After viewing this tutorial, you will know how to make a Do Until Loop.
Tutorial Length (mm:ss): 11:11
Microsoft Office Program: Microsoft Office Excel
This tutorial shows you how to use a Do While Loop in VBA and Macros. The Do While Loop is one of the most widely used loops in VBA and Excel and is relatively easy to understand and use. There are two basic types of Do While Loops – one where the condition is checked at the beginning of the loop and another where the condition is checked at the end of the loop – and this tutorial covers both of these types of loops. You will know how to make your own Do While Loops after viewing this tutorial.
Tutorial Length (mm:ss): 10:00
Microsoft Office Program: Microsoft Office Excel
Check multiple values at once using IF statements and the AND and OR logical functions in Excel. AND and OR functions allow you to check multiple logical conditions at once. This technique allows you to avoid nesting IF statements and can increase the power and usability of your IF statements. The IF, AND, and OR functions are all logical functions in Excel.
Tutorial Length (mm:ss): 6:49
Microsoft Office Program: Microsoft Office Excel
 
Official PayPal Seal SSL
Join TeachMsOffice.com on Facebook
Follow TeachMsOffice.com on Twitter


Microsoft Office Tutorials | Office Tutorials - Excel Word PowerPoint | HD Tutorial Video Player Overview | About TeachMsOffice.com

TeachMsOffice.com provides HD Online Video Tutorials and Training for Microsoft Office programs such as Excel, Word, and PowerPoint. We use a specialized video player interface to teach a vast list of Microsoft Office Tutorials and we add new tutorials on a weekly or monthly basis.