Formulas: Index, Match, and Indirect

Size: px
Start display at page:

Download "Formulas: Index, Match, and Indirect"

Transcription

1 Formulas: Index, Match, and Indirect Hello and welcome to our next lesson in this module on formulas, lookup functions, and calculations, and this time around we're going to be extending what we talked about last time with lookup functions, and looking at sort of a different variation on lookup functions. Last time around we've looked at VLOOKUP and HLOOKUP, and saw how you could basically look up the value, and match it to something in the left-most column of a table or the top-most row, and then go down a certain number of rows or to the right a certain number of columns, and then find something. And this time around we're going to be focusing on two other related functions called INDEX and MATCH. Now the difference between these and the other lookup functions is that you do not need to know the position of the row or column in advance. You also don't need to go from left to right or from top to bottom, so in general they're a lot more flexible then VLOOKUP than HLOOKUP. [01:00] The tradeoff is that they're a bit more difficult and time-consuming to write. But really all things considered, they have a lot of advantages, not just this. Arguably they're faster in some cases, because excel doesn't recalculate them as frequently, when you're manipulating spreadsheets. So if you're working with a massive data set, index and match tend to be the way to go. Now in addition, we're also going to take a look at INDIRECT and ADDRESS. These are two functions that a lot of people don't know about, and don't know how to use very well. But if you can use them effectively, they're going to give you a massive time-savings and advantage, especially when you're manipulating large datasets. So that's what we're going to focus on here. Now I'm going to start by just showing you some very basic applications of INDEX and MATCH. Once that's set, then we're going to go in and start rewriting some of these functions that we looked at previously. Like the monthly sales by sales by sales rep, year, and month. We're going to go in and fix that. I've already taken the liberty of fixing this one by region, because this one is really just adding to the SUMIF formula here, so there isn't too much to say.

2 [02:00] But we are going to fix this one, and I'm going to show you a couple different ways to rewrite it and get the equivalent result. Once that's done then we re going to go through an exercise, which will be quite challenging with an analysis of a REIT, actually several REITs, real estate investment trusts, and you can see the assignment right here. Basically, we're trying to compare the performance of different REITs, and the challenge here will be that the data we need is spread across many different worksheets. And to make it even more fun, the columns are in different orders. The geographies, the cities here they re not all the same, they're different between each different dataset. And so, if you try to use VLOOKUP up in this case, it just would not work. You'd have to make such a complicated formula and it would be very different for each different file. But we'll see how when we use INDIRECT, INDEX, and MATCH we can actually do this with a single formula. So let's go back. I'm going to show you some very simple examples of these formulas first. Let's start with INDEX, so INDEX just returns the value of an array at a specific row and column number. So what does this really mean? Well, let's just take a simple example here with our summary table. [03:00] Let's say I want to get the value in the second or third row, I ll say the second row 2. And then for the column number, let s also say 2, so you want the value in 2-2 here, and sure enough that gets us the $3,195,073 right there. So if I want too I can go in and fix this formatting, so you can see it. And you can play around with this, you can try entering other numbers, but that's basically what it does, and it's giving me a #REF! error there, because I entered one to many columns. Now by itself if you just use INDEX function like this, you might think it s useless. The real way that you use INDEX function is you use it in conjunction with this other function called MATCH. What does MATCH do? Well, you enter MATCH, and it basically allows you to look up a value and then find where it is in a row or column of data. [04:00]

3 So here s what we can do. Let s say we want to look up the value of $2,017, and then find the associated sales or order size associated with that. So let's enter $2,017 and then for the lookup array we want to enter just this column that I ll actually be in, and I can highlight that and then press F4 or CMD + T to anchor it. With the match type, let s just go with an exact match. Okay actually, the real problem is that this is a date field right here, so this is entered as 1/1/2017, so let me try fixing this, and now this is actually good, because it illustrates some of the disadvantages, and things you have to be careful of with these LOOKUP functions. [05:00] It's still not working, so let's try date value, and finally that worked. So you can see that sometimes you need to change around a few things, and manipulate these numbers and change them between dates and texts, and numbers and texts, and so on. But bottom line is you just have to make sure that if you're looking up values in a column or row of dates, that you're also using a date value in Excel as we just did here. So that's how you can use MATCH function, and likewise let's say you want to find something at the top, such as order size in this case. What you could do here is you could say something like MATCH, and then order size, so that's the value we're looking up. And then the lookup array is simply this top row of this table, and then, once again, we re going to say exact match here. And we can see it tells us it's in column 3. So you can now imagine how these functions could be very useful together, because now what we can do is use the INDEX function, and combine what we have here. So now we can say INDEX, and let s take this entire area right here to be safe. [06:00] Anchor it with F4 or CMD + T, and then for the row number I'm just going to enter 1/1 for now, because what I actually want to do is press F2 or CTRL + U to go in here, and I want to get the row number from this MATCH function. So let s pull it in from there. So we have that, and now let's enter this function for the column part of this. So now what its saying is basically, we want to get the value at the intersection of January 1st 2017, and then whatever column corresponds to order size, whatever row corresponds to the

4 $2017, we want that number. So let's press enter and sure enough we don't actually get what we want here. So why is this happening? Well, it's because we've made a mistake, which I've done sort of intentionally, but also to show you one of the things that you have to be careful of with this function, which is this. If you look at how we're setting this up, we're going from B8 to B17. [07:00] But in all of these other ones we're going from B7 to G7 or B7 to G17. We've forgotten this row at the top, and so what we need to do is change this, and change this to B7 to make sure that whenever we use INDEX and MATCH, the rows and columns that we're searching for are directly in this table. We want to make sure we re not coming up too short, or including an extra row, or extra column. So now we get the correct value, the $151,536 right here. So those are a few things you have to be careful of when using these functions, and hopefully you re more aware of these points after seeing some of the mistakes I made, even after using these functions and Excel and being quite familiar with Excel for a long time. So that's how you use INDEX and MATCH function, and we're going to go into some other examples and rewrite this formula using these functions. But one other thing I want to show you, actually two other things I want to show you first are how to use INDIRECT and ADDRESS. So INDIRECT, what does this do? [08:00] This is a little bit complicated to explain, but basically what it does is the following. I'm going to enter INDIRECT, and then I'm going to enter reference text here. And what this does is allow you to actually refer to a specific worksheet and cell name from within this very function. So I could enter something like the following right here. I could say INDIRECT and then orders to correspond to our orders tab over here, and then close the parenthesis, ampersand, and then exclamation point, because we're going to another worksheet. And then I could just say in double quotes G6, and that gives us Rhode Island, the state abbreviation, which is actually right here, and so it's literally pulling cell G6 from right here.

