I have a large spreadsheet with a column called "Roles". In this columns are values like:
ROLES
Author
Author;
Publishing; Author;
Something Else; Author; Publishing
There are other columns where the word "Author" may exist.
What I need to do is look for "Author" in my "Roles" column only, and replace it with "Authoring", without losing anything before or after it. i.e. the end result should be:
ROLES
Authoring
Authoring;
Publishing; Authoring;
Something Else; Authoring; Publishing
I tried the FIND- and REPLACE-functions, but that replaced the entire cell value, not just a portion of it.
=IF(FIND("Author",[@Roles],1),REPLACE("Author",1,6,"Authoring"))
Can anyone help? I'd rather not us a VB solution, as I'm not familiar with how to do that, so hopefully there is a formula based way?