SUBSCRIBE
Tech Journal Now
  • Home
  • News
  • AI
  • Reviews
  • Guides
  • Best Buy
  • Software
  • Games
Reading: Microsoft isn’t done cutting jobs yet: Report says sales roles are next on the chopping block
Share
Tech Journal NowTech Journal Now
Font ResizerAa
  • News
  • Reviews
  • Guides
  • AI
  • Best Buy
  • Games
  • Software
Search
  • Home
  • News
  • AI
  • Reviews
  • Guides
  • Best Buy
  • Software
  • Games
Have an existing account? Sign In
Follow US
© Foxiz News Network. Ruby Design Company. All Rights Reserved.
Tech Journal Now > News > Microsoft isn’t done cutting jobs yet: Report says sales roles are next on the chopping block
News

Microsoft isn’t done cutting jobs yet: Report says sales roles are next on the chopping block

News Room
Last updated: June 18, 2025 10:25 pm
News Room
Share
6 Min Read
SHARE
The Microsoft sign outside the company’s visitor center in Redmond, Wash. (GeekWire Photo / Todd Bishop)

Microsoft often restructures its operations and makes strategic cuts around the end of its fiscal year — and this year looks to be no exception, despite laying off nearly 3% of its workforce in May, or about 6,000 people.

The company is is preparing thousands more layoffs, this time focused on areas including sales, Bloomberg reported Wednesday, citing unnamed sources who say the job cuts are expected to be announced early next month.

Microsoft’s 2025 fiscal year ends June 30. A Microsoft spokesperson said the company had nothing to confirm regarding any additional workforce changes.

Employee Growth by Department (2010-2024)

.chart-embed {
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Oxygen-Sans, Ubuntu, Cantarell, “Helvetica Neue”, sans-serif;
margin: 0;
padding: 5px 5px 25px 5px;
background-color: #ffffff;
}

.chart-embed .chart-container {
background: #ffffff !important;
padding: 10px 20px 25px 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
width: 100%;
max-width: 630px;
margin: 0 auto;
box-sizing: border-box;
}

.chart-embed .chart-title {
font-size: 1.8rem;
color: #2c3e50;
margin-bottom: 10px;
text-align: center;
font-weight: 600;
font-family: inherit;
}

.chart-embed .legend-container {
display: flex;
justify-content: center;
margin-bottom: 25px;
flex-wrap: wrap;
gap: 20px;
}

.chart-embed .legend-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 500;
font-family: inherit;
}

.chart-embed .legend-color {
width: 12px;
height: 12px;
border-radius: 50%;
}

.chart-embed .source-attribution {
font-size: 1.5rem;
color: #666;
text-align: center;
margin-top: 20px;
font-style: italic;
font-family: inherit;
}

.chart-embed #growthChart {
max-height: 400px;
}

@media (max-width: 768px) {
.chart-embed {
padding: 5px 5px 20px 5px;
}

.chart-embed .chart-container {
padding: 8px 15px 20px 15px;
}

.chart-embed .chart-title {
font-size: 1.4rem;
}

.chart-embed .legend-container {
gap: 15px;
margin-bottom: 20px;
}

.chart-embed .legend-item {
font-size: 12px;
}

.chart-embed #growthChart {
max-height: 300px;
}

.chart-embed .source-attribution {
font-size: 1.4rem;
}
}

Microsoft Employees By Category

Operations

Product R&D

Sales & Marketing

General & Admin

Source: Microsoft 10K filings. GeekWire graphic by Claude.AI.

const ctx = document.getElementById(‘growthChart’).getContext(‘2d’);
const years = [2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024];

