Close Menu
    Facebook X (Twitter) Instagram
    Wifi PortalWifi Portal
    • Blogging
    • SEO & Digital Marketing
    • WiFi / Internet & Networking
    • Cybersecurity
    • Tech Tools & Mobile / Apps
    • Privacy & Online Earning
    Facebook X (Twitter) Instagram
    Wifi PortalWifi Portal
    Home»Tech Tools & Mobile / Apps»I’ve used Excel for over a decade and didn’t know about this extremely useful trick
    Tech Tools & Mobile / Apps

    I’ve used Excel for over a decade and didn’t know about this extremely useful trick

    adminBy adminFebruary 22, 2026No Comments5 Mins Read
    Facebook Twitter LinkedIn Telegram Pinterest Tumblr Reddit WhatsApp Email
    I've used Excel for over a decade and didn't know about this extremely useful trick
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Excel is deceptively powerful. Every time I think I’ve squeezed everything out of it, it quietly reveals another door you can open with one function.

    This time, the trick is simple and maybe unintended, but fantastic regardless. It is indeed simple: Excel can build URLs, Excel can URL-encode whatever chaotic human text you throw at it, and Excel can display an image from a URL. Put those together and Excel becomes a lightweight front end for a whole universe of free image APIs.

    A laptop with Excel open, a clock on the left, and the Excel logo on the right.

    I stopped wasting time in Excel when I learned these 3 functions

    Small formulas, big time savings.

    The IMAGE function is the core trick

    Use it as an API client

    Excel sheet with QR codes
    Amir Bohlooli / MUO

    Let’s start with an example. Suppose you want to put QR codes in your Excel sheet, for an event, or whatever. Not just put them, but generate them right there in Excel. The problem: Excel doesn’t have a native QR-code function, but it doesn’t need one. If a service can generate an image via a URL, Excel can pull it in with IMAGE().

    The only part that trips people up is encoding. If you skip ENCODEURL(), your formulas will work until someone’s name includes a space, a dash, an emoji, or anything remotely human. ENCODEURL() is what keeps everything from exploding.

    Assume your sheet includes the names of your guests and whether they’ve got a ticket or not. You want the QR code to contain the guest’s name and whether they’ve paid. QRServer is a simple example of a static QR image API. The URL format is:

    https://api.qrserver.com/v1/create-qr-code/?size=200x200&data=[YOURDATA]&color=000000&bgcolor=FFFFFF

    In E2, this full formula generates the QR code:

    =IMAGE("https://api.qrserver.com/v1/create-qr-code/?size=200x200&data="&ENCODEURL("name="&A2&"; paid="&D2)&"&color=000000&bgcolor=FFFFFF")

    Drag it down, and every row gets its own QR code. Scan one with your phone camera and you’ll see the payload. If you want the payload to be more useful when scanned, don’t mash values together. Label them. You can encode multiple fields like this:

    =IMAGE("https://api.qrserver.com/v1/create-qr-code/?size=200x200&data="&ENCODEURL("name="&A2&"; age="&B2&"; gender="&C2&"; paid="&D2))

    There’s more to it than QR Codes

    Generate GitHub-style badges inside Excel

    Excel sheet with shields io badges
    Amir Bohlooli / MUO

    Once you do QR codes, your brain immediately asks: what else can I generate as an image? That’s when shields.io clicks. You’ve seen those little GitHub badges everywhere. They’re just images generated from URLs. If A2 contains a name, this creates a basic blue badge:

    =IMAGE("https://img.shields.io/badge/"&ENCODEURL(A2)&"-blue.png?style=flat")

    Now the fun part: conditional formatting inside the badge. If D2 is TRUE, make it blue; if it’s FALSE, make it red:

    =IMAGE("https://img.shields.io/badge/Guest-"&ENCODEURL(A2)&IF(D2,"-blue.png?style=flat","-red.png?style=flat"))

    If you want the badge to show a label and a value (for example, a paid/unpaid status), you can do this:

    =IMAGE("https://img.shields.io/badge/"&ENCODEURL("Paid")&"-"&ENCODEURL(IF(D2,"Yes","No"))&".png?style=flat")

    Generate a chart that updates itself

    This time as an image

    Excel sheet with a quickchart chart in a cell
    Amir Bohlooli / MUO

    This is where the trick stops being a gimmick and starts feeling like a dashboard. QuickChart can generate charts from a URL. That means you can build the chart configuration in Excel, then render the image directly in a cell.

    If B2:D2 contain numbers you want to chart (for example, three weekly totals), this creates a simple bar chart image:

    =IMAGE("https://quickchart.io/chart?c="&ENCODEURL("{type:'bar',data:{labels:['W1','W2','W3'],datasets:[{label:'Totals',data:["&B2&","&C2&","&D2&"]}]}}"))

    You can adapt that same pattern to make charts per row, per person, per project, per anything. It’s a good replacement for Excel’s sparklines, if you want more control.

    The same “URL + encoding + image rendering” pattern works in Google Sheets, which makes it even more versatile.

    Live weather report in your Excel sheet

    Don’t forget your umbrella

    Excel sheet with weather forecast imports
    Amir Bohlooli / MUO

    If you want something more practical, wttr.in can generate a weather image. If A1 contains a location (for example, Chicago), this gives you a terminal-style weather graphic:

    =IMAGE("https://wttr.in/"&(A1)&".png?0_m_q_n")

    Profile pictures and placeholders

    When you need “something visual” per row

    Excel sheet with QR codes and Gravatar images
    Amir Bohlooli / MUO

    Not every spreadsheet needs QR codes. Sometimes you just want a clean visual column, so the sheet feels like a real system instead of a table.

    If you have an email in A2 and you want a consistent avatar image, Gravatar can generate one. This formula creates an identicon-style avatar without you uploading anything:

    =IMAGE("https://www.gravatar.com/avatar/"&LOWER(TEXTJOIN("",TRUE,DEC2HEX(CODE(MID(A2,SEQUENCE(LEN(A2)),1)),2)))&"?d=identicon&s=200")

    You can even make memes right inside Excel

    (because of course)

    Once you accept Excel can display API-generated images… you start experimenting. Here’s a fun one: Memegen generates meme images from a URL, where the top and bottom text are part of the path.

    If A2 has the top text and A3 has the bottom text, this works:

    =IMAGE("https://api.memegen.link/images/buzz/"&ENCODEURL(A2)&"/"&ENCODEURL(A3)&".jpg",2)

    Swap “buzz” for another template name and the same pattern applies.

    Don’t paste sensitive data into third-party image APIs. Assume services can log requests. If you’re doing this for work, get permission. And if you’re building something you actually care about, test with dummy data first.

    IMAGE and ENCODEURL effectively turn Excel into a URL builder and a parameter editor that can render outputs. That’s why this trick feels endless. Once you understand it, you start seeing APIs everywhere (and hopefully putting them to good use).

    When I showed this to friends, the first thing out of my mouth was the same sentence I always say when Excel pulls a new trick: Did you know you can do this in Excel? So… did you? Ten years in, and Excel still had one more surprise for me.

    decade didnt Excel extremely Ive trick
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Telegram Email
    Previous ArticleFormer Google Engineers Indicted Over Trade Secret Transfers to Iran
    Next Article This essential Home Assistant trick stops you ruining your smart home
    admin
    • Website

    Related Posts

    Samsung Galaxy S23 Ultra versus vivo X300 Ultra

    April 19, 2026

    Here’s How Netflix Plans to Add TikTok-Style Videos to Its Mobile App

    April 19, 2026

    eSIM was supposed to replace SIM cards, but carriers turned it into a trap

    April 19, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Search Blog
    About
    About

    At WifiPortal.tech, we share simple, easy-to-follow guides on cybersecurity, online privacy, and digital opportunities. Our goal is to help everyday users browse safely, protect personal data, and explore smart ways to earn online. Whether you’re new to the digital world or looking to strengthen your online knowledge, our content is here to keep you informed and secure.

    Trending Blogs

    Samsung Galaxy S23 Ultra versus vivo X300 Ultra

    April 19, 2026

    Here’s How Netflix Plans to Add TikTok-Style Videos to Its Mobile App

    April 19, 2026

    Social media bans might steer kids into riskier corners of the internet

    April 19, 2026

    eSIM was supposed to replace SIM cards, but carriers turned it into a trap

    April 19, 2026
    Categories
    • Blogging (65)
    • Cybersecurity (1,402)
    • Privacy & Online Earning (172)
    • SEO & Digital Marketing (850)
    • Tech Tools & Mobile / Apps (1,680)
    • WiFi / Internet & Networking (232)

    Subscribe to Updates

    Stay updated with the latest tips on cybersecurity, online privacy, and digital opportunities straight to your inbox.

    WifiPortal.tech is a blogging platform focused on cybersecurity, online privacy, and digital opportunities. We share easy-to-follow guides, tips, and resources to help you stay safe online and explore new ways of working in the digital world.

    Our Picks

    Samsung Galaxy S23 Ultra versus vivo X300 Ultra

    April 19, 2026

    Here’s How Netflix Plans to Add TikTok-Style Videos to Its Mobile App

    April 19, 2026

    Social media bans might steer kids into riskier corners of the internet

    April 19, 2026
    Most Popular
    • Samsung Galaxy S23 Ultra versus vivo X300 Ultra
    • Here’s How Netflix Plans to Add TikTok-Style Videos to Its Mobile App
    • Social media bans might steer kids into riskier corners of the internet
    • eSIM was supposed to replace SIM cards, but carriers turned it into a trap
    • Vercel confirms breach as hackers claim to be selling stolen data
    • I used a simple Linux command to watch what apps do to my files in real time
    • Google TV Home (Android TV) 1.0.900391771 APK Download by Google LLC
    • The “most stylish” Galaxy Watch 8 Classic is 31% off at Amazon right now
    © 2026 WifiPortal.tech. Designed by WifiPortal.tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms and Conditions
    • Disclaimer

    Type above and press Enter to search. Press Esc to cancel.