Sir, Please I want a formula where i could extract the number or numbers before the character "X" in a cell.
My Excel version is Microsoft Office Professional Plus 2016
An alternative is with Power Query which is found on the Data Tab and called Get and Transform Data
Code:
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Inserted Text Before Delimiter" = Table.AddColumn(Source, "Text Before Delimiter", each Text.BeforeDelimiter([PRODUCT], "X"), type text)
in
#"Inserted Text Before Delimiter"