The Pixel 11 is almost here, and these are the 3 upgrades I’m begging Google to make


We’re only a month away from Google’s next big hardware event, with the Pixel 11 series officially arriving on August 12. 

After living with the Pixel 10 Pro and the Pixel 10a over the past year, I’ve come to appreciate what Google’s phones do well — and, more importantly, where they still fall short. With the smartphone landscape evolving faster than ever, there are three upgrades I’m hoping Google finally delivers this year. If you’re a fellow Pixel user, chances are these are on your wishlist too.

Google, it’s time to stop my Pixel from cooking itself

More than anything else, I want Google to fix the Pixel’s thermal issues. If you’ve used a Pixel, you probably know what I’m talking about. This isn’t me nitpicking after a week with one phone, either. I’ve been using Pixels since the Pixel 8, so by the time the Pixel 11 arrives, it’ll be my fourth generation. And if there’s one complaint that’s followed me from one phone to the next, it’s overheating.

The thing is, it’s easy to write it off as a summer problem. Sure, every phone gets warm outdoors, but I’ve noticed the same behavior while sitting indoors in an air-conditioned room. Sometimes it’s after taking a handful of photos, while navigating with Google Maps, or maybe for no obvious reason at all. 

That’s also why I don’t think this is limited to one particular device. I’ve experienced it on multiple Pixel generations, and while Tensor has improved in several areas, thermal performance still feels inconsistent. Some days everything runs perfectly, while on others the phone gets warmer than I’d expect during fairly ordinary tasks. Out of curiosity, I even put a few Pixels through CPU throttling tests, including the Pixel 9, Pixel 9a, Pixel 10 Pro, and Pixel 10a. These tests deliberately push the processor to its limits to see how well it can sustain performance without overheating. Across all four phones, the results told a similar story: performance dropped significantly once temperatures climbed.

That was reassuring in a way because it matched what I’d already been experiencing every day. It’s one thing for a benchmark to expose a weakness, but it’s another when you can actually feel it while using the phone. That’s why thermal management is at the very top of my Pixel 11 wishlist. If Google can finally solve this long-standing issue, it’ll improve almost everything else about the Pixel experience. If not, I may finally have to start looking elsewhere.

My Pixel seems allergic to charging quickly

While we’re at it, Google seriously needs to improve the Pixel’s charging speeds. I’ve noticed something odd with my Pixel 10a whenever I plug it in. Not only does it take its own sweet time to charge, but it also gets surprisingly warm in the process — sometimes hot enough that I instinctively pick it up just to check if something’s wrong. Considering my issues with thermal management, the experience only gets even more frustrating.

The slow charging is easy enough to ignore when I’m at home. I can plug it in, get back to work, and eventually it’s ready to go. The real problem is when life doesn’t wait. If I suddenly need to head out, topping up the battery is almost out of the question. Waiting well over an hour for a full charge feels painfully outdated in 2026.

What’s disappointing is that this isn’t an industry-wide limitation anymore. Plenty of Android phones can give you hours of battery life from just a quick 15 or 20-minute top-up, yet Pixel still feels stuck in the slow lane.

That’s why faster charging sits near the top of my Pixel 11 wishlist. At this point, it feels like Pixel users are making excuses for a compromise they shouldn’t have to make. Google doesn’t need to chase 100W charging speeds, but it does need to stop lagging behind everyone else.

Tensor, let’s pick up the pace

I’ve never been the kind of person who buys a phone to chase benchmark scores. I rarely spend hours playing demanding games like Call of Duty: Mobile or Genshin Impact. What I do expect, though, is for my phone to handle everyday moments without falling apart.

That hasn’t always been my experience with Pixel phones. Whenever I’m out exploring a new place, I tend to take dozens of photos, record plenty of 4K videos, and constantly jump between the Camera and Google Photos apps to see how everything turned out. It’s a routine I’ve repeated countless times, and it’s also when my Pixel seems to struggle the most.