5 So why would this be useful? In what cases would this be useful? We have one of these cases in this very worksheet, which is the following. You can see how all these tabs with the monthly data are labeled 2020 monthly, 2019 monthly, 2018 monthly. [09:00] Now if we wanted to go and pull all of this data ourselves we'd have to write some very manual functions that require us to change the name of the worksheet in each function. But what we can do with INDIRECT is the following. In a function like this we can simply look up the year that we've picked up here, and then change the worksheet name. Actually change the name of the worksheet that we're pulling the data from, and pull it from monthly, 2019 monthly, 2018 monthly, and use the INDIRECT function to automate that whole process of swapping in different worksheet names. Now I realize you may not completely understand it, based on my description right now. So here's another example of how to use it, and maybe this will make it more clear. So let's say for example that we wanted to pull in data from 2020 monthly. So I m going to leave it at that, and okay this is giving us a rough error. And we do have a cell G6 here, so let s see what s going wrong. [10:00] Okay, so if we look at this function more closely, it looks like the problem here is most likely that we've forgotten single quotes around this, so if you press F2 or CTRL + U on the Mac to go ahead and enter it, let s add single quotes around the 2020 monthly, and now we can see hopefully that it gives you the correct value. It does, $1,338,174, so we have that. And you can see how with this formula, essentially what we could do is swap in this 2020, and replace it with anything we want really and as long as it's correctly formatted and everything, then we're going to move on to the next spread sheet, in each case. Now a related function here is called ADDRESS. What you can do here is the following. You can just enter a row number and a column number and then get a cell reference. So I can just enter 2 and 5 here and then it gives me cell E2. So how is this useful?

6 [11:00] Well, in some cases it may not always be obvious, which row or column you need to be in, but maybe you can get the row number or column number you need to be in from some other type of dates or other dataset that you're looking at. So ADDRESS is probably not quite as useful as these others, but depending on your data could still be very helpful. I just wanted to bring it up here, because it is something you might see, especially in advanced data manipulation files. So let's go to our initial task here, and try to rewrite this monthly sales figure, using INDIRECT and INDEX and MATCH. So basically, what we have to do is make sure that we incorporate the year this time around. So let's just double check the formatting. It's a custom format, but it looks like it s following a date format, overall right here. So rather than using SUMPRODUCT here, let s just delete this. And let's just start with a very basic INDEX and MATCH function, just for the 2020 monthly data, and then we can try to expand it and make it cover all of the different years. [12:00] So I'm going to type INDEX here, and we're going to go over to the array and question. So sales rep ID and take all of this data right here, and then for the row number, what do we want? Let's type the MATCH function, and then for the value that we're looking up, remember we're trying to match the sales rep ID here, so we want this value. And then the lookup array, we want to take this column right here, which I've already named, and then the match type we want an exact match. So we have that. And then for the column, let's enter a MATCH function, once again. And for the lookup value for the column, we want to enter the month right here. For the lookup array we want to enter the list of months here at the top. Make sure to include the sales rep ID, that field in the beginning, otherwise it's not going to work correctly. We want an exact match, so I ll say zero, and we actually have everything we need for INDEX. So let's close those parentheses and press enter, and see what happens. [13:00]

7 So this actually works correctly, and you can test it out yourself. If you look at this number here we have June 2011, actually just June in this case, because we're ignoring the year. So we have sales rep ID of 1 and month of June. Let's go over and take a look at that, and its $251, $239. And you can change this, play around with it yourself, but this works correctly, because our ranges here for the MATCH functions are both exactly on the edge of this table, or at least within this table. They don't go beyond it in terms of rows or columns and they don't go below it. They re exactly in line with the table, which is what you want. So how can we rewrite this to make it more flexible? The first thing we have to do is realize that unfortunately, we're going to have to get rid of all of these named cells here. So let's just start with something completely different, and let's just write a simple function here. Let's just say INDEX, and then for the array, to access this now, we're going to have to use the INDIRECT function. [14:00] So let's say INDIRECT and let s select the year. And then we want to use an ampersand and then monthly. Now for the range here, let's go take a look and make sure we're getting the right thing. So let's just go over, and I entered another ampersand, let s just go over to the 2011 monthly, and see what the range here might be. So we could do this in a couple of different ways. But probably the safest thing to do would be to take this whole range, B3 down all the way over to N12, and use that as our range. Now of course, we don't want this 2011 monthly, because we want it to be flexible and handle all different cases, so let's just get rid of that. And what we can do here is also get rid of that ampersand, and so we have that range. And now instead of entering anything right away, I m just going to leave that range here. And I'm just going to try one, let's just try 2 and 2 just to see if this actually works correctly. [15:00] And no it does not. We get a rough error so something has gone wrong. Okay, so what might be going wrong here? Well, one helpful thing to do in Excel is to go to show calculation step, when

8 you see an error like this. And you can see here the problem is that it's not looking it up in the right work sheet, because it's defaulting to instead of the date So why is this happening? Well, because we're using the date here, but in here we're using text. So what we have to do is use the TEXT function here, and use format text, and change this to YYY year. So let's see what's going on here. So a couple of things could be happening. We fixed the problem with the text and the dates, but with INDIRECT we need the single quote in the beginning, and then at the end we also need a single quote. It looks like right now, we have two single quotes so let me change that. And now we can at least verify that our INDEX and INDIRECT function works. [16:00] Again, you should see from my own circle is getting this to work correctly that it can be tricky, and you can make a lot of silly mistakes here, and Excel can be very picky what it accepts, so again, just one of the downsides to be aware of with this function. Now what else do we need to do here? The first thing we want to do is also make sure that these ranges are anchored, so that the N12 and then the B3 here, these should be anchored, because we're going to end up using them again and again, for the row and column names here. So let's start with the row number. How can we do this? For the row number we want to go, that's going to be the one that corresponds to the sales rep. So the lookup value is going to be the sales rep ID, the lookup array is going to be for This box over here and the match type is going to be zero. Actually I did that wrong. [17:00] It should be B3 to B12, and then match type of zero. So how do we translate this function into this INDIRECT formula? Actually/ it's not too complicated, because what we can do is take this whole formula, which I'm just going to press CTRL + X on to copy. We could put it in this row part. So we copied and pasted this function in, and now we just have to swap out the 2011 part.

9 So you have to be very careful when manipulating functions that are this complicated. Basically, we want to copy the INDIRECT part right here. And what I'm going to do is just delete this whole part to make sure we don't mess up anything when we are copying and pasting this in. So press CTRL + V to paste that in, and then we want to change this N12 to a B12, because we only want the column there, not the whole area. So that's still working, that's good news. And then for the final thing, we need to get the row. [18:00]] So thinking about the formula for that is just MATCH, June is the lookup value, and then the array if we go over to 2011, this is just this top part here, and we want zero for the exact match. So now essentially, we just have to transplant that function into this huge formula now. So let's take this two at the end. We have that and we have this newer formula in place. And now really what we really need to do here is take this part, with the direct reference to the worksheet itself, we need to swap in the INDIRECT function there instead, and still change it around, so we have that INDIRECT function. CTRL + C and then paste it in here, and time what I want to do is instead of changing the B3 part we're going to keep it at three, because we want row at the top. And there are a couple of ways to do it, but the easiest is to look up here and realize that N is the last column in all of these. Then let's press enter, and look it actually works, isn't that amazing? [19:00] Now as you can see this is an extremely complicated formula, and I'm not saying it's necessarily a good idea to use a formula like this unless you really have to. As it turns out, in this case we actually don't need to do anything this complicated, and there s actually a much simpler way to do this, using some other built-in functions that we ll get to in the next lesson. This is really just to illustrate more to you the power of INDIRECT, INDEX, and MATCH, and some of the more complex operations that you can perform with them. Now let's say I go in and change some of these. So let s say I change the year to 2017 and then change the date to September 1 st, and you can see that we can get data based on the sales rep by year, by month.

