[SIZE=1]// Table1
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
TBD = Table.AddColumn(Source, "Result", each Text.BetweenDelimiters([raw], "(", "ch"), type text),
ROC = Table.SelectColumns(TBD,{"Result"})
in
ROC[/SIZE]
Are the letters next to the number always "ch"?I need to extract the number like in the example below.
Between the () is always (#ch).
Book1 | ||||
---|---|---|---|---|
A | B | |||
1 | 16-bit Enhanced (46ch) | 46 | ||
2 | 32-bit (144ch) | 144 | ||
3 | 64-bit (299 not specified) | 299 | ||
4 | nothing | |||
5 | (3ch) 32-bit content | 3 | ||
Sheet701 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B1 | =IFERROR(-LOOKUP(1,-LEFT(MID(A1,FIND("(",A1)+1,99),ROW($1:$15))),"") |