Hello,
I am attempting to extract a variety of words sometimes in different lengths to another cell for consistency on reports, if possible. Not sure if I am overthinking this or making a 'newbie' mistake, definitely I am not a formulas guru but usually if I tinker long enough I figure it out. I am stumped. If it is not possible via formula's then that is fine, would a mapping/data mesh work in this scenario?
Otherwise, I can bag it for now and my colleague can keep doing this manually as there is no rush or expectations. Curious at this point only.
Example:
Second Column
Avamar - Administration --> extract Avamar
NetWorker - Administration --> extract NetWorker
Data Domain - Administration --> extract Data Domain
VNX - Project Management --> extract VNX
First Column
Global Alliance --> extract Global Alliance
SDS - Canada --> extract Canada
SD - Consulting Cloud IT transformation - South --> extract Consulting Cloud IT transformation - South
Consulting - Federal --> extract Consulting
IDS - South --> extract IDS
The below formulas I have tried to use to no avail:
=RIGHT(Region@row, LEN(Region@row) - FIND("*", Region@row))
=MID(Region@row, 6, 8) but as you can see for Federal because there is no SDS in front of it cuts off.
=RIGHT(Region@row, 4)
=LEFT(Region@row, 4)
=MID(Region@row, 6, 2) + RIGHT(Region@row, 4)