10 And if you want you can go in and check it yourself and verify that we did this correctly and everything. But it works and we've tried it out in a number of different cases now. What I always recommend doing, when you enter a function this complicated is exactly what we just did. [20:00] Go through the process of breaking apart each part of the formula into simpler steps, and check each of those. That ensures that you ll get the syntax right, and that you avoid any silly errors like the one that we encountered. So that's how you can rewrite this to make it truly flexible to incorporate the year, month, and the sales rep ID, and look up the monthly sales by all of that criteria. If you go over here, go to December for sales rep , just to check. Of course, that matches up. Now as I said there are simpler ways to do this. We'll be getting to them soon, but for now what I want to do is turn to our exercise. So let's pull this up. This INDEX MATCH and DIRECT REIT data file. So here's what you're going to have to do. You can see a description at the bottom, which I went through briefly at the beginning of the video. What we have to do here is take data for all of these different real estate geographies, so Boston, New York, New Jersey, Washington metro area, Maryland, Norfolk, and so on and so forth. [21:00] And we have to write formulas that pull in all of the data, on apartment homes, the rental rates, and these are average rental rates per apartment home, per unit really; the rental increase from one year to the next year, the occupancy rate, the rental revenue, and then the increase in that. Now for Avalon Bay, that's what the AVB here stands for, that's a residential REIT in the US. It's pretty easy. But for Equity Residential it gets harder, because the data is in a different order. So if we just tried to write a VLOOKUP function it wouldn't work, because our columns are arranged in a different order.

11 And if you look at these companies filings, if you pulled the PDF file, you ll see it really is a real problem, the data really is arranged differently in all of these, and I ve modified it a little bit, but this a very real problem, whenever you re working with large datasets like this. So essentially what we want to do is put all of these real estate investment trusts side to side, and see how they actually compare in each of these geographies, and if any of them have a certain advantage in one of these geographies. So pause this video right now and try to write this function using INDIRECT, MATCH, and INDEX. [22:00] You're going to be using INDIRECT, because you have to use the REIT abbreviation, the ticker here to refer to the worksheet, just like we did previously. And you're going to have to use INDEX and MATCH; INDEX to get the actual value, and then MATCH to match it up with the title here at the top, and also the city over here on the side. So pause this video now. Give it a shot yourself, then when you're done, or if you get stuck unpause it, and then we ll go through it together. Okay, good. So let's start breaking this down and start with some very simple examples, and then do what we did before, and break it into simpler components, and then combine the formula at the end. So let's get the INDIRECT part right first, because we're going to end up using that throughout this. So I'm going to type INDEX and then INDIRECT. And then in this case, we want to be referring to the REIT ticker abbreviation, so I m going to press F4 a few times, or CMD + T on the Mac to anchor that. [23:00] And then I'm going to enter ampersand and then underscore port, because that's how all of these are named, with underscore port at the bottom. Exclamation mark and then for the range, we want to go from the very top left corner, to however far out it extends. Now the range is different in each of these files, but to be safe we can make this 26 columns across, and 100 rows down and that should cover us, because here we can see that actually we only have around 94 rows.

12 We could be even more aggressive, and have 1,000 rows or 1,000 columns or something like that. But in this case I'm just going to say A1, have another dollar sign there to Z100, so we have that. And then we need to enter a row number and a column number. Now before we start entering these MATCH functions, let's just verify that we have the syntax here correct first. So I m going to say two and three and let s just see if this works. So did this work? Well, it's hard to tell in this case. Let s see if I can enter different numbers, and see if that actually returns something, $2,080. [24:00] So it's clearly working, it's returning this value right here, the Q4-12 rental rate. So this works, and now what we have to do is incorporate MATCH into this process. How do we do this? Well, let's think about the individual components first, before we start making this complicated. So for MATCH, let's think about the row part first. What do we want to do for the row part? We want to say basically MATCH and lookup this value, Boston, Massachusetts. We want to anchor that a few times, so that the column doesn t shift around. And then for the range we want to use that same range that we're using in the INDIRECT function right here. So that's what we're going to use for the lookup array. And then of course, match type is always zero. So let's actually go back into this other function and copy what we had here for the INDIRECT part. So we have that. And then for the MATCH part, let's type MATCH, and then lookup value is going to be Boston. Press F4 a few times to anchor the column. [25:00] And then lookup array is exactly what I have there. We're going to be using that same function for all of these. And then match type I m just going to say zero. And the reason this came up, N/A, which is another error that I just made, which is good for you to know; is the problem is that I didn't enter this correctly; I entered A1 through Z100. But remember this has to be a column not an entire area for the MATCH function. So I'm going to change this to A100 instead, and now this works correctly. So that part is there, now let's enter this. F2 or CTRL + U to edit the cell, CTRL + X to cut this out, and then let's put it in here for the row part. Let's press enter and hope this works, and it does work.

13 And then finally, for the column part let's think about this. And once again, we're going to have to use the INDIRECT function and change it around slightly. So let's just take the first one, because that's closer to what we need. So let's take this INDIRECT function, and then let's say MATCH, and what we want to do here is take the title at the top, and that's what we're going to be trying to match up to get the appropriate column. [26:00] Remember these are in different orders and at different intervals in the other spreadsheets, so it's not as if we can just assign it to a constant column. Instead we have to do this. And I'm going to anchor the row part here, the one so it doesn't shift around. For the lookup array, we're going to use INDIRECT again, except this time instead of A1 to Z100, I m going to say A1 to Z1, so that it goes all the way across the columns, the columns go from A to Z. So we have that. And for the match type I m going to enter zero, so we have that. F2 or CTRL + U on the Mac to get all of this, CTRL + X to cut it out and then let s put it right here. Highlight this, and then CTRL + V or CMD + V on the Mac. So we have that. Now does this actually work? We have this long complicated formula, although it is somewhat easier to understand than the other one we went over. [27:00] Does this work? Is it going to hold up properly? Well, let's copy and paste it across. This is the moment of truth. Let's see, CTRL + C, and then ALT + ESF after highlighting this whole area, or CMD + CTRL + V, CMD + F on the Mac. And okay, so it almost works but not quite, I misaligned this top part. So this should actually be F1 instead. So let's try this again. CTRL + C and then ALT + ESF and it looks like this is actually working properly, and so what we can now do is copy and paste this around for everything else. I'm going to zoom out by using CTRL + scroll wheel on the mouse, just to make it a little bit easier to copy and paste this down. So let's do this for all of them. And you might wonder if there's an easier or more automated way doing this. The short answer is actually, if we wanted to take the easy way out, we could just copy this, and just paste it all the way down this entire area.

