Saving Time Bitches (Investment Banking & Private Equity)

That's right. It's summer time.

Although doing deals and pounding out diligence is sweet, the Hamptons are sweeter.

How can we save time to get out of the office faster?

Putting together a list of best practices and techniques (applicable to junior PE & banking professionals). There are a few precedent lists out there, so repaste and steel credit for other peoples' thoughtful responses.

1. Keeping paper / Excel tracker of tasks.

There are different flavors, and everyone has their own system, but keep track of tasks by time / priority.

2. Send out all external to-dos in the AM or before the weekend (eg, consultants / accountants / bankers / lawyers).

Minimizes chance of someone else's mess blowing up my weekend.

3. Expectations

Set expectations double how long you think it will take and push back as much as possible.

4. Research

Ask friends for their research logins / access. Getting good research always a pain

5. Slide templates

I save down slide templates for generic internal deliverables (company profile, diligence deck, memo, etc.) Makes it faster to fill out a new one.

6. BamSEC

BamSEC for public co financials. I don't use public co data that often anymore, but I do read 10-Ks for relevant public peers. This shaves a few seconds off grabbing the relevant files.

7. Logointern.com for logos.

Saw this on WSO a while back. Makes it way faster to grab a couple logos or make an industry overview slide (many logos).

8. Google alerts

Google alerts for relevant portcos / industries (grabbed this off WSO too).

9. Folder in outlook / on Desktop for each portco.

Includes all latest financials, correspondence, etc. Saves time when I get the: "Hey could you send the latest ___ for XYZ co? Thx."

Mod Note (Andy): top 50 posts of 2017, this one ranks #33 (based on # of silver bananas)

112 Comments
 

I would love it if you could PM me this too -- I just made a post on how my modelling skills are lacking, so this would be useful for me.

Go Carl Icahn though!

"I did it for me...I liked it...I was good at it. And I was really... I was alive."
 

Probably old news, but for checking I always compare the prior PDF with the new version I'm about to send and I go page-by-page alternating between the two (alt-tab). Makes it easy to see all of the changes.

Saves time, because then I have an answer when VP says "Why did this change" as opposed to scrambling to 20 minutes and looking unprepared.

 

I usually do 2 - 3x TLB (bank debt) and 2 - 3x other debt (mezz vs. TLC vs. senior notes); and typically ~1x revolver commitment, but a lot of times I swag it to get a round number.

Would be great to hear from someone in LevFin with a better illustrative read ;-)

 

>

Good list, however,

Would slightly disagree with this as seems like (now) data service providers are tracking if an account is logged in multiple times or at different IP addresses

-
 
"yelloweat" >

Good list, however,

Would slightly disagree with this as seems like (now) data service providers are tracking if an account is logged in multiple times or at different IP addresses

For sure have fired people for multiple people logged in to the same id simultaneously.
 

For that matter, add "Copy as Picture" to the Quick Access Toolbar, it will show up as a green circle icon. Click it and select to copy as printed rather than as shown on the screen. Voila.

Be excellent to each other, and party on, dudes.
 

I don't get this. Why? Any changes in the Excel data are already linked directly to the Powerpoint file as long as they are in the same folder.

GoldenCinderblock: "I keep spending all my money on exotic fish so my armor sucks. Is it possible to romance multiple females? I got with the blue chick so far but I am also interested in the electronic chick and the face mask chick."
 

Regarding using the same excel file over and over again, you should seriously consider versioning in case the file becomes corrupted or you want to re-visit an assumption down the road. Also might help with any potential audits.

  1. Checks for existing files. Paste this into developer (alt+f11)!

Function FileExist(FilePath As String) As Boolean 'PURPOSE: Test to see if a file exists or not 'SOURCE: www.TheSpreadsheetGuru.com/The-Code-Vault 'RESOURCE: http://www.rondebruin.nl/win/s9/win003.htm

Dim TestStr As String

'Test File Path (ie "C:\Users\Chris\Desktop\Test\book1.xlsm") On Error Resume Next TestStr = Dir(FilePath) On Error GoTo 0