As the phone heats up, I’ve noticed everything starts slowing down. Switching between apps can be really sluggish, sometimes taking nearly a minute before everything feels responsive again. I’ve even had the phone lose its network signal while I was still out taking photos, which is the last thing you want when you’re relying on Google Maps or trying to share pictures with friends.

That’s why I don’t think this is about chasing more power for its own sake. Tensor is already smart in all the right ways, but I’d love to see Google squeeze more sustained performance out of it. I want to capture photos, record videos, and multitask without constantly wondering whether the phone is about to slow down from overheating. That’s the kind of dependable performance I’m hoping Google finally delivers with the Pixel 11 series.

Fix the little things, and you’ve got a winner

The Pixel experience has never been about having the most cameras, the fastest processor, or the most eye-catching design. That’s part of what makes Google’s phones so appealing in the first place. But after living with multiple Pixel generations, I’ve also realized that it’s the little frustrations — not the missing features — that stick with you.

For me, better thermal management, faster charging, and more consistent performance would do far more for the Pixel experience than another camera upgrade or a sleeker design ever could. Here’s hoping Google feels the same way with the Pixel 11 series. Because if it can finally iron out these long-standing issues, I think it’ll have its best Pixel yet, and I’ll happily keep recommending it.



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


Microsoft Excel handles temporal data effectively if you know which formulas to use. The problem is that Excel includes over 20 date and time functions, but most people only ever need a small core set to build powerful, self-updating workflows. These essential date functions turn messy timelines into automated systems you can actually rely on.

All examples in this guide use an Excel table (Ctrl+T) named ProjectTracker (pictured below). To follow along, download a free copy of the Excel workbook containing this table. After you click the link, you’ll find the download button in the top-right corner of your screen.

A structured Excel tracking table containing project tasks, start dates, and due dates.

Excel views your calendar as a massive string of numbers

The secret logic behind spreadsheet dates

Excel stores dates as serial numbers—starting at January 1, 1900—and displays them using date formats. For example, June 1, 2026 is stored internally as 46174. This allows you to perform arithmetic on dates, such as adding 7 to move forward one week.

Excel intentionally treats 1900 as a leap year for compatibility with older spreadsheet systems. This is not historically accurate, but it rarely affects modern workflows unless you’re working with very old date ranges.

Keep your timelines moving with real-time tracking

Creating a live project countdown with TODAY

If you currently update a “Today” cell manually each morning to keep deadlines accurate, Excel can replace that workflow with a dynamic function that always returns the current date.

To create a live countdown that updates automatically as time passes, add a new column with the following name, formula, and formatting:

Column Name

Days Remaining

Formula

=[@[Due Date]]-TODAY()

Number Format

General

When you press Enter, Excel may automatically format the result as a date instead of a number. That’s why you must select the table column and set the format to General in the Number group of the Home tab.

Each task displays the number of days remaining until its due date, with negative values indicating tasks that are already overdue.

The next time you open the workbook, the calculations will refresh and automatically update based on the new day.

Isolate specific time frames by breaking dates into pieces

Structuring reports with MONTH, YEAR, and WEEKDAY

When working with project schedules, full date values like 2026-07-24 are often too detailed for analysis. You may need to group tasks by month, summarize yearly progress, or identify scheduling issues like weekend start dates.

To extract the month, delete the Days Remaining column, then add a new one with these parameters:

Column Name

Month Due

Formula

=MONTH([@[Due Date]])

Number Format

General

Each task returns a numeric month value, such as 6 for June or 7 for July, making it easier to filter and group tasks by month.

To isolate the year for reporting across longer timelines, simply replace MONTH in the formula above with YEAR:

Column Name

Year Due

Formula

=YEAR([@[Due Date]])

Number Format

General

The numeric year component is successfully calculated for every row in the tracking table in Excel.

To identify scheduling issues, such as tasks that begin on weekends, you need a different approach because weekdays are not stored as simple calendar parts like month or year. Instead, Excel assigns each weekday a numeric position based on a selected system.