14 [28:00] Because what will happen is that for anything it can't find, it's essentially just going to return a blank value. Let s do that ALT + ESF. So let's take a look at this. We do have some rough errors it looks like. Most of these are because we are looking for something that doesn't exist. Let's delete these. And then we do have some N/A errors too, but those are probably going to be easier to solve. So I'm going through and deleting these rough errors. And these are because these items literally don't exist in the spreadsheets that we're looking for them on. So we have that. And then these other errors, basically they re happening, because if you look at this, if you look at the data for Avalon Bay, AVB, they don't have anything for other markets. [29:00] So sometimes it's giving us N/A, sometimes it s giving a rough error depending on how much is actually there. There are a couple of ways you could deal with this, but probably the easiest way is to use the IFERROR function. We haven't gone through error checking yet, but you can just learn this now as a bonus. We can say IFERROR and enclose this whole thing in that function and then say just have a blank there, just double quotes if there's an error. So now let's zoom out again, and paste this around, and now this will handle all of these different cases, and also work in case we run into an error message, or in case the data is not there in the first place. And there you go. So you can go through and look at this yourself. Double check everything if you want, but that's how you can fix this. One other note, IFERROR only works in Excel 2007 and onwards, so if you still somehow still have been using 2003, it's not going to work. But I'm assuming if you're watching this it probably is not you. So what does this allow us to do? Well, it lets us see at a glance really, what types of rental increases, different REITs in the same area have had. [30:00] So if we look at this data we can see right here that there s a big variation. Equity Residential, their rates have almost gone up 10%, but Avalon Bay and AMECO/AV have only gone up by around 4.0% or 5.0%. So that might be interesting, and worth looking at more if that explains that in the Boston area.

15 And then you can go down and then do the same thing for really almost everything here; the occupancy rates, the total revenue increase, the rental rates, everything like that; those are some of the key variables for real estate. And this is pretty typical of what you might actually see in real life. This type of exercise is common to get on modeling tests, if they give you one in interviews, as well. And any type of Excel or formula test they give you, so just good to know. We have been through a lot in this lesson. I realize it's a lot to take in. but these are some very powerful functions, and I just wanted to spend time on them, to teach you how to use them properly. So that's it for our lesson on how to use INDIRECT, INDEX, and MATCH. Hopefully you have a better idea of the sheer power of these functions now. [31:00] To recap, we went through the basic functionality at first. I showed you how they worked. Then we rewrote some of the functions on here by using the INDEX, INDIRECT, and MATCH. This one's very messy. There's a better way to do it coming up soon. And then we learned how to use it for the real estate data, when we have columns that are out of order and all over the place. Now as far as limitations, well again, you do have to specify a row and column for MATCH, so it's not as flexible as you might think it is. You still have to specify something there. And then INDIRECT again, you still need to specify a cell range as we did, and you saw how that caused some issues before, so these functions are not perfect. They do require more upfront effort, but ultimately they are going to be a lot more flexible and arguably more efficient than the LOOKUP functions as well. And as I say here, you still can't aggregate them easily. They're still looking up single cell values with all of these, but that is sometimes all you need. So that's it for this lesson. Coming up next we're going to jump into database functions. And then we're going to go into array functions, and learn how to use generic array functions, as well as a very common one called TRANSPOSE.

Graphs and Charts: Creating the Football Field Valuation Graph

Graphs and Charts: Creating the Football Field Valuation Graph Graphs and Charts: Creating the Football Field Valuation Graph Hello and welcome to our next lesson in this module on graphs and charts in Excel. This time around, we're going to being going through a

More information

The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections

The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections Welcome to the next lesson in the third module of this PowerPoint course. This time around, we

More information

BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box

BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box Copyright 2012 by Eric Bobrow, all rights reserved For more information about the Best Practices Course, visit http://www.acbestpractices.com

More information

Hello and welcome to the CPA Australia podcast. Your weekly source of business, leadership, and public practice accounting information.

Hello and welcome to the CPA Australia podcast. Your weekly source of business, leadership, and public practice accounting information. Intro: Hello and welcome to the CPA Australia podcast. Your weekly source of business, leadership, and public practice accounting information. In this podcast I wanted to focus on Excel s functions. Now

More information

Environmental Stochasticity: Roc Flu Macro

Environmental Stochasticity: Roc Flu Macro POPULATION MODELS Environmental Stochasticity: Roc Flu Macro Terri Donovan recorded: January, 2010 All right - let's take a look at how you would use a spreadsheet to go ahead and do many, many, many simulations

More information

PowerPoint Pro: Grouping and Aligning Objects

PowerPoint Pro: Grouping and Aligning Objects PowerPoint Pro: Grouping and Aligning Objects In this lesson, we're going to get started with the next segment of our course on PowerPoint, which is how to group, align, and format objects. Now, everything

More information

The lump sum amount that a series of future payments is worth now; used to calculate loan payments; also known as present value function Module 3

The lump sum amount that a series of future payments is worth now; used to calculate loan payments; also known as present value function Module 3 Microsoft Excel Formulas Made Easy Key Terms Term Definition Introduced In Absolute reference A cell reference that is fixed to a specific cell and contains a constant value throughout the spreadsheet

More information

QUICKSTART COURSE - MODULE 7 PART 3

QUICKSTART COURSE - MODULE 7 PART 3 QUICKSTART COURSE - MODULE 7 PART 3 copyright 2011 by Eric Bobrow, all rights reserved For more information about the QuickStart Course, visit http://www.acbestpractices.com/quickstart Hello, this is Eric

More information

IB Interview Guide: How to Walk Through Your Resume or CV as an Undergrad or Recent Grad

IB Interview Guide: How to Walk Through Your Resume or CV as an Undergrad or Recent Grad IB Interview Guide: How to Walk Through Your Resume or CV as an Undergrad or Recent Grad Hello, and welcome to this next lesson in this module on how to tell your story, in other words how to walk through

More information

MITOCW watch?v=fp7usgx_cvm

MITOCW watch?v=fp7usgx_cvm MITOCW watch?v=fp7usgx_cvm Let's get started. So today, we're going to look at one of my favorite puzzles. I'll say right at the beginning, that the coding associated with the puzzle is fairly straightforward.

More information

1 Best Practices Course Week 12 Part 2 copyright 2012 by Eric Bobrow. BEST PRACTICES COURSE WEEK 12 PART 2 Program Planning Areas and Lists of Spaces

1 Best Practices Course Week 12 Part 2 copyright 2012 by Eric Bobrow. BEST PRACTICES COURSE WEEK 12 PART 2 Program Planning Areas and Lists of Spaces BEST PRACTICES COURSE WEEK 12 PART 2 Program Planning Areas and Lists of Spaces Hello, this is Eric Bobrow. And in this lesson, we'll take a look at how you can create a site survey drawing in ArchiCAD

More information

Using Google Analytics to Make Better Decisions

Using Google Analytics to Make Better Decisions Using Google Analytics to Make Better Decisions This transcript was lightly edited for clarity. Hello everybody, I'm back at ACPLS 20 17, and now I'm talking with Jon Meck from LunaMetrics. Jon, welcome

More information

1 of 14. Lesson 2 MORE TOOLS, POLYGONS, ROOF. Updated Sept. 15, By Jytte Christrup.

1 of 14. Lesson 2 MORE TOOLS, POLYGONS, ROOF. Updated Sept. 15, By Jytte Christrup. 1 of 14 TUTORIAL - Gmax (version 1.2) Lesson 2 Updated Sept. 15, 2008. By Jytte Christrup. MORE TOOLS, POLYGONS, ROOF. We need to talk a bit about polygons and polycount. In Trainz, a model is seen as

More information

Lesson 2: Choosing Colors and Painting Chapter 1, Video 1: "Lesson 2 Introduction"

Lesson 2: Choosing Colors and Painting Chapter 1, Video 1: Lesson 2 Introduction Chapter 1, Video 1: "Lesson 2 Introduction" Welcome to Lesson 2. Now that you've had a chance to play with Photoshop a little bit and explore its interface, and the interface is becoming a bit more familiar

