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

Amazon has a secretive new hardware group led by former Xbox leader J Allard

Microsoft teaming with Premier League to enhance soccer fans’ digital experience using AI

Startup radar: Seattle companies build tech for marketing, food safety, games, and baby products

Generative AI tops cybersecurity in 2025 tech budget priorities, new AWS study finds

‘Cruel optimism’: Mass layoffs take the shine off careers in the tech sector, UW research finds

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

Human spirit triumphs as the Croc devs announce they want to remaster Buck Bumble and the greatest main menu theme song of all time

July 3, 2025
Games

‘We need to do a better job’: FBC Firebreak devs are revamping progression after finding out that just 5% of players own a level 3 perk

July 3, 2025
Games

Persona 5: The Phantom X has blessed the community with a new sh**posting mascot so corny it eclipses the nuance around the real-world issues he represents

July 3, 2025
Games

Final Fantasy 14 is fast-tracking one of my most-anticipated fixes, releasing an entire month earlier than expected

July 3, 2025
Games

Today’s Wordle answer for Thursday, July 3

July 3, 2025
Software

Microsoft’s Exchange Server Subscription Edition now GA to replace standalone Exchange 2016 and 2019 – Computerworld

July 3, 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?