Is the lead in text always 12 characters long (as shown)? If so, you can use this slightly simpler formula...Examples:
cCTAB_UTyte_2B_HI_LO --> 16
cCTAB_UTyte_1B_HI_LO --> 8
cCTAB_UTyte_3B_HI_LO --> 24
cCTAB_UTyte_4B_HI_LO --> 32
...
another wayRead the 1st character after the second "_" (2) and multiply this value with 8.
Examples:
cCTAB_UTyte_2B_HI_LO
cCTAB_UTyte_1B_HI_LO
cCTAB_UTyte_3B_HI_LO
cCTAB_UTyte_4B_HI_LO
With data in A1 try
=TRIM(LEFT(RIGHT(" "&SUBSTITUTE(TRIM(A1)," ",REPT(" ",60)),120),60))
With data in A1 try
=TRIM(LEFT(RIGHT(" "&SUBSTITUTE(TRIM(A1)," ",REPT(" ",60)),120),60))