new Chart(ctx, {
type: ‘line’,
data: {
labels: years,
datasets: [
{
label: ‘Operations’,
data: [20, 21, 24, 27, 43, 40, 38, 39, 42, 47, 56, 67, 85, 89, 86],
borderColor: ‘#F25022’,
backgroundColor: ‘rgba(242, 80, 34, 0.1)’,
borderWidth: 3,
fill: true,
tension: 0.3,
pointBackgroundColor: ‘#F25022’,
pointBorderColor: ‘#F25022’,
pointRadius: 5,
pointHoverRadius: 8
},
{
label: ‘Product R&D’,
data: [35, 35, 36, 37, 44, 39, 37, 40, 42, 47, 55, 60, 73, 72, 81],
borderColor: ‘#00A4EF’,
backgroundColor: ‘rgba(0, 164, 239, 0.1)’,
borderWidth: 3,
fill: true,
tension: 0.3,
pointBackgroundColor: ‘#00A4EF’,
pointBorderColor: ‘#00A4EF’,
pointRadius: 5,
pointHoverRadius: 8
},
{
label: ‘Sales & Marketing’,
data: [25, 25, 25, 26, 30, 29, 29, 34, 36, 38, 40, 40, 47, 45, 45],
borderColor: ‘#7FBA00’,
backgroundColor: ‘rgba(127, 186, 0, 0.1)’,
borderWidth: 3,
fill: true,
tension: 0.3,
pointBackgroundColor: ‘#7FBA00’,
pointBorderColor: ‘#7FBA00’,
pointRadius: 5,
pointHoverRadius: 8
},
{
label: ‘General & Admin’,
data: [9, 9, 9, 9, 11, 10, 10, 11, 11, 12, 12, 14, 16, 15, 16],
borderColor: ‘#FFB900’,
backgroundColor: ‘rgba(255, 185, 0, 0.1)’,
borderWidth: 3,
fill: true,
tension: 0.3,
pointBackgroundColor: ‘#FFB900’,
pointBorderColor: ‘#FFB900’,
pointRadius: 5,
pointHoverRadius: 8
}
]
},
options: {
responsive: true,
maintainAspectRatio: true,
plugins: {
legend: {
display: false
},
tooltip: {
mode: ‘index’,
intersect: false,
backgroundColor: ‘rgba(0,0,0,0.8)’,
titleFont: {
size: 14,
weight: ‘bold’
},
bodyFont: {
size: 13
},
callbacks: {
label: function(context) {
return context.dataset.label + ‘: ‘ + context.parsed.y + ‘,000 employees’;
}
}
}
},
scales: {
y: {
beginAtZero: true,
max: 100,
title: {
display: false
},
grid: {
color: ‘rgba(0,0,0,0.08)’,
lineWidth: 1
},
ticks: {
font: {
size: 12
},
color: ‘#666’,
callback: function(value) {
return value * 1000 >= 1000 ? (value * 1000).toLocaleString() : value * 1000;
}
}
},
x: {
grid: {
color: ‘rgba(0,0,0,0.08)’,
lineWidth: 1
},
ticks: {
font: {
size: 12
},
color: ‘#666’
}
}
},
interaction: {
intersect: false,
mode: ‘index’
},
hover: {
mode: ‘index’,
intersect: false
}
}
});

The company had 228,000 employees as of June 2024, including 45,000 in sales and marketing, which was flat from the prior year. It’s the third-largest category behind Operations (86,000) and product research and development (81,000).

Microsoft hasn’t said explicitly whether its recent job cuts are directly tied to efficiencies from artificial intelligence, but a research report from the company earlier this week pointed to a future of smaller, AI-assisted teams across many industries.

Read the full article here

You Might Also Like

Tech Moves: Avanade AI chief steps down; Amazon vet joins Shipium; Tanium names CMO

How AI is being used to boost efficiency and security at truck terminal gates

The realities of enterprise AI deployments, with Amazon Web Services VP Francessca Vasquez

Ballmer’s USAFacts warns against politicizing data after Trump fires BLS chief over jobs report

Expedia stock soars 15% as B2B momentum fuels revenue growth

Share This Article
Facebook Twitter Email Print
Leave a comment Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

- Advertisement -
Ad image

Trending Stories

Games

Solid Snake actor David Hayter is no longer a hater of Metal Gear Solid 5, reveals it’s his ‘favorite gameplay of the series’ despite his replacement in the lead role

August 17, 2025
Games

One of the devs behind System Shock and Thief wants to see more games catering to ‘a new generation of folks discovering the game that demands more from them’

August 17, 2025
Games

Rainbow Six Siege X is going absolutely bananas with laser tripwires next season

August 17, 2025
News

Week in Review: Most popular stories on GeekWire for the week of Aug. 10, 2025

August 17, 2025
Games

Fighting games continue to hold the title for coolest videogame soundtracks of all time

August 17, 2025
News

Football nerd: Seattle Seahawks head coach Mike Macdonald blends tradition and innovation

August 17, 2025

Always Stay Up to Date

Subscribe to our newsletter to get our newest articles instantly!

Follow US on Social Media

Facebook Youtube Steam Twitch Unity

2024 © Prices.com LLC. All Rights Reserved.

Tech Journal Now

Quick Links

  • Privacy Policy
  • Terms of use
  • For Advertisers
  • Contact
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?