what you're looking for is SUBSTITUTE:

=SUBSTITUTE(A2,"Author","Authoring")

Will substitute Author for Authoring without messing with everything else

Answer from DarkAjax on Stack Overflow
🌐
Microsoft Support
support.microsoft.com › en-us › excel › functions › substitute-function
SUBSTITUTE function - Excel 2021
This article describes the formula syntax and usage of the SUBSTITUTE function in Microsoft Excel. Substitutes new_text for old_text in a text string. Use SUBSTITUTE when you want to replace specific text in a text string; use REPLACE when you want to replace any text that occurs in a specific ...
Discussions

Is it possible to use replace in formulas?
u/Nevio28 - Your post was submitted successfully. Once your problem is solved, reply to the answer(s) saying Solution Verified to close the thread. Follow the submission rules -- particularly 1 and 2. To fix the body, click edit. To fix your title, delete and re-post. Include your Excel version and all other relevant information Failing to follow these steps may result in your post being removed without warning. I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns. More on reddit.com
🌐 r/excel
10
2
March 17, 2022
Excel: replace part of cell's string value - Stack Overflow
Look for SUBSTITUTE function from the answer from darkajax below. And should not be the accepted answer. 2014-04-09T09:22:07.697Z+00:00 ... this is not working for me. whole cell content is replaced in my case 2017-10-30T04:00:04.877Z+00:00 ... This is working for me in Office 2010 Excel version ... More on stackoverflow.com
🌐 stackoverflow.com
Breakdown of the REPLACE formula in Excel
replace formula is solid but does anyone actually use it for real workflows or just when they get stuck? what problem did this solve for you? More on reddit.com
🌐 r/ExcelTips
3
8
February 25, 2026
Replace function on Excel
Try using a wildcard in your Find field, like so More on reddit.com
🌐 r/excel
10
1
August 15, 2023
🌐
Exceljet
exceljet.net › home › functions › replace function
Excel REPLACE function | Exceljet
January 23, 2026 - The Excel REPLACE function replaces characters at a specified position in a given text string with another text string. REPLACE a good solution when the text to replace can't easily be matched, but the location is predictable.
🌐
Ablebits
ablebits.com › ablebits blog › excel › find & replace › using excel replace and substitute functions - formula examples
Using Excel REPLACE and SUBSTITUTE functions - formula examples
March 21, 2023 - See how to use the REPLACE function with text strings, numbers and dates, and how to nest several REPLACE or SUBSTITUTE functions within one formula. Last week we discussed various ways of using FIND and SEARCH functions within your Excel worksheets. Today, we will be taking a deeper look at two other functions to replace text in a cell based on its location or substitute one text string with another based on content.
🌐
Corporate Finance Institute
corporatefinanceinstitute.com › home › resources › replace function
REPLACE Function - Formula, Examples, How to Use Replace
May 11, 2026 - The REPLACE function in Excel replaces part of a text string with a different text string, useful for modifying variable text data. Its syntax is =REPLACE(old_text, start_num, num_chars, new_text).
Find elsewhere
🌐
GoSkills
goskills.com › excel › resources › excel-replace-function
How to Use the Excel REPLACE Function | GoSkills
First, let’s learn the basic steps on how to use REPLACE in Excel. ... Old_text is the full text string or cell reference containing the text to be replaced. Start_num is the starting position number (or location) of the text string to be replaced. Num_chars is the number of characters to be replaced · New_text is the new text which will replace the text to be removed · Whenever using explicit text values, they must be entered within double quotes. For example, ... The REPLACE function does not alter the actual text in old_text.
🌐
Exceljet
exceljet.net › home › functions › substitute function
Excel SUBSTITUTE function | Exceljet
January 23, 2026 - The Excel SUBSTITUTE function replaces text in a given string by matching. You can use SUBSTITUTE to replace or completely remove matched text. SUBSTITUTE is case-sensitive and does not support wildcards.
🌐
Microsoft Support
support.microsoft.com › en-us › office › substitute-function-6434944e-a904-4336-a9b0-1e58df3bc332
SUBSTITUTE function | Microsoft Support
This article describes the formula syntax and usage of the SUBSTITUTE function in Microsoft Excel. Substitutes new_text for old_text in a text string. Use SUBSTITUTE when you want to replace specific text in a text string; use REPLACE when you want to replace any text that occurs in a specific ...
🌐
Reddit
reddit.com › r/exceltips › breakdown of the replace formula in excel
r/ExcelTips on Reddit: Breakdown of the REPLACE formula in Excel
February 25, 2026 -

When you need to swap out part of a text string in Excel whether you’re correcting a typo, updating a name, or restructuring data, the REPLACE function is one of the simplest and most powerful tools at your disposal. It lets you pinpoint exactly where in a text string you want to make a change, how many characters should be replaced, and what you want to put in their place. By understanding each of its four components, you can transform text dynamically and precisely, without manually editing every cell. Below is a clear breakdown of how each argument works and how they come together to reshape your text exactly the way you want.

