Finding specific values in a table where you don't necessarily know which column row the item is in. Similar to vlookup but a bit beefed up.

As an aside, I definitely got dinged at an interview for not knowing this. Then I entered the workforce and literally never encountered a situation where I needed it until ~2 years in.

"There's nothing you can do if you're too scared to try." - Nickel Creek
 

If you used vlookup instead of index match in my organisation you would probably be fired.

Index match is also more dynamic. If you add columns into a table later, or change the order of columns the formula will not break.

 

Offset Count If(And If(And(Offset(Count

I come from down in the valley, where mister when you're young, they bring you up to do like your daddy done
 

It's actually not properly sequenced.

I use If(And(Count(Offset a lot to be able to change debt structures, reversion period, and to adjust TI/LCs for downtime.

Using count just eliminates the need to number your periods at the top of the pro-forma by counting the dates instead and offset lets you toggle different scenarios listed on the summary tab.

I come from down in the valley, where mister when you're young, they bring you up to do like your daddy done
 

New job, so I don't use it anymore, but used this all the time when I was in lending.  Toggle loan term, refinancing cases, rates, etc. simultaneousy. 

I come from down in the valley, where mister when you're young, they bring you up to do like your daddy done
 

seconding this

other than that, either succumb to the firm preference with LOOKUPS or become exceedingly good at writing a vlookup/hlookup on the fly

It was mind-opening when I realized 90% of reports (at the firm) were done automatically feeding through other software. I feel bad for the guys I know at Morgan Stanley who have to write reports from excel all day every day.

 

Lol, this thread brings me back to the Analyst days of REFing the shit out of a formula and fucking up the entire model then frantically trying to fix it before someone notices.

 

Might be a dumb question, but how do you get super proficient in utilizing these excel formulas? I'm currently in UG and have the REFM Modeling course. Am currently reading Linneman's textbook and taking some RE Finance and Investment Analysis at UCLA Extension. I also have my Argus Cert, but when reading this thread I feel like I am lacking in Excel.

“The three most harmful addictions are heroin, carbohydrates, and a monthly salary.” - Nassim Taleb
 
SoCalRE:
Might be a dumb question, but how do you get super proficient in utilizing these excel formulas? I'm currently in UG and have the REFM Modeling course. Am currently reading Linneman's textbook and taking some RE Finance and Investment Analysis at UCLA Extension. I also have my Argus Cert, but when reading this thread I feel like I am lacking in Excel.
Practicing/using it everyday
 

sorry if stupid question, ive seen people mention this but ive never had this issue since im always saving multiple versions of a file im working on....e.g. v1, v2, v3 i dont work directly with debt or anything but i sit next to our Liquidity team and they never have such issues due to making multiple versions each time they make a change or put something through. why does this seem to be different in banking / re?

 

Everyone here has pretty much covered the most common and useful formulas so I will weigh in on a couple resources for those trying to refine their Excel skills:

  • Excel basics: https://excelexposure.com/ is a great spot to start no matter what level of Excel you are at. He lays out a very easy to follow syllabus that is organized by ability level.

  • Real estate centric Excel skills: https://www.adventuresincre.com/re-modeling/ is an awesome (and one of few) real estate centric sites and once you have a firm grasp on basic Excel formulas this is a great resource for learning more real estate oriented Excel analysis.

  • Other modeling courses: there are a bunch of paid real estate modeling courses you can take that are publicized here, others can weigh in on which provide the most valuable

If you are entrepreneurial and self disciplined however the first two will give you a great basis for an analyst career.

 

IF/Then and SUMPRODUCT

There is currently a battle in my company over the use of the SUBTOTAL command. It's the nerdiest thing ever and it cracks me up.

Commercial Real Estate Developer
 

Team subtotal.

You seem to be a gentleman and a scholar, so I think I know where you stand.

I come from down in the valley, where mister when you're young, they bring you up to do like your daddy done
 

I agree with most everything on here but I gotta be honest, if you think index is superior to v/hlookups in all instances you're doing it wrong.

"Who am I? I'm the guy that does his job. You must be the other guy."
 

2 advantages of VLOOKUP beyond the obvious simpler syntax:

  1. If switching between sheets, it's much easier/faster to track. With Index/Match you have to switch between the sheets 3 times, with VLOOKUP only once. Can be confusing. Especially when you have to combine more columns for search criteria and especially with new users.

  2. If you have to fill in a large and same formatted database with a primary key index, it's much easier and you can copy it easier.

IMM is of course a better tool to use for standardized, repetitive models, but often it's too complex for a small lookup and search function.

I use VLOOKUP much more often, but like IMM for the heavy lifting modeling stuff we do.

Also, there are easy ways to get around the 'fixed' column/row reference and you can make that dynamic pretty easily, so if someone else goes in and deletes/adds rows to the table it won't cause an error.

"Who am I? I'm the guy that does his job. You must be the other guy."
 

How many of you Excel guru's can operate without a mouse? I've heard you become light years quicker once you learn all the keyboard shortcuts and hotkeys.

Trying to decide if I want to put in the brain damage to learn or just keep using mouse.

 

I can use the keyboard for almost all functions. But there are some things that are just too annoying to do without a mouse like some formatting.

 

What formatting is quicker with a mouse?

Shortcuts probably save more time formatting than they do w/ anything else.

I come from down in the valley, where mister when you're young, they bring you up to do like your daddy done
 

Don't try to memorize all the shortcuts at once, the way I've built up my memory is when I find myself reaching for my mouse frequently I'd force myself to find the shortcut for it and write it down on a sticky. I'd keep 7-8 in front of me until I had them memorized, then move onto the next bunch. It's easier to memorize them if you're actually using them rather than just memorizing a bunch of 3-character strings and trying to organize that mentally. 

 

Some quick shortcuts I use all the time:

Ctrl + Shift + & = puts boarder around selected area

Ctrl + Shift + - = Erases all boarders in a selected area

Ctrl + Shift + $ = Aromatically puts numbers in Currency format (Although most like to use Accounting format without "$" sign, so Ctrl + 1 = brings up format window and just use Tab key to get to accounting and put in "none" for currency symbol and 0 decimals)

Ctrl + [ = shows exactly where cells are in a selected formula by highlighting them. I like it better than tracing dependents/precedents

Alt + H + 0/9 = increase or decrease decimals. I for some reason find myself using this a lot

 

Good comments above. Some of my favorites:

  1. I use SUMIFS for multi-conditional summations rather than array formulas since it seems faster. Similarly with its sister functions like COUNTIFS and AVERAGEIFS. Though, be careful with AVERAGEIFS since it is a simple average rather than a weighted average.

  2. For other multi-conditional calculations that the aforementioned formulas can't handle, I use array formulas. While array formulas are great to get a lot of calculations done in one cell, I recommend using multiple columns to "show your work" for more complex calculations. This helps you diagnose issues and make your worksheets easier to understand.

  3. Lastly, I use PivotTables all the time. While not a formula per se, they are extremely useful. The trick I use most frequently with PivotTables is calculating weighted averages. See here for how to use a Calculated Field to determine the weighted average within a PivotTable. Simple averages can cause misleading conclusions, so I generally calculate both a simple average and a weighted average since this helps reveal outliers that may be driving a divergence between the two averages.

Nick Schoch - Apartment Loan Advisor
 

I’m just an intern, so probably what I use is different. But I use a lot of vlookups, sumifs, if combined with and/or. I know that these aren’t formulas, but a lot of work with the shortcut keys.

Array
 

Qui illo mollitia debitis modi id placeat. Dolore sint ex dolorum architecto sit.

Dolores consequatur quia sed consequatur consequuntur nihil aliquam. Asperiores rerum sunt quis velit reprehenderit autem unde. Rerum in magni perferendis odit veniam enim nemo exercitationem.

Quod debitis consectetur adipisci vel et ut. Possimus doloribus perspiciatis ut.

Dolorum id animi rerum vel laboriosam qui voluptatum. Alias rerum ut quisquam magnam dolorum. Repellendus cumque saepe error quos voluptatem ad occaecati. Natus ex facere qui velit molestiae aliquam. Hic vitae ipsum consequuntur molestias.

 

Illum deleniti et sint tempora et quae sed repellat. Et nemo nobis saepe temporibus officia sunt aut corporis. Non nisi modi odio.

Quos consequatur nostrum aut aliquam est. Quas animi voluptatum ea ut est itaque. Assumenda nisi non iure ut voluptates enim inventore. Consequatur enim nesciunt aliquam cum. Repudiandae sit sed et magni.

 

Aut est in quia quos ad sint. Consequatur dolorem tenetur rerum quia recusandae dolorem. Sit pariatur fugiat saepe et qui aut.

Cumque saepe corrupti commodi distinctio ut autem. Adipisci amet sequi quibusdam in aliquid delectus at. Ab repellat suscipit incidunt soluta dolorem inventore dolor. Eos quae architecto sunt adipisci laudantium. Quia voluptatem adipisci magnam est in est sed. Perspiciatis ipsa enim atque numquam ut dignissimos.

Pariatur itaque fugiat possimus cum voluptatem. Fugit omnis quo est velit praesentium iure maxime. Reiciendis laudantium occaecati similique quaerat.

Consectetur natus doloribus voluptatem quibusdam tempora autem. Sequi officiis ut nihil omnis quia. Praesentium tempora ea blanditiis enim voluptatem aperiam tenetur. Modi sint fugit dicta asperiores. Aut voluptatem neque exercitationem laboriosam voluptatem. Inventore placeat modi voluptatibus optio sint odit eveniet.

 

Et distinctio quia eaque. Velit eum repellendus inventore aliquid quam aut veniam.

Quaerat et quibusdam nam est natus aut. Exercitationem odit nemo eveniet non. Neque adipisci eligendi ducimus consequatur. Enim laborum magni commodi molestiae expedita exercitationem. Vero ratione nulla voluptas autem sed. Deserunt minus amet sit incidunt.

Career Advancement Opportunities

May 2024 Investment Banking

  • Jefferies & Company 02 99.4%
  • Goldman Sachs 19 98.8%
  • Harris Williams & Co. New 98.3%
  • Lazard Freres 02 97.7%
  • JPMorgan Chase 04 97.1%

Overall Employee Satisfaction

May 2024 Investment Banking

  • Harris Williams & Co. 18 99.4%
  • JPMorgan Chase 10 98.8%
  • Lazard Freres 05 98.3%
  • Morgan Stanley 07 97.7%
  • William Blair 03 97.1%

Professional Growth Opportunities

May 2024 Investment Banking

  • Lazard Freres 01 99.4%
  • Jefferies & Company 02 98.8%
  • Goldman Sachs 17 98.3%
  • Moelis & Company 07 97.7%
  • JPMorgan Chase 05 97.1%

Total Avg Compensation

May 2024 Investment Banking

  • Director/MD (5) $648
  • Vice President (20) $385
  • Associates (89) $259
  • 3rd+ Year Analyst (14) $181
  • Intern/Summer Associate (33) $170
  • 2nd Year Analyst (67) $168
  • 1st Year Analyst (205) $159
  • Intern/Summer Analyst (146) $101
notes
16 IB Interviews Notes

“... there’s no excuse to not take advantage of the resources out there available to you. Best value for your $ are the...”

Leaderboard

1
redever's picture
redever
99.2
2
Secyh62's picture
Secyh62
99.0
3
Betsy Massar's picture
Betsy Massar
99.0
4
BankonBanking's picture
BankonBanking
99.0
5
GameTheory's picture
GameTheory
98.9
6
CompBanker's picture
CompBanker
98.9
7
kanon's picture
kanon
98.9
8
dosk17's picture
dosk17
98.9
9
DrApeman's picture
DrApeman
98.8
10
bolo up's picture
bolo up
98.8
success
From 10 rejections to 1 dream investment banking internship

“... I believe it was the single biggest reason why I ended up with an offer...”