More information

Editing Your Novel by: Katherine Lato Last Updated: 12/17/14

Editing Your Novel by: Katherine Lato Last Updated: 12/17/14 Editing Your Novel by: Katherine Lato Last Updated: 12/17/14 Basic Principles: I. Do things that make you want to come back and edit some more (You cannot edit an entire 50,000+ word novel in one sitting,

More information

QUICKSTART COURSE - MODULE 1 PART 2

QUICKSTART COURSE - MODULE 1 PART 2 QUICKSTART COURSE - MODULE 1 PART 2 copyright 2011 by Eric Bobrow, all rights reserved For more information about the QuickStart Course, visit http://www.acbestpractices.com/quickstart Hello, this is Eric

More information

7-1-The_Best_Practices_Course--Week_7--Part_1--Interactive_Legends_Part_1

7-1-The_Best_Practices_Course--Week_7--Part_1--Interactive_Legends_Part_1 Hello, this is Eric Bobrow. And in this lesson, we're going to take a look at a variation of the favorites that I call Interactive Legends of Visual Favorites. Here I have a set of favorites that's going

More information

This chapter gives you everything you

This chapter gives you everything you Chapter 1 One, Two, Let s Sudoku In This Chapter Tackling the basic sudoku rules Solving squares Figuring out your options This chapter gives you everything you need to know to solve the three different

More information

Ep #181: Proactivation

Ep #181: Proactivation Full Episode Transcript With Your Host Brooke Castillo Welcome to The Life Coach School Podcast, where it s all about real clients, real problems, and real coaching. And now your host, Master Coach Instructor,

More information

Instructor (Mehran Sahami):

Instructor (Mehran Sahami): Programming Methodology-Lecture21 Instructor (Mehran Sahami): So welcome back to the beginning of week eight. We're getting down to the end. Well, we've got a few more weeks to go. It feels like we're

More information

Easily Smooth And Soften Skin In A Photo With Photoshop

Easily Smooth And Soften Skin In A Photo With Photoshop Easily Smooth And Soften Skin In A Photo With Photoshop Written by Steve Patterson OPEN THE START FILE BY RIGHT CLICKING THE.JPG FILE AND CHOOSING OPEN WITH ADOBE PHOTOSHOP. SAVE AS: X_lastname_firstname_Smooth_Soft

More information

BEST PRACTICES COURSE WEEK 21 Creating and Customizing Library Parts PART 7 - Custom Doors and Windows

BEST PRACTICES COURSE WEEK 21 Creating and Customizing Library Parts PART 7 - Custom Doors and Windows BEST PRACTICES COURSE WEEK 21 Creating and Customizing Library Parts PART 7 - Custom Doors and Windows Hello, this is Eric Bobrow. In this lesson, we'll take a look at how you can create your own custom

More information

Excel 2016 Cell referencing and AutoFill

Excel 2016 Cell referencing and AutoFill Excel 2016 Cell referencing and AutoFill Good afternoon everyone and welcome to Student Tech Bytes. My name is Liza and today we are here for Excel Cell referencing and Autofill. Today s session will be

More information

MITOCW R22. Dynamic Programming: Dance Dance Revolution

MITOCW R22. Dynamic Programming: Dance Dance Revolution MITOCW R22. Dynamic Programming: Dance Dance Revolution The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational

More information

************************************************************************ Financial Literacy in Grades 9 and 10 The Arts Music AMU1O and AMG2O

************************************************************************ Financial Literacy in Grades 9 and 10 The Arts Music AMU1O and AMG2O ************************************************************************ Financial Literacy in Grades 9 and 10 The Arts Music AMU1O and AMG2O ************************************************************************

More information

The Emperor's New Repository

The Emperor's New Repository The Emperor's New Repository I don't know the first thing about building digital repositories. Maybe that's a strange thing to say, given that I work in a repository development group now, and worked on

More information

Become A Blogger Premium

Become A Blogger Premium Introduction to Traffic Video 1 Hi everyone, this is Yaro Starak and welcome to a new series of video training, this time on the topic of how to build traffic to your blog. By now you've spent some time

More information

This is an oral history interview with Colleen, IBM CRM (Customer Relationship Management) Business Partner

This is an oral history interview with Colleen, IBM CRM (Customer Relationship Management) Business Partner This is an oral history interview with Colleen, IBM CRM (Customer Relationship Management) Business Partner Worldwide Test Manager, conducted on September 4, 2003, by IBM Corporate Archivist, Paul Lasewicz.

More information

ECOSYSTEM MODELS. Spatial. Tony Starfield recorded: 2005

ECOSYSTEM MODELS. Spatial. Tony Starfield recorded: 2005 ECOSYSTEM MODELS Spatial Tony Starfield recorded: 2005 Spatial models can be fun. And to show how much fun they can be, we're going to try to develop a very, very simple fire model. Now, there are lots

More information

BOOSTING AFFILIATE PROFITS

BOOSTING AFFILIATE PROFITS BOOSTING AFFILIATE PROFITS HOW TO MAKE MORE MONEY Jonathan Leger COURTESY OF LEARNFROMJON.COM - PRIVATE BUSINESS COACHING FROM A MULTI-MILLION DOLLAR INTERNET MARKETER + ACCESS TO PREMIUM AND EXCLUSIVE

More information

Proven Performance Inventory

Proven Performance Inventory Proven Performance Inventory Module 4: How to Create a Listing from Scratch 00:00 Speaker 1: Alright guys. Welcome to the next module. How to create your first listing from scratch. Really important thing

More information

CLICK HERE TO SUBSCRIBE

CLICK HERE TO SUBSCRIBE Mike Morrison: Welcome to episode 68 of the Membership Guys podcast with me, your host, Mike Morrison, one half of the Membership Guys. If you are planning on running a membership web site, this is the

More information

You can copy a cell by clicking on the Handle and dragging

You can copy a cell by clicking on the Handle and dragging Professor Shoemaker Spring, 2014 Copying using the Handle You can copy a cell by clicking on the Handle and dragging Excel Professor Shoemaker 1 What s a Cell Reference? It s when an expression in one

More information

MITOCW ocw lec11

MITOCW ocw lec11 MITOCW ocw-6.046-lec11 Here 2. Good morning. Today we're going to talk about augmenting data structures. That one is 23 and that is 23. And I look here. For this one, And this is a -- Normally, rather

More information

BOOK MARKETING: Profitable Book Marketing Ideas Interview with Amy Harrop

BOOK MARKETING: Profitable Book Marketing Ideas Interview with Amy Harrop BOOK MARKETING: Profitable Book Marketing Ideas Interview with Amy Harrop Welcome to Book Marketing Mentors, the weekly podcast where you learn proven strategies, tools, ideas, and tips from the masters.

More information

Autodesk University See What You Want to See in Revit 2016

Autodesk University See What You Want to See in Revit 2016 Autodesk University See What You Want to See in Revit 2016 Let's get going. A little bit about me. I do have a degree in architecture from Texas A&M University. I practiced 25 years in the AEC industry.

More information

Transcript of the podcasted interview: How to negotiate with your boss by W.P. Carey School of Business

Transcript of the podcasted interview: How to negotiate with your boss by W.P. Carey School of Business Transcript of the podcasted interview: How to negotiate with your boss by W.P. Carey School of Business Knowledge: One of the most difficult tasks for a worker is negotiating with a boss. Whether it's

More information

Heuristics: Rules of Thumb

Heuristics: Rules of Thumb MODELING BASICS Heuristics: Rules of Thumb Tony Starfield recorded: November, 2009 What is a heuristic? A heuristic is a rule of thumb. It is something that is sometimes true and sometimes works, but sometimes

More information

Add Rays Of Sunlight To A Photo With Photoshop

Add Rays Of Sunlight To A Photo With Photoshop Add Rays Of Sunlight To A Photo With Photoshop Written by Steve Patterson. In this photo effects tutorial, we'll learn how to easily add rays of sunlight to an image, a great way to make an already beautiful

More information

MODULE 1 IMAGE TRACE AND BASIC MANIPULATION IN ADOBE ILLUSTRATOR. The Art and Business of Surface Pattern Design

MODULE 1 IMAGE TRACE AND BASIC MANIPULATION IN ADOBE ILLUSTRATOR. The Art and Business of Surface Pattern Design The Art and Business of Surface Pattern Design MODULE 1 IMAGE TRACE AND BASIC MANIPULATION IN ADOBE ILLUSTRATOR The Art and Business of Surface Pattern Design 1 Hi everybody and welcome to our Make it

More information

Completing Your Product Blueprint: Worksheet

Completing Your Product Blueprint: Worksheet Completing Your Product Blueprint: Worksheet This worksheet will show you: 4 ways to monetize your message and earn multiple streams of income How to create your own product blueprint 4 Ways To Monetize

More information

Term Definition Introduced in:

Term Definition Introduced in: 60 Minutes of Access Secrets Key Terms Term Definition Introduced in: Calculated Field A field that displays the results of a calculation. Introduced in Access 2010, this field allows you to make calculations

More information

Dialog on Jargon. Say, Prof, can we bother you for a few minutes to talk about thermo?

Dialog on Jargon. Say, Prof, can we bother you for a few minutes to talk about thermo? 1 Dialog on Jargon Say, Prof, can we bother you for a few minutes to talk about thermo? Sure. I can always make time to talk about thermo. What's the problem? I'm not sure we have a specific problem it's

More information

"List Building" for Profit

List Building for Profit "List Building" for Profit As a winning Member of Six Figure Mentors you have a unique opportunity to earn multiple income streams as an authorised affiliate (reseller) of our many varied products and

More information

Copyright Karen Hinrichs, 2010, all rights reserved Creating a Zig Zag Motif to use in 4D Design Creator page 1

Copyright Karen Hinrichs, 2010, all rights reserved Creating a Zig Zag Motif to use in 4D Design Creator page 1 all rights reserved Creating a Zig Zag Motif to use in 4D Design Creator page 1 4D Design Creator Using 4D Fabric Decorator to Create a Zig Zag Motif to use for Containing Pokies -- Karen Hinrichs In January

More information

26 AdWords Mistakes: How They Are Killing Your Profits (And How To Fix Them) Contents

26 AdWords Mistakes: How They Are Killing Your Profits (And How To Fix Them) Contents Contents Mistake #1: Not Separating Search Network & Display Network Campaigns... 4 Mistake #2: Not Adding Negative Keywords... 5 Mistake #3: Adding Too Many Keywords Per Ad Group... 6 Mistake #4: Not

More information

The Alternative to AUM-Based Fees: The Total Profitability Retainer Formula

The Alternative to AUM-Based Fees: The Total Profitability Retainer Formula The Alternative to AUM-Based Fees: The Total Profitability Retainer Formula July 31, 2012 by Bob Veres Three weeks ago, in this space, I made the case that a lot of advisors perhaps most are deliberately

More information

The ENGINEERING CAREER COACH PODCAST SESSION #1 Building Relationships in Your Engineering Career

The ENGINEERING CAREER COACH PODCAST SESSION #1 Building Relationships in Your Engineering Career The ENGINEERING CAREER COACH PODCAST SESSION #1 Building Relationships in Your Engineering Career Show notes at: engineeringcareercoach.com/session1 Anthony s Upfront Intro: This is The Engineering Career

More information

MITOCW R7. Comparison Sort, Counting and Radix Sort

MITOCW R7. Comparison Sort, Counting and Radix Sort MITOCW R7. Comparison Sort, Counting and Radix Sort The following content is provided under a Creative Commons license. B support will help MIT OpenCourseWare continue to offer high quality educational

More information

Phase 2: Testing & Validation: Forever Affiliate Content Strategy - Minisite & Authority Site

Phase 2: Testing & Validation: Forever Affiliate Content Strategy - Minisite & Authority Site Phase 2: Testing & Validation: Forever Affiliate Content Strategy - Minisite & Authority Site Okay. Welcome to Phase 2: Testing and Validation: Forever Affiliate Content Strategy for Minisites and Authority

More information

0:00:00.919,0:00: this is. 0:00:05.630,0:00: common core state standards support video for mathematics

0:00:00.919,0:00: this is. 0:00:05.630,0:00: common core state standards support video for mathematics 0:00:00.919,0:00:05.630 this is 0:00:05.630,0:00:09.259 common core state standards support video for mathematics 0:00:09.259,0:00:11.019 standard five n f 0:00:11.019,0:00:13.349 four a this standard

More information

SHA532 Transcripts. Transcript: Forecasting Accuracy. Transcript: Meet The Booking Curve

SHA532 Transcripts. Transcript: Forecasting Accuracy. Transcript: Meet The Booking Curve SHA532 Transcripts Transcript: Forecasting Accuracy Forecasting is probably the most important thing that goes into a revenue management system in particular, an accurate forecast. Just think what happens

More information

Copyright MMXVII Debbie De Grote. All rights reserved

Copyright MMXVII Debbie De Grote. All rights reserved Gus: So Stacy, for your benefit I'm going to do it one more time. Stacy: Yeah, you're going to have to do it again. Gus: When you call people, when you engage them always have something to give them, whether

More information

COLD CALLING SCRIPTS

COLD CALLING SCRIPTS COLD CALLING SCRIPTS Portlandrocks Hello and welcome to this portion of the WSO where we look at a few cold calling scripts to use. If you want to learn more about the entire process of cold calling then

More information

10 Tips for Conquering Planned Pooling Crochet

10 Tips for Conquering Planned Pooling Crochet 10 Tips for Conquering Planned Pooling Crochet Have you tried Planned Pooling Crochet? I ADORE it!! I probably spend far too much time doing it! Whenever I'm at the craft store now... I'm always checking

More information

UNDERSTANDING LAYER MASKS IN PHOTOSHOP

UNDERSTANDING LAYER MASKS IN PHOTOSHOP UNDERSTANDING LAYER MASKS IN PHOTOSHOP In this Adobe Photoshop tutorial, we re going to look at one of the most essential features in all of Photoshop - layer masks. We ll cover exactly what layer masks

More information

Do Not Quit On YOU. Creating momentum

Do Not Quit On YOU. Creating momentum Do Not Quit On YOU See, here's the thing: At some point, if you want to change your life and get to where it is you want to go, you're going to have to deal with the conflict of your time on your job.

More information

We're excited to announce that the next JAFX Trading Competition will soon be live!

We're excited to announce that the next JAFX Trading Competition will soon be live! COMPETITION Competition Swipe - Version #1 Title: Know Your Way Around a Forex Platform? Here s Your Chance to Prove It! We're excited to announce that the next JAFX Trading Competition will soon be live!

More information

The notes are C, G, and E.

The notes are C, G, and E. A and E Style Chords: The C's When I first offered this course, the demo was about the C Major chord using both the E and A style format. I am duplicating that lesson here. At the bottom I will show you

More information

Autodesk University Automating Plumbing Design in Revit

Autodesk University Automating Plumbing Design in Revit Autodesk University Automating Plumbing Design in Revit All right. Welcome. A couple of things before we get started. If you do have any questions, please hang onto them 'till after. And I did also update

More information

Module All You Ever Need to Know About The Displace Filter

Module All You Ever Need to Know About The Displace Filter Module 02-05 All You Ever Need to Know About The Displace Filter 02-05 All You Ever Need to Know About The Displace Filter [00:00:00] In this video, we're going to talk about the Displace Filter in Photoshop.

More information

MITOCW watch?v=-qcpo_dwjk4

MITOCW watch?v=-qcpo_dwjk4 MITOCW watch?v=-qcpo_dwjk4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Class 1 - Introduction

Class 1 - Introduction Class 1 - Introduction Today you're going to learn about the potential to start and grow your own successful virtual bookkeeping business. Now, I love bookkeeping as a business model, because according

More information

Power of Podcasting #30 - Stand Out From The Crowd Day 3 of the Get Started Podcasting Challenge

Power of Podcasting #30 - Stand Out From The Crowd Day 3 of the Get Started Podcasting Challenge Power of Podcasting #30 - Stand Out From The Crowd Day 3 of the Get Started Podcasting Challenge Hello and welcome to the Power of Podcasting, and today we have a very special episode. Recently, I just

More information

9218_Thegreathustledebate Jaime Masters

9218_Thegreathustledebate Jaime Masters 1 Welcome to Eventual Millionaire. I'm. And today on the show we have just me. Today I wanted to actually do a solo episode, because I've been hearing quite a bit about the word hustle. And I'm actually

More information

019 My Wife Caught Me Looking at Porn, Now What?!?!

019 My Wife Caught Me Looking at Porn, Now What?!?! 019 My Wife Caught Me Looking at Porn, Now What?!?! Welcome to Pornfree Radio. I'm Matt Dobschuetz. This is the podcast for people who want to live 100% porn free. Today's episode is called, My Wife Caught

More information

Interviewing Techniques Part Two Program Transcript

Interviewing Techniques Part Two Program Transcript Interviewing Techniques Part Two Program Transcript We have now observed one interview. Let's see how the next interview compares with the first. LINDA: Oh, hi, Laura, glad to meet you. I'm Linda. (Pleased

More information

BEST PRACTICES COURSE WEEK 20 Managing Attributes, Project Preferences, Work Environment Part 1-F Element Attributes: Pen Colors and Pen Sets

BEST PRACTICES COURSE WEEK 20 Managing Attributes, Project Preferences, Work Environment Part 1-F Element Attributes: Pen Colors and Pen Sets BEST PRACTICES COURSE WEEK 20 Managing Attributes, Project Preferences, Work Environment Part 1-F Element Attributes: Pen Colors and Pen Sets Welcome everyone to the ArchiCAD Best Practices Course lesson.

More information

The ENGINEERING CAREER COACH PODCAST SESSION #13 How to Improve the Quality of Your Engineering Design Work and Boost Your Confidence

The ENGINEERING CAREER COACH PODCAST SESSION #13 How to Improve the Quality of Your Engineering Design Work and Boost Your Confidence The ENGINEERING CAREER COACH PODCAST SESSION #13 How to Improve the Quality of Your Engineering Design Work and Boost Your Confidence Show notes at: engineeringcareercoach.com/quality Anthony s Upfront

More information

Go back to the stopped deck. Put your finger on it, holding it still, and press start. The deck should be running underneath the stopped record.

Go back to the stopped deck. Put your finger on it, holding it still, and press start. The deck should be running underneath the stopped record. LEARN TO MIX RECORDS Place two identical records/cd's on your decks, and set the pitch to 0. On most decks, a green light will come on to let you know it's at 0 and it'll probably click into place. By

More information

dotted line kind of in the middle of my screen. And what that dotted line represents is where the page ends. Ok, so that s the very end of my page.

dotted line kind of in the middle of my screen. And what that dotted line represents is where the page ends. Ok, so that s the very end of my page. Hi, good afternoon and welcome to this Tuesday s TechTalk. My name is Kat Snizaski and today we are talking about formatting inside Excel 2010. I see, I think everybody can hear. If you can hear me please

More information

Make More Money This Month Using Tapping and the Law of Attraction.

Make More Money This Month Using Tapping and the Law of Attraction. Make More Money This Month Using Tapping and the Law of Attraction. Introduction to the Law of Attraction: I have been studying the Law of Attraction for over 22 years. OK, well, I dabbled in it for about

More information

Buying and Holding Houses: Creating Long Term Wealth

Buying and Holding Houses: Creating Long Term Wealth Buying and Holding Houses: Creating Long Term Wealth The topic: buying and holding a house for monthly rental income and how to structure the deal. Here's how you buy a house and you rent it out and you

More information

CLICK HERE TO SUBSCRIBE

CLICK HERE TO SUBSCRIBE Mike: Hey, what's happening? Mike here from The Membership Guys. Welcome to Episode 144 of The Membership Guys podcast. This is the show that helps you grow a successful membership website. Thanks so much

More information

ECO LECTURE 36 1 WELL, SO WHAT WE WANT TO DO TODAY, WE WANT TO PICK UP WHERE WE STOPPED LAST TIME. IF YOU'LL REMEMBER, WE WERE TALKING ABOUT

ECO LECTURE 36 1 WELL, SO WHAT WE WANT TO DO TODAY, WE WANT TO PICK UP WHERE WE STOPPED LAST TIME. IF YOU'LL REMEMBER, WE WERE TALKING ABOUT ECO 155 750 LECTURE 36 1 WELL, SO WHAT WE WANT TO DO TODAY, WE WANT TO PICK UP WHERE WE STOPPED LAST TIME. IF YOU'LL REMEMBER, WE WERE TALKING ABOUT THE MODERN QUANTITY THEORY OF MONEY. IF YOU'LL REMEMBER,

More information

what a number is on a scale. The number on the scale is a neutral fact. It is a circumstance.

what a number is on a scale. The number on the scale is a neutral fact. It is a circumstance. Katrina Ubell: You are listening to the Weight Loss For Busy Physicians podcast with Katrina Ubell, MD, episode number 116. Welcome to Weight Loss For Busy Physicians, the podcast where busy doctors like

More information

Module 4 Lesson 1 TRANSCRIPT

Module 4 Lesson 1 TRANSCRIPT Module 4 Lesson 1 TRANSCRIPT Glad to have you are back with me, that you found a minute to yourself, and you are ready to dive into Module 4, Lesson 1. Lesson 1 is about the Establish stage. We are about

More information

Multimedia and Arts Integration in ELA

Multimedia and Arts Integration in ELA Multimedia and Arts Integration in ELA TEACHER: There are two questions. I put the poem that we looked at on Thursday over here on the side just so you can see the actual text again as you're answering

More information

Contribute to CircuitPython with Git and GitHub

Contribute to CircuitPython with Git and GitHub Contribute to CircuitPython with Git and GitHub Created by Kattni Rembor Last updated on 2018-07-25 10:04:11 PM UTC Guide Contents Guide Contents Overview Requirements Expectations Grab Your Fork Clone

More information

MITOCW watch?v=ir6fuycni5a

MITOCW watch?v=ir6fuycni5a MITOCW watch?v=ir6fuycni5a The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

The Layer Blend Modes drop-down box in the top left corner of the Layers palette.

The Layer Blend Modes drop-down box in the top left corner of the Layers palette. Photoshop s Five Essential Blend Modes For Photo Editing When it comes to learning Photoshop, believe it or not, there's really only a handful of things you absolutely, positively need to know. Sure, Photoshop

More information

MITOCW R3. Document Distance, Insertion and Merge Sort

MITOCW R3. Document Distance, Insertion and Merge Sort MITOCW R3. Document Distance, Insertion and Merge Sort The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational

More information

Microsoft Excel Lab Two (Completed 03/02/18) Transcript by Rev.com. Page 1 of 6

Microsoft Excel Lab Two (Completed 03/02/18) Transcript by Rev.com. Page 1 of 6 [00:00:31] Speaker 1: Hello everyone and welcome to excel lab two. To get started with this lab you will need two files. You will need excel lab two instructions file also, you will need excel lab two

More information

2809 CAD TRAINING: Part 1 Sketching and Making 3D Parts. Contents

2809 CAD TRAINING: Part 1 Sketching and Making 3D Parts. Contents Contents Getting Started... 2 Lesson 1:... 3 Lesson 2:... 13 Lesson 3:... 19 Lesson 4:... 23 Lesson 5:... 25 Final Project:... 28 Getting Started Get Autodesk Inventor Go to http://students.autodesk.com/

More information

Autodesk University Laser-Scanning Workflow Process for Chemical Plant Using ReCap and AutoCAD Plant 3D

Autodesk University Laser-Scanning Workflow Process for Chemical Plant Using ReCap and AutoCAD Plant 3D Autodesk University Laser-Scanning Workflow Process for Chemical Plant Using ReCap and AutoCAD Plant 3D LENNY LOUQUE: My name is Lenny Louque. I'm a senior piping and structural designer for H&K Engineering.

More information

Obviously, this is after you start to get some traffic, but that is one of the steps, so I want to get that in there.

Obviously, this is after you start to get some traffic, but that is one of the steps, so I want to get that in there. Traffic Generation We ve built our authority site our squeeze page, and we may or may not have created a niche site, if you wanted to go that way. All of these traffic sources that I m going to get into

More information

SELF RELIANCE. How self reliant are you? And how do you define it? Mastering others is strength. Mastering yourself is true power.

SELF RELIANCE. How self reliant are you? And how do you define it? Mastering others is strength. Mastering yourself is true power. SELF RELIANCE How self reliant are you? And how do you define it? EPISODE # 7 2 of a Daily Dose of Greatness Quest with Trevor Crane DAILY QUOTES The measure of a man is what he does with power. -Plato

More information

Microsoft Excel Lab Three (Completed 03/02/18) Transcript by Rev.com. Page 1 of 5

Microsoft Excel Lab Three (Completed 03/02/18) Transcript by Rev.com. Page 1 of 5 Speaker 1: Hello everyone and welcome back to Microsoft Excel 2003. In today's lecture, we will cover Excel Lab Three. To get started with this lab, you will need two files. The first file is "Excel Lab

More information

Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat )

Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat ) 60 Minutes of Excel Secrets Key Terms Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat ) Add-Ins AutoCorrect Module 1 Corrects typographical,