The formula: REPLACE(old_text, start_num, num_chars, new_text)
old_text - This is the text string that you want to modify. It could be a cell reference or even manually entered like "Dua Lipa" within the formula.
Example: =REPLACE(A1, ....) or =REPLACE("Dua Lipa", ....)

start_num - This is the position (number) of the first character in old_text that you want to replace.
For example, if you set start_num to 2 in "Hello", the replacement starts with the second character, "e".
Example: =REPLACE(A1, 2, ....) or =REPLACE("Dua Lipa", 2, ....)

num_chars - This specifies the number of characters you want to replace, starting from start_num.
For example, if num_chars is 3 in "Hello" (and start_num is 2), the characters "ell" will be replaced.
Example: =REPLACE(A1, 2, 3, ....) or =REPLACE("Dua Lipa", 2, 3, ....)

new_text - This is the text that will replace the specified characters in old_text.
For example, if new_text is "ey", and you're replacing "ell" in "Hello", the result will be "Heyo". This new_text can be the same length, shorter or longer than the number of characters you are replacing.
Example: =REPLACE(A1, 2, 3, "ey") or =REPLACE("Dua Lipa", 2, 3, "ey")

Example Results:
If A1 had Hello in the cell, "Heyo"
Using the second example, it would return, "DeyLipa".

https://www.youtube.com/watch?v=TL3nJ1cN2Tk

TL;DR

REPLACE lets you swap part of a text string in Excel by choosing where to start, how many characters to overwrite, and what to put in their place.

Use it like: REPLACE(old_text, start_num, num_chars, new_text) to quickly fix typos, update names, or reshape text without manual editing.

https://www.youtube.com/watch?v=TL3nJ1cN2Tk

🌐
ExcelHelp
excelhelp.com › home › general vba › excel replace function
Excel Replace Function: Replace a String of Characters | Excel Help
May 23, 2020 - Excel Replace function is used to replace a character or string of characters within another string. Learn more about this Excel function here!
🌐
Reddit
reddit.com › r/excel › replace function on excel
r/excel on Reddit: Replace function on Excel
August 15, 2023 -

Hello Excel Enthusiasts,

I need some help on a specific replace function I would like to do on an excel assignment. There are several links in my raw data and I want to replace the text with a label that is more easy to visualize.

Example- https://zoom.us/registration/27374shdyesi

I would like to make a replacement for the specific text “https://zoom.us” to change the ENTIRE cell to “zoom registration”. The issue with replace is that it only changes the text that was put into the command, so it changes to “zoom registration/registration/27374shdyesi”

Your help is much appreciated!

Excel 2021

🌐
LiveFlow
liveflow.com › product-guides › substitute-function-in-excel-explained
SUBSTITUTE Function in Excel: Explained | LiveFlow
The SUBSTITUTE function in Excel is a powerful tool that allows you to replace specific text values or characters within a cell or a range of cells with new text values or characters.
🌐
Ablebits
ablebits.com › ablebits blog › excel › find & replace › using excel find and replace in the most efficient way
Using Excel Find and Replace in the most efficient way
March 21, 2023 - To find values by condition, this article may be helpful – Excel Advanced Filter - how to create and use. Also, you can set and change the price for each product using the VLOOKUP function, as described here. ... I want to be able to replace the entire value of a cell with zero if I find a particular character in the cell.
🌐
Quora
quora.com › What-do-the-functions-find-and-replace-do-in-Excel
What do the functions 'find' and 'replace' do in Excel? - Quora
Answer: “Find” scans Excel worksheet for specific text content. “Replacereplaces that content with text you want in its place. It is a basic and essential Excel skill that you should have so please learn how to use it. Exact steps vary by Excel version.
🌐
TechOnTheNet
techonthenet.com › excel › formulas › replace.php
MS Excel: How to use the REPLACE Function (WS)
This Excel tutorial explains how to use the Excel REPLACE function with syntax and examples. The Microsoft Excel REPLACE function replaces a sequence of characters in a string with another set of characters.
🌐
Super User
superuser.com › questions › 1844884 › how-to-replace-in-excel-365-without-deleting-other-text
worksheet function - how to replace ** in excel 365 without deleting other text - Super User
June 5, 2024 - how to replace ** in excel 365 without deleting other text. I have tried ~** but that did not work and it deleted the entire line. I cannot find a solution. Thanks! ... Please show some sample in your post. That might help us. not necessarily you have to use a tilde but may be you need not sure. posting some sample screenshot, will help users to identify the issues and post suggestions/solutions for you! ... You can use SUBSTITUTE function.
🌐
GeeksforGeeks
geeksforgeeks.org › excel › find-and-replace-in-excel
How to Use Find and Replace Text and Numbers in Excel - GeeksforGeeks
January 29, 2025 - The Find and Replace feature in Excel allows users to locate specific data within a spreadsheet and, if necessary, replace it with something else. This tool is invaluable for editing large datasets, correcting typos, or applying formatting changes to multiple entries simultaneously. The Find function ...