Here’s what to do in a new column:

Column Name

Weekday Due

Formula

=WEEKDAY([@[Start Date]], 2)

Number Format

General

With the 2 argument, Excel treats Monday as day 1 and Sunday as day 7. Without this argument, Excel uses its default system where Sunday is treated as day 1 and Saturday as day 7.

Each task now returns a number from 1 to 7, where values 6 and 7 correspond to Saturday and Sunday, making weekend starts easy to identify.

The numeric weekday component is successfully calculated for every row in the tracking table in Excel.

OS

Windows, macOS, iPhone, iPad, Android

Free trial

1 month

Microsoft 365 includes access to Office apps like Word, Excel, and PowerPoint on up to five devices, 1 TB of OneDrive storage, and more.


Calculate exact working durations without the weekend clutter

Using NETWORKDAYS to measure real work time

Calendar-based durations often overstate actual work time. A task running from Friday to Monday appears to take four days, even though only two are working days.

So, to calculate true working days between project milestones, add this column:

Column Name

Working Days

Formula

=NETWORKDAYS([@[Start Date]], [@[Due Date]])

Number Format

General

Excel returns the total number of working days between the start and due dates, counting both endpoints when they fall on working days.

To include holidays, create a separate range containing vacation dates (for example, starting in cell F2). Then, select the first Working Days formula cell, and extend the formula to:

=NETWORKDAYS([@[Start Date]], [@[Due Date]], $F$2:$F$5)

Using absolute references ($) ensures the holiday range does not shift when the formula is filled down the table.

When you press Enter, you’ll see that the calculation now excludes both weekends and holidays.

If your workweek is non-standard, use NETWORKDAYS.INTL to define custom weekend rules.

Map future deadlines and end-of-month cutoffs

Using WORKDAY and EOMONTH for automated scheduling

Beyond tracking existing timelines, Excel can generate future dates based on rules such as working durations and billing cycles.

To calculate a projected completion date based on working days, remove the Due Date column, then add these two columns.

Column 1:

Column Name

Expected Duration

Values

Manually enter the number of working days.

Number Format

General

Column 2:

Column Name

Projected Finish

Formula

=WORKDAY([@[Start Date]], [@[Expected Duration]])

Number Format

Date

Excel returns a date representing the expected completion based on the specified number of working days. It automatically skips weekends and returns the next valid working date.

To calculate billing cutoffs that always land on month-end, use this workflow:

Column Name

Billing Cutoff

Formula

=EOMONTH([@[Start Date]], 0)

Number Format

Date

Excel returns the last day of the month for each task, making billing cycles consistent.

Planning ahead with month-based review dates

Shifting dates across months with EDATE

Not all scheduling problems are about counting days. In real project work, you often work in monthly cycles—such as scheduled reviews, audits, or check-ins that repeat at predictable intervals.

For example, if a project phase starts on a given date, and you need to schedule a formal review three months later, Excel has a built-in function designed exactly for this. EDATE shifts a date by a specified number of months while preserving the day of the month when possible.

Here’s how to use it:

Column Name

Review Date

Formula

=EDATE([@[Start Date]], 3)

Number Format

Date

This moves the start date forward by three full months. For example, if the start date is June 1, 2026, Excel returns September 1, 2026.

You can also move backward in time when planning earlier review checkpoints, such as retrospective checks or pre-launch assessments. In those cases, you use a negative value:

=EDATE([@[Start Date]], -2)

Unlike day-based subtraction, EDATE respects calendar structure, making it more reliable than manually shifting dates.


Take control of your spreadsheet timelines

Ignoring Excel’s built-in date tools often leads to hours of manual updates and fragile spreadsheets. By understanding how Excel stores dates and using functions designed to work with them, you can build schedules that update themselves and forecast future milestones automatically. Once you’ve mastered tracking time with formulas, the next step is visualizing it—turn your data into a dynamic timeline that updates as your project evolves.



Source link