Replicate publisher in column C for Google Sheets

parvares

New Member
Joined
Jul 17, 2022
Messages
22
Office Version
  1. 365
Platform
  1. Windows
Hello, starting from this sheet with column A (title, responsibility, publisher) I would need a formula that extracts only the publisher in column C. I used this formula:

Rich (BB code):
= LEFT (MID (A2, FIND ("-", A2) +1, LEN (A2)), FIND (",", MID (A2, FIND ("-", A2) +1, LEN (A2))) ) -1)

but column C gives me the place of publication and the publisher. I would like instead only the publisher.

Many thanks!!
 
You're welcome & thanks for the feedback.
 
Upvote 0

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Ok, how about
Excel Formula:
=MID(REPLACE(A2,FIND(",",A2),LEN(A2),""),FIND(":",REPLACE(A2,FIND(",",A2),LEN(A2),""),FIND("-",REPLACE(A2,FIND(",",A2),LEN(A2),"")))+2,LEN(A2))
Sorry, If column A had this type of formatting could the publisher be obtained?
In this case it is placed between the last closing round parenthesis ) and the next comma.
Thanks much!
 
Upvote 0
 
Upvote 0
How about
Excel Formula:
=LEFT(MID(A2,FIND("^",SUBSTITUTE(A2,CHAR(10),"^",LEN(A2)-LEN(SUBSTITUTE(A2,CHAR(10),""))))+1,LEN(A2)),FIND(",",MID(A2,FIND("^",SUBSTITUTE(A2,CHAR(10),"^",LEN(A2)-LEN(SUBSTITUTE(A2,CHAR(10),""))))+1,LEN(A2)))-1)
 
Upvote 0
Glad to help & thanks for the feedback.
 
Upvote 0
Sorry Fluff, the very last question. If I wanted to extract from the last file the responsibilities (author, editors, but not the translators!) placed between the writing (condividi) and the last closing round parenthesis )? Thanks again!
 
Upvote 0
How about
Excel Formula:
=MID(LEFT(A2,FIND("^",SUBSTITUTE(A2,CHAR(10),"^",LEN(A2)-LEN(SUBSTITUTE(A2,CHAR(10),""))))-1),SEARCH("condividi",A2)+10,LEN(A2))
 
Upvote 0
How about
Excel Formula:
=MID(LEFT(A2,FIND("^",SUBSTITUTE(A2,CHAR(10),"^",LEN(A2)-LEN(SUBSTITUTE(A2,CHAR(10),""))))-1),SEARCH("condividi",A2)+10,LEN(A2))
Nearly perfect! I was looking for excluding the translator from the responsabilities. In other word I would like only the text in black bold fron the file...
 
Upvote 0
That will be difficult as there is no obvious way to determine what to return.
 
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,684
Members
449,463
Latest member
Jojomen56

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top