10 powerful Excel features every user should know: 📊

Flash Fill:

Let's say you've got all the data you need––it just isn't in the right place.

"Flash Fill" is your friend.

Quickly extract pieces of text from one cell and move them to another OR combine text from multiple cells into a single place.
Camera Snapshot

Here's a little-known trick to move data between workbooks.

First, add "camera" to your quick access toolbar.

•Select your data ⇢ click 📷
•Paste to new workbook

The cool part: When you update the main workbook, the data in the picture updates as well! 🤯
Analyze Data:

I was never very good at Pivot tables, graphs, & analyzing data on my own.

Lucky for me (and you) Excel will do the heavy lifting for us.

•Select the range of data
•"Home" ⇢ "Analyze Data"

Charts, tables, & analysis––premade.

Click "insert" & you're done!
X-Lookup

If you're an old-school Excel user, there's no doubt you're familiar with V-Lookup.

X is the new & improved version, here's why:

•Lookup array does NOT have to be only on the left-hand side.
•Allows you to return multiple values at the same time.

Here's how: 👇🏻
Sparklines:

One of my personal favorites.

Sparklines allow you to insert miniature graphs inside an individual cell to easily visualize data.

•Select range
•Insert ⇢ Sparkline
• Choose type
Geography / Maps:

Often, a geographical representation of your data can be quite useful.

Need to see where the majority of your customers live?

Interested in which states are driving the most revenue?

•Select your range of data
•Insert ⇢ Map

It's that easy.
Live stockmarket data:

Easily track 31 different metrics related to companies of your choice.

• Enter ticker symbols
• Select the "Data" tab
• Select "Stocks"
• Choose the metrics you'd like to track.
Conditional Formatting:

As you can tell, I'm a big fan of visualizing data.

Conditional formatting is one of the best (and easiest) ways to do this.

Let's face it, if your data looks good, you look good.

Spice it up by adding data bars, heat maps, or icon sets to show trends:
Drop Down lists:

If you've spent any time working in spreadsheets at all you know one thing:

They're only as good as the data entered.

My favorite way to ensure consistency & accuracy is Drop Down lists.

It's easy & guarantees the data will be entered correctly––every time.
Background Images:

OK, I'll be honest.

I'm not sure how "powerful" this is, but man, it looks cool.

Did you know you can add your own custom background images to your spreadsheets?

You didn't? Me either.

Check it out:
Thanks for reading!

If you learned something new today:

Follow me @blakeaburge for weekly threads on business, productivity, & building a better you.

Check out my newsletter:

"While You Were Away"

•The best of Twitter
•In your inbox
•Every Sunday
https://t.co/KPDWcYfMx3
For those asking, here's another on based on Google Sheets I did a while back.
https://t.co/Mmvfz7aPpD

More from Blake Burge 💡

How to get rich, learn anything, and get more done.

11 Tweets to change your life. 🧵

1/ Learn Anything:

A masterclass from my friend @SahilBloom

The 6-step framework he uses to learn anything.

(1) Identify & Establish
(2) Research
(3) Skin in the Game
(4) Engage Community
(5) Teach
(6) Reflect &


2/ A cheat sheet for building your career:

20 things you'll wish you knew sooner.

An amazing piece by @RomeenSheth on career


3/ The 5 Traits of Elite Individuals:

I'm not sure what rock I've been living under...

I've somehow just now stumbled across @NdamukongSuh's Twitter content.

It's a goldmine.

Case in point


4/ Where you are -> Where you're going:

•Be consistent
•Set higher standards
•Learn to say "no" more

More from Reading

You May Also Like

A brief analysis and comparison of the CSS for Twitter's PWA vs Twitter's legacy desktop website. The difference is dramatic and I'll touch on some reasons why.

Legacy site *downloads* ~630 KB CSS per theme and writing direction.

6,769 rules
9,252 selectors
16.7k declarations
3,370 unique declarations
44 media queries
36 unique colors
50 unique background colors
46 unique font sizes
39 unique z-indices

https://t.co/qyl4Bt1i5x


PWA *incrementally generates* ~30 KB CSS that handles all themes and writing directions.

735 rules
740 selectors
757 declarations
730 unique declarations
0 media queries
11 unique colors
32 unique background colors
15 unique font sizes
7 unique z-indices

https://t.co/w7oNG5KUkJ


The legacy site's CSS is what happens when hundreds of people directly write CSS over many years. Specificity wars, redundancy, a house of cards that can't be fixed. The result is extremely inefficient and error-prone styling that punishes users and developers.

The PWA's CSS is generated on-demand by a JS framework that manages styles and outputs "atomic CSS". The framework can enforce strict constraints and perform optimisations, which is why the CSS is so much smaller and safer. Style conflicts and unbounded CSS growth are avoided.