'Determine if File exists If TestStr = "" Then FileExist = False Else FileExist = True End If

End Function

  1. Excel version control:

Sub SaveNewVersion_Excel() 'PURPOSE: Save file, if already exists add a new version indicator to filename 'SOURCE: www.TheSpreadsheetGuru.com/The-Code-Vault

Dim FolderPath As String Dim myPath As String Dim SaveName As String Dim SaveExt As String Dim VersionExt As String Dim Saved As Boolean Dim x As Long

TestStr = "" Saved = False x = 2

'Version Indicator (change to liking) VersionExt = "_v"

'Pull info about file On Error GoTo NotSavedYet myPath = ActiveWorkbook.FullName myFileName = Mid(myPath, InStrRev(myPath, "\") + 1, InStrRev(myPath, ".") - InStrRev(myPath, "\") - 1) FolderPath = Left(myPath, InStrRev(myPath, "\")) SaveExt = "." & Right(myPath, Len(myPath) - InStrRev(myPath, ".")) On Error GoTo 0

'Determine Base File Name If InStr(1, myFileName, VersionExt) > 1 Then myArray = Split(myFileName, VersionExt) SaveName = myArray(0) Else SaveName = myFileName End If

'Test to see if file name already exists If FileExist(FolderPath & SaveName & SaveExt) = False Then ActiveWorkbook.SaveAs FolderPath & SaveName & SaveExt Exit Sub End If

'Need a new version made Do While Saved = False If FileExist(FolderPath & SaveName & VersionExt & x & SaveExt) = False Then ActiveWorkbook.SaveAs FolderPath & SaveName & VersionExt & x & SaveExt Saved = True Else x = x + 1 End If Loop

'New version saved MsgBox "New file version saved (version " & x & ")"

Exit Sub

'Error Handler NotSavedYet: MsgBox "This file has not been initially saved. " & _ "Cannot save a new version!", vbCritical, "Not Saved To Computer"

End Sub

[disclaimer: google is amazing, and this likely will need to be tweaked slightly to your file paths etc.]

Edit: on #1 change activeworkbook to activedocument

lastly start using OneNote for your tasks/list

If it isn't painfully obvious at this point start automating the repetitive tasks that take you a lot of time.

Edit: Easier yet just buy all the add in a from www.spreadsheetguru.com I think it will automate a good portion of that list.

 

adding a few others to the list...

  1. MappingIntern.com - similar to LogoIntern, but great for creating a quick map of US locations (company geo footprint, etc)

  2. Macros. Try them. One of the posters keyed me into this - great way to save time on some of the most mind numbing formatting work.

 

To trace precedents with multiple links:

  • Run the macro on a formula with multiple links

  • A dialogue box will pop up

  • Enter the number corresponding to the link you are seeking to audit (i.e., first linked number is in the leftmost part of the equation).

  • Enjoy!!

    Sub AUDIT_TRACE_PRECEDENT_2ND_LINK() On Error Resume Next LINK_NUMBER = InputBox("Link number...") Selection.ShowPrecedents ActiveCell.NavigateArrow TowardPrecedent:=True, ArrowNumber:=1, LinkNumber _ :=LINK_NUMBER

    End Sub

 

Reprehenderit placeat minima iure vel id in voluptas voluptates. Fugiat et eum doloremque sit iure. Est sunt et impedit tempora amet. Dicta voluptatibus corporis voluptatem. Maiores et aut et possimus sed sed optio.

Magnam non vero perspiciatis hic. Laborum adipisci provident aut est quas sunt. Dolorum est sunt et ut ut. Corporis quis repudiandae ipsa maiores consectetur.

Explicabo minima voluptatem aut eum odio repudiandae quia. Qui vero iusto est unde et tempora reprehenderit. Quia eum neque rerum. Eum sint et fugiat vero in. Voluptas sint non qui voluptatem culpa. Et odio aut dolorem a maiores quaerat rerum.

