<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[boredom-at-work]]></title><description><![CDATA[boredom-at-work]]></description><link>https://boredom-at-work.hashnode.dev</link><image><url>https://cdn.hashnode.com/uploads/logos/69b9315bc22d3eeb8a98a71a/72c5e516-8ac4-4e59-92f3-7580999b05fc.jpg</url><title>boredom-at-work</title><link>https://boredom-at-work.hashnode.dev</link></image><generator>RSS for Node</generator><lastBuildDate>Fri, 11 Sep 2026 22:19:16 GMT</lastBuildDate><atom:link href="https://boredom-at-work.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[I Stopped Googling Excel Formulas & Here's What I Use Instead]]></title><description><![CDATA[Every office worker knows the pain: you need a formula, you Google it, you get 15 different Stack Overflow answers, and half of them don't work with your Excel version.
I switched to asking ChatGPT ab]]></description><link>https://boredom-at-work.hashnode.dev/i-stopped-googling-excel-formulas-here-s-what-i-use-instead</link><guid isPermaLink="true">https://boredom-at-work.hashnode.dev/i-stopped-googling-excel-formulas-here-s-what-i-use-instead</guid><category><![CDATA[chatgpt]]></category><category><![CDATA[excel]]></category><category><![CDATA[Productivity]]></category><category><![CDATA[AI]]></category><dc:creator><![CDATA[twelvecharacters]]></dc:creator><pubDate>Tue, 17 Mar 2026 11:01:14 GMT</pubDate><enclosure url="https://cdn.hashnode.com/uploads/covers/69b9315bc22d3eeb8a98a71a/3bc9670a-933f-461d-b1e2-d1e30e89df96.webp" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Every office worker knows the pain: you need a formula, you Google it, you get 15 different Stack Overflow answers, and half of them don't work with your Excel version.</p>
<p>I switched to asking ChatGPT about 6 months ago. Haven't Googled an Excel formula since.</p>
<h2>The Setup (Takes 30 Seconds)</h2>
<p>No plugins. No extensions. Just open <a href="https://chatgpt.com">ChatGPT</a> and describe what you need in plain English.</p>
<p><strong>Me:</strong> "I have sales data. Column A is product names, column B is revenue. Give me a formula to sum revenue only for products containing 'Premium'."</p>
<p><strong>ChatGPT:</strong> =SUMIF(A:A,"Premium",B:B)</p>
<p>That's it. Works on free tier.</p>
<h2>Where It Actually Saves Time</h2>
<h3>1. Nested Formulas Nobody Memorizes</h3>
<p>"If sales &gt; \(50K, commission is 10%. Between \)10K-\(50K it's 7%. Below \)10K it's 5%."</p>
<p>=IF(B2&gt;50000,B20.1,IF(B2&gt;=10000,B20.07,B2*0.05))</p>
<p>Could I figure this out myself? Sure. In 15 minutes. ChatGPT gives it in 3 seconds.</p>
<h3>2. The Formula You'd Never Find on Google</h3>
<p>"Extract only the numbers from text like 'Order #12345'"</p>
<p>=TEXTJOIN("",TRUE,IF(ISNUMBER(MID(A2,ROW(INDIRECT("1:"&amp;LEN(A2))),1)*1),MID(A2,ROW(INDIRECT("1:"&amp;LEN(A2) )),1),""))</p>
<p>Nobody is writing that from memory. Nobody.</p>
<h3>3. VBA Macros Without Learning VBA</h3>
<p>"Write a macro that bold headers, auto-fits columns, and adds borders to any data I paste."</p>
<p>ChatGPT outputs a complete, working VBA script. You paste it into Alt+F11 → Insert Module, done. What used to take a developer now takes 30 seconds.</p>
<h3>4. Upload Your Actual Spreadsheet</h3>
<p>Both free and Plus users can upload .xlsx files directly. Then ask:</p>
<ul>
<li><p>"What trends do you see?"</p>
</li>
<li><p>"Find outliers in this data"</p>
</li>
<li><p>"Create a chart of monthly revenue"</p>
</li>
</ul>
<p>ChatGPT sees your actual column names and data. Way better than describing your spreadsheet in text.</p>
<h2>The Prompting Trick That Makes Everything Better</h2>
<p>Bad prompt: <em>"Write a formula for commission"</em></p>
<p>Good prompt: <em>"Write a formula for commission. Sales amount is in column C, starting row 2. Commission is 5% under \(1000, 8% for \)1000-$5000, 12% above. I'm using Excel 2019."</em></p>
<p>Three things to always include:</p>
<ol>
<li><p><strong>Your column layout</strong> (which data is where)</p>
</li>
<li><p><strong>Your Excel version</strong> (some functions are 365-only)</p>
</li>
<li><p><strong>Edge cases</strong> ("what if the cell is empty?")</p>
</li>
</ol>
<h2>What About Copilot?</h2>
<p>Microsoft Copilot works <em>inside</em> Excel — it can edit cells directly. ChatGPT can't.</p>
<p>But ChatGPT is better for:</p>
<ul>
<li><p><strong>Complex formulas</strong> with detailed explanations</p>
</li>
<li><p><strong>VBA macros</strong> (Copilot's macro support is limited)</p>
</li>
<li><p><strong>Learning</strong> — ask "explain this step by step"</p>
</li>
<li><p><strong>Free tier</strong> — Copilot's premium features need M365</p>
</li>
</ul>
<p>I use both: ChatGPT to figure out the formula, Copilot to apply it inside Excel.</p>
<p>I wrote a <a href="https://www.boredom-at-work.com/chatgpt-for-excel/">full comparison with practical examples</a> if you want to go deeper — including copy-paste prompt templates for common tasks like lookups, conditional sums, and data validation.</p>
<h2>Quick Reference: Prompts You Can Steal</h2>
<table>
<thead>
<tr>
<th>Task</th>
<th>Prompt</th>
</tr>
</thead>
<tbody><tr>
<td>Lookup</td>
<td>"Write an INDEX-MATCH to find [value] in [column] and return [result column]"</td>
</tr>
<tr>
<td>Conditional sum</td>
<td>"SUMIFS formula to sum [column] where [condition1] AND [condition2]"</td>
</tr>
<tr>
<td>Date math</td>
<td>"Calculate business days between [cell1] and [cell2]"</td>
</tr>
<tr>
<td>Text cleanup</td>
<td>"Extract [first name / domain / numbers] from [cell]"</td>
</tr>
<tr>
<td>Deduplication</td>
<td>"Count unique values in [column], I'm using Excel [version]"</td>
</tr>
</tbody></table>
<h2>One Warning</h2>
<p>Always test formulas on a small sample first. ChatGPT gets it right ~90% of the time, but that other 10% can mess up your data if you apply it to 10,000 rows blindly.</p>
<hr />
<p><em>What Excel formula have you been struggling with? Drop it in the comments — I'll show you the ChatGPT prompt for it.</em></p>
]]></content:encoded></item></channel></rss>