More information

10 Copy And Paste Templates. By James Canzanella

10 Copy And Paste  Templates. By James Canzanella 10 Copy And Paste Email Templates By James Canzanella 1 James Canzanella All Rights Reserved This information is for your eyes only. This ebook is for your own personal use and is not to be given away,

More information

Ep #138: Feeling on Purpose

Ep #138: Feeling on Purpose Ep #138: Feeling on Purpose Full Episode Transcript With Your Host Brooke Castillo Welcome to the Life Coach School Podcast, where it's all about real clients, real problems and real coaching. Now, your

More information

MITOCW MITCMS_608S14_ses03_2

MITOCW MITCMS_608S14_ses03_2 MITOCW MITCMS_608S14_ses03_2 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

Automate Your Social Media Marketing (Tutorial)

Automate Your Social Media Marketing (Tutorial) Automate Your Social Media Marketing (Tutorial) I get it, you're busy. Buildings don't design themselves. But as we've talked about before, social media marketing is important and you need to continue

More information

Group Coaching Success Free Video Training #1 Transcript - How to Design an Irresistible Group

Group Coaching Success Free Video Training #1 Transcript - How to Design an Irresistible Group Group Coaching Success Free Video Training #1 Transcript - How to Design an Irresistible Group Hi! Michelle Schubnel here, President and Head Coach over at CoachAndGrowRich.com and creator of the Group