Autem voluptas ullam vero tempore sit optio. Non nihil illo culpa magni a vero. Officia eaque aut porro aut aut perferendis nobis. Excepturi tempore labore repudiandae aliquid quia esse. Illo in rerum sunt natus.

 

Deserunt exercitationem facilis sunt ut. Qui laboriosam quaerat qui non aut quia. Necessitatibus soluta omnis aliquid ratione.

Ea suscipit libero occaecati aut. Dolore aut voluptatem voluptates dicta. Saepe quidem sunt cumque quia. Doloribus eos expedita autem iusto eos a. Suscipit ut cupiditate occaecati.

Enim animi id facilis delectus quidem. Ducimus quisquam itaque nesciunt et et unde. Nostrum qui quasi aut sint nostrum culpa. Qui ea et deserunt dolorem ea quia consequatur.

 

Totam omnis eum consequatur praesentium officia consequatur rem. Aliquam alias sed aut. Modi praesentium nemo quia. Quia aliquam consectetur tenetur laborum totam odio.

In quia error sint. Veniam veniam quos eius praesentium. Quo ut magnam consectetur ratione et aut. Provident repellat debitis facilis sit dolor. Ipsum at dolorem ut facere rerum ipsum rem.

Nemo id tempora mollitia et laboriosam aut. Unde minima dolorem occaecati doloremque minus fugit sint qui. Quod sint iusto ut et molestiae.

Atque quam eveniet sint atque est atque soluta. Ipsum expedita quam aut laboriosam velit aliquam aut fugit. Rerum voluptatem neque minus voluptatum. Dolorem laboriosam dignissimos impedit est ipsum.

 

Sint voluptatem pariatur qui nostrum voluptas. Accusamus sint quia minus ut. Aperiam beatae dolorem unde minima. Fugiat ea id sint porro. Nisi molestiae autem provident dolor eos et pariatur alias. Voluptatem hic laudantium aliquam.

Soluta qui quae tempora accusamus. Quo et provident quia laborum soluta eum. Exercitationem maxime rerum commodi. Aspernatur exercitationem recusandae commodi ut sint repellat.

Aut numquam explicabo itaque doloremque ipsa voluptatum. Iusto praesentium omnis consequuntur rerum qui id. Quia quaerat sit natus qui repellat quisquam. Odio culpa voluptatibus voluptas ipsa. Delectus commodi cum quis vitae.

Career Advancement Opportunities

August 2026 Investment Banking

  • Evercore 01 99.4%
  • Moelis & Company 01 98.9%
  • JPMorgan 01 98.3%
  • Morgan Stanley 08 97.8%
  • Goldman Sachs 02 97.2%

Overall Employee Satisfaction

August 2026 Investment Banking

  • Moelis & Company No 99.4%
  • Evercore No 98.9%
  • Morgan Stanley 01 98.3%
  • Banco Santander 02 97.8%
  • BMO Capital Markets 12 97.2%

Professional Growth Opportunities

August 2026 Investment Banking

  • Evercore 01 99.4%
  • Moelis & Company 01 98.9%
  • Morgan Stanley 06 98.3%
  • Goldman Sachs 01 97.8%
  • JPMorgan 01 97.2%

Total Avg Compensation

August 2026 Investment Banking

  • Vice President (16) $429
  • Associates (48) $259
  • 3rd+ Year Analyst (8) $210
  • 2nd Year Analyst (25) $178
  • Intern/Summer Associate (14) $159
  • 1st Year Analyst (83) $151
  • Intern/Summer Analyst (75) $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
BankonBanking's picture
BankonBanking
99.0
3
kanon's picture
kanon
99.0
4
Secyh62's picture
Secyh62
99.0
5
CompBanker's picture
CompBanker
98.9
6
GameTheory's picture
GameTheory
98.9
7
dosk17's picture
dosk17
98.9
8
Betsy Massar's picture
Betsy Massar
98.9
9
DrApeman's picture
DrApeman
98.9
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...”