I have this formula in REGEX Google Sheets:
=REGEXREPLACE(P74, "\s*(\d*)\s*(?:(B)O(T)T(L)E OF|(T)A(B)LET|(C)APLE(T)|(CAP)SULE|(AMP)OULE|(S)ACHE(T)|(A)P(P)(L)ICATOR(B)OT(T)(L)E OF|(BL)ISTER|(V)IA(L)|3.5 MG|(ALUMINIUM/ALUMINIUM)|[()]|@|OF)", "$1$2$3$4$5$6$7$8$9$10")
And i have this data in many rows:
BX-5VL @ 6 ML
BX-5VL @ 8 ML
BX-5VL @ 15 ML
I would like to simply remove all numbers for and ML attached to return like this:
BX-5VL
BX-5VL
BX-5VL