More information

Rubik's Cube Solution

Rubik's Cube Solution Rubik's Cube Solution This Rubik's Cube solution is very easy to learn. Anyone can do it! In about 30 minutes with this guide, you'll have a cube that looks like this: Throughout this guide, I'll be using

More information

OBERLO: A FANTASTIC APP THAT LL TURN YOUR SHOP INTO A SUPER PROFIT MAKING MACHINE BY CONNECTING IT TO ALIEXPRESS!

OBERLO: A FANTASTIC APP THAT LL TURN YOUR SHOP INTO A SUPER PROFIT MAKING MACHINE BY CONNECTING IT TO ALIEXPRESS! OBERLO: A FANTASTIC APP THAT LL TURN YOUR SHOP INTO A SUPER PROFIT MAKING MACHINE BY CONNECTING IT TO ALIEXPRESS! Welcome back to my series for the videos Sells Like Hotcakes on how to create your most

More information

Lesson 4: Develop and Launch an Engaging Website

Lesson 4: Develop and Launch an Engaging Website Chapter 1, Video 1: "Welcome to Lesson 4" Welcome to Lesson number 4. This is a lesson in which the old proverbial the rubber meets the road. To this point, you've created a strategy. You've got your business

More information

Zoë Westhof: Hi, Michael. Do you mind introducing yourself?

Zoë Westhof: Hi, Michael. Do you mind introducing yourself? Michael_Nobbs_interview Zoë Westhof, Michael Nobbs Zoë Westhof: Hi, Michael. Do you mind introducing yourself? Michael Nobbs: Hello. I'm Michael Nobbs, and I'm an artist who lives in Wales. Zoë Westhof:

More information

Mike Wynn - ArtofAlpha.com

Mike Wynn - ArtofAlpha.com The Art of Alpha Presents' 7 Proven Conversation Starters That Lead To Dates How to easily approach any women, And not get stuck in your head wondering what to say I just let another beautiful woman slip

More information

OG TRAINING - Recording 2: Talk to 12 using the Coffee Sales Script.

OG TRAINING - Recording 2: Talk to 12 using the Coffee Sales Script. OG TRAINING - Recording 2: Talk to 12 using the Coffee Sales Script. Welcome to The second recording in this series which is your first training session and your first project in your new gourmet